• Emito (5/14/2010)


    You have a really good script for this in this url:

    http://vyaskn.tripod.com/code/generate_inserts.txt

    Written by:Narayana Vyas Kondreddi

    I used a lot, its really nice!!! :-D.

    Yes, the old script you mention has been used by many in the past. It does not handle some data types, such as image and varbinary(max). Additionally, that script has a while loop in it used just to get column names and their data types. Using the loop is not a good idea when you can use a rather simple select statement to do the work. I specifically mentioned in the beginning of the article that I am offering no cursors, no while loops, no bunch of single quotes solution to the task of generating insert statements.

    My script also suffers from data type limitations, but this is only because of the small bugs in it. For example, I simply did not check floats and handling them requires small tweaks to the script. However, my script can potentially handle the data types which are not handled by the script to which you refer.

    Oleg