CSV file in amazon s3 to amazon SQL Server rds
问题 Is there any sample where I can find how to copy data from a CSV file inside Amazon S3 into a Microsoft SQL Server Amazon RDS ? In the documentation its only mentioned about importing data from a local db into RDS. 回答1: Approach would be like - You have to spin up an EC2 instance and copy S3 CSV files into it and then from there you have to use Bulk insert command. Example: BULK INSERT SchoolsTemp FROM 'Schools.csv' WITH ( FIRSTROW = 2, FIELDTERMINATOR = ',', --CSV field delimiter