2
votes
5answers
97 views
Replacing sequence with random number
I would like to replace some of the sequences I use for id's in my postgresql db with my own custom made id generator. The generator would produce a random number with a checkdigit …
7
votes
10answers
1k views
How do I return random numbers as a column in SQL Server 2005?
I'm running a SQL query on SQL Server 2005, and in addition to 2 columns being queried from the database, I'd also like to return 1 column of random numbers along with them. I trie …
0
votes
1answer
44 views
How can I randomize DataMapper collection and convert it to JSON?
Hi,
I'm pulling my hair out trying to build a little random photo JSON feed using DataMapper/Sinatra. Here's what I have so far..
Photo.favorites.to_json(:methods => [:foo, :b …
0
votes
3answers
89 views
How can I SELECT 16 records at random from a range of rows in MySQL?
I want to display a list of 16 of the most popular items in my database, but I want that list to be different every time. So from say, the top 50 downloaded items, choose 16 at ra …
3
votes
5answers
123 views
Optimizing my mysql statement! - RAND() TOO SLOW
So I have a table with over 80,000 records, this one is called system. I also have another table called follows.
I need my statement to randomly select records from the system tab …
2
votes
6answers
375 views
TSQL Generate 5 character length string, all digits [0-9] that doesn’t already exist in database…
What's the best way to do this?
I need to generate a 5 digit length string where all the characters are numeric. However, I need to be able to do this 'x' amount of times (user v …
3
votes
8answers
1k views
Pseudo Random in MS SQL (not NEWID() and not RAND())
I would like to randomly sort a result in a repeatable fashion. For this NEWID() is too random in that the same results cannot be re-obtained. Ideally order by Rand(seed) would b …
3
votes
6answers
233 views
How can I insert random values into a SQL Server table?
I'm trying to randomly insert values from a list of pre-defined values into a table for testing. I tried using the solution found on this StackOverflow question:
stackoverflow.com …
0
votes
4answers
142 views
Is this a good or bad way of generating random numbers for each record?
A colleague of mine discovered a behaviour in SQL Server which I was unaware of.
CREATE VIEW dbo.vRandNumber AS
SELECT RAND() as RandNumber
GO
CREATE FUNCTION dbo.RandNumber() RE …
2
votes
3answers
206 views
SQL : select one row randomly, but taking into account a weight
I'm using MySQL.
I have a table which looks like that:
id: primary key
content: varchar
weight: int
What I want to do is randomly select one row from this table, but taking into …
0
votes
3answers
190 views
(PostgreSQL) random number range 1 - 10
Hi all,
since my approach for a test query which I worked on in this question did not work out I'm trying something else now. Is there a wayto tell pg's random() function to getm …
1
vote
2answers
58 views
Randomize Time Portion of Date Field
What is the best way to randomize the time part for a DATE column, using Oracle 10g?
For example, the date portion for the data was set as follows:
UPDATE table_name SET column_t …
2
votes
6answers
285 views
Generating random strings with T-SQL
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?
6
votes
8answers
551 views
How to randomly select rows in SQL??
In my db, I have a table "customerNames" which has two columns "Id" and "Name" and approx. 1,000 results. I am creating a functionality where I have to pick up the 5 customers rand …
3
votes
7answers
284 views
T-SQL equivalent of =rand()
I have several content tables that I want to fill up with random paragraphs of text. In MS Word, I can simply put =rand() and presto! I get three paragraphs of fresh-off-the-press …
