从 MySQL 到 SQL 服务器迁移和映射表
From MySQL to SQL Server Migrating and Mapping Tables
我在 Java 和 MySQL 上有一个 运行 系统。将系统移动到 .NET 环境。我还优化了 MS SQL 上的数据库表,其中应填充来自 MySQL 数据库的数据。所以我需要将表映射到哪里去,因为它们现在是分开的。我怎样才能做到这一点?有哪些替代方案和最佳方法?
提前致谢。
SQL Server Integration Services (SSIS) is a great tool for migrating data between 2 points. You can also use the Import/Export Wizard(右键单击包含在 SQL 服务器中的数据库、任务、导入数据)作为起点。
我在 Java 和 MySQL 上有一个 运行 系统。将系统移动到 .NET 环境。我还优化了 MS SQL 上的数据库表,其中应填充来自 MySQL 数据库的数据。所以我需要将表映射到哪里去,因为它们现在是分开的。我怎样才能做到这一点?有哪些替代方案和最佳方法?
提前致谢。
SQL Server Integration Services (SSIS) is a great tool for migrating data between 2 points. You can also use the Import/Export Wizard(右键单击包含在 SQL 服务器中的数据库、任务、导入数据)作为起点。