Options

Frustrations with Data Generator

gsuttiegsuttie Posts: 80
edited February 6, 2014 11:43AM in SQL Data Generator
I have one table which I want to insert 1000 rows, I want the primary key column to have identities 1-1000 - nothing I try seems to put the data in that order, it seems to aways randomise them even when the preview says 1, 2, 3, 4, 5.

Also a really useful addition would be to be able to have the option to script out the data using data generator so I can actually see whats about to be inserted before it goes ahead and does it.

To be able to script out the data would be a great addition unless I cant see how to do it.

Comments

  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Hello,

    I believe the ability to output the generated data to script or text file has already been mentioned here:
    http://redgatesupport.red-gate.com/foru ... -Generator

    If you are referring to the preview window, you'll want to change the distribution setting from random to sequential in order to get the int generator to write the values in numerical order.

    With SQL Server, even if data is generated in a certain order, you may find that when you retrieve it from SQL Server it comes back in a different order, because of the way MSSQL Server stores data. You may want to include an ORDER BY clause in the query if you want results sorted on a particular column in ascending or descending order.
Sign In or Register to comment.