Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Doing a dump

Status
Not open for further replies.

meeble

Programmer
Sep 24, 2002
137
GB
How do you dump all the data in a table in a SQL 2000 database to a text file?

Thanks

James
 
Try using the DTS import/export wizard its very straightforward
 
One easy way you may use to export to a text files is to use Microsoft Access. Create an ODBC connector to the database, Link to the tables, and export the content of the database to a csv file. You should create a file for each of the table you want.

You can also use the BCP application that come with SQL server but it need a little reading before you use it.

You can also use an ODBC connection using MS Excel and save the content to CSV.

It is up to you!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top