Re: Preparing Test Data to insert into Table -
02-12-2009
, 04:11 PM
MS Techie,
I don't think there's a straightforward way to do this.
If I had to generate test INSERTS, I would use a DTS data pump with ActiveX
scripting. For each row out, I would generate a line like this:
"INSERT TABLENAME(f1, f2, f3...)" & vbCRLF & "VALUES (" & f1 & ", " & f2 & ",
" & f3 .. & ")"
and dump it into a text file. Would this help you?
Let us know how you make out.
Regards,
Tom
Thomas Bradshaw
Data Integration Services
MyWebGrocer LLC
--
Message posted via SQLMonster.com
http://www.sqlmonster.com/Uwe/Forums...r-dts/200902/1 |