May 29, 2006 at 2:32 pm
TOAD for SQL Server has functionality which allows a user to export rows as insert statements to a text file. Do you know if their is similar functionality built into Sql Server Enterprise Manager/ DTS? If so then how can I use it?
May 30, 2006 at 4:26 am
- maybe tablediff utility can do that for you. aarch that's sql2005
- I guess the SQL_Server_2000_Web_Services_Toolkit can do that to.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
May 30, 2006 at 6:26 am
yes , DTS .
May 31, 2006 at 2:25 am
Execute following query in query analyser & select opction "result to file" & you will get what you want.
SELECT +'INSERT INTO <TABLE_NAME> VALUES ('+ cast(Column1_NAME as varchar),cast(Column2_NAME as varchar) +')'FROM TABLE_NAME
------------
Prakash Sawant
http://psawant.blogspot.com
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply