Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to import a csv file to insert data into an existing table on my database. I go through the wizard and when it comes to select source tables and views for the destination, there are none to choose from. It just thinks I am trying to create a new table.

Any suggestions? Thanks!

share|improve this question

3 Answers

up vote 10 down vote accepted

skip the wizard and use just BULK INSERT, here is an example:

http://blog.sqlauthority.com/2008/02/06/sql-server-import-csv-file-into-sql-server-using-bulk-insert-load-comma-delimited-file-into-sql-server/

share|improve this answer
1  
This is NOT a CSV compliant solution! – Steven Mar 14 at 22:54
@Steven, how so? the title of the linked page is: SQL SERVER – Import CSV File Into SQL Server Using Bulk Insert – Load Comma Delimited File Into SQL Server – KM. Mar 15 at 11:42
Does not support line breaks in cells? – Steven Mar 18 at 3:38
I am getting You do not have permission to use the bulk load statement. error – Rohit Vyas Mar 28 at 6:46
It doesn't consider text qualifiers, such as quotation marks around text fields, which are important to sanitize data that may contain commas in it. – sylverfyre Apr 16 at 17:39

Are you sure you selected the database to connect to properly? Are you sure you have the rights to insert into tables in that database?

share|improve this answer

We do have multiple options:

  1. using dts wizard
  2. by programming

to know dts path or code in c# go through it

http://sqlcopy.blogspot.in/2012/07/bulk-sql-to-sql-sql-to-csv-csv-to-sql.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.