简体   繁体   English

将所有表从sql Server 2008批量复制到Amazon RDS上的sql server express

[英]Bulk copy all tables from sql server 2008 to sql server express on Amazon RDS

I am attempting to copy about 5GB of reference data from a local SQL Server 2008 standard instance to a SQL Server 2008 Express instance on Amazon RDS. 我试图将大约5GB的参考数据从本地SQL Server 2008标准实例复制到Amazon RDS上的SQL Server 2008 Express实例。 (This is a once off import) (这是一次过的导入)

Amazon recommend using Bulk Copy for anything larger than ~ 1GB. 亚马逊建议将批量复制用于大于1GB的任何内容。 I have found examples for using bulk copy to copy single tables but not for copying all tables in a database. 我发现了一些示例,这些示例使用批量复制来复制单个表,而不是复制数据库中的所有表。

Google gives me the following http://support.microsoft.com/kb/176818 but its a bit outdated. Google为我提供了以下http://support.microsoft.com/kb/176818,但它有些过时了。

My current plan is to update the above script to do what I need, but wondering if anybody has a better idea. 我当前的计划是更新上面的脚本以执行我需要的操作,但是想知道是否有人有更好的主意。

I often use the SQL Azure Migration Wizard for quick imports - not sure how long a load this size would take, but the tool is super-easy to use. 我经常使用SQL Azure迁移向导进行快速导入-不知道此大小会花多长时间,但是该工具非常易于使用。 Get it from CodePlex and here's a short screencast on how to use this free tool to do this. CodePlex获取它,这是有关如何使用此免费工具执行此操作的简短屏幕录像

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 带 SQL Server 的 Amazon RDS 不允许从 CSV 源批量插入 - Amazon RDS w/ SQL Server wont allow bulk insert from CSV source 在SQL Server 2008中从Excel批量上传 - Bulk upload from Excel in SQL Server 2008 从SQL Server 2008 Express将数据库传输到SQL Server 2008 - Transfer a database to SQL Server 2008 from SQL Server 2008 Express 从SQL Server 2008中的所有表中选择所有列 - Select all columns from all tables in SQL Server 2008 如何将Sql Server 2008中的表中的所有数据复制到文件 - How to copy all the data from a table in Sql Server 2008 to file SQL Server:将所有表复制到新表中 - SQL Server: copy all tables into new tables 使用SSMS将具有许多表的数据库从SQL Server 2005复制到SQL Server 2008 Enterprise - Copy database having many tables from SQL Server 2005 into SQL Server 2008 Enterprise using SSMS 从SQL Server 2008迁移到SQL Server 2012 Express - Moving from SQL Server 2008 to SQL Server 2012 Express 如何通过所有数据库(快速)自 sql 服务器 2008 快递到 sql 服务器 2008 R2(无快递) - how to pass all database (fast) since sql server 2008 express to sql server 2008 R2 (NO express) 如何将相似的数据批量复制到SQL Server 2005中的两个表? - How to bulk copy similar data to two tables in SQL Server 2005?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM