I'm trying to do an SQL Server dump of a couple of tables in a database (Microsoft SQL Server). We don't have write access to the DB, so we can't do what I was originally thinking (create temp db, copy tables (minus the columns we don't want into the temp db, and then dump that db). I really can't figure out a way to do this.

A csv export doesn't work (it's almost impossible to put the data in the correct fields b/c of newlines).

Any tips?

link|improve this question
feedback

2 Answers

Bulk Copy is your friend

link|improve this answer
feedback

Either bulk copy, or create a DTS (or SSIS) package that exports to a MS Access database. In access, all the line breaks will be preserved within their corresponding text fields.

link|improve this answer
DTS? I've never heard of that before – Nephi Johnson Oct 30 '09 at 22:23
DTS = Data Transformation Services, in SQL Server 2005 and up SSIS = SQL Server Integration Services. Your best friend to load in or dump out large amounts of data! – marc_s Oct 31 '09 at 8:36
feedback

Your Answer

 
or
required, but never shown

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