I've got a new varchar(10) field in a database with 1000+ records. I'd like to update the table so I can have random data in the field. I'm looking for a SQL solution.
I know I can use a cursor, but that seems inelegant.
MS-SQL 2000,BTW
|
|
I've got a new varchar(10) field in a database with 1000+ records. I'd like to update the table so I can have random data in the field. I'm looking for a SQL solution. I know I can use a cursor, but that seems inelegant. MS-SQL 2000,BTW
|
|||
|
|
|
|
|
||||||
|
|
|
You might be able to adapt something like this to load a test dataset of values, depending on what you are looking for |
||
|
|
|
|
If this is a one time thing just to get data into the system I really see no issue with using a cursor as much as I hate cursors they do have their place. |
||
|
|
|
|
Additionally, if you are just doing this for testing or one time use I would say that an elegant solution is not really necessary. |
||
|
|
|
|
How about this:
|
||
|
|
|
|
Why not use the first 10 characters of an md5 checksum of the current timestamp and a random number? |
||
|
|
|
|
if you are in SQL Server you can use
EDIT: This will only work inside an iteration. As part of a multi-row insert it will use the same RAND() result for each row. |
||
|
|
|
|
Something like (untested code):
Obviously, concatenate more random characters if you want up to ten chars. It's possible that the query optimizer might set all fields to the same value; in that case, I would try
to trick the optimizer into recalculating each time the expression. |
||
|
|