If you wanted to generate a pseudorandom alphanumeric string using T-SQL, how would you do it? How would you exclude characters like dollar signs, dashes, and slashes from it?
|
|
When generating random data, specially for test, it is very usefull to make the data random, but reproductible. The secret is to use explicit seeds for the random funciton, so that when the test is run again with the same seed, it produces again exactly the same strings. Here is a simplified example of a funciton that generates object names in a reproducible manner:
When running the tests the caller generates a random seed it associates with the test run (saves it in the results table), then passed along the seed, similar to this:
|
||
|
|
|
I came across this blog post first, then came up with the following stored procedure for this that I'm using on a current project (sorry for the weird formatting):
|
||
|
|
|
|
I did this in SQL 2000 by creating a table that had characters I wanted to use, creating a view that selects characters from that table ordering by newid(), and then selecting the top 1 character from that view.
Then you can simply pull characters from the view and concatenate them as needed. EDIT: Inspired by Stephan's response...
No need for a view (in fact I'm not sure why I did that - the code's from several years back). You can still specify the characters you want to use in the table. |
|||
|
|
|
|
You can do it aswell with the following line:
Downside is that the word has a maximum of 32 characters and only uses 0-9 and a-f. EDIT: yes you're right, corrected. |
|||
|
|
|
Using a guid
very short ... |
||
|
|
|
|
Similar to the first example, but with more flexibility:
I forgot to mention one of the other features that makes this more flexible. By repeating blocks of characters in @CharPool, you can increase the weighting on certain characters so that they are more likely to be chosen. |
||
|
|
