vote up 0 vote down star

I have a huge table of > 10 million rows. I need to efficiently grab a random sampling of 5000 from it. I have some constriants that reduces the total rows I am looking for to like 9 millon.

I tried using order by NEWID(), but that query will take too long as it has to do a table scan of all rows.

Is there a faster way to do this?

flag

are you using some php/asp/ any stuff like that? – Skuta Mar 16 at 20:44
Why would it matter? I certainly don't wan the app layer to do this! – Byron Whitlock Mar 16 at 21:04

3 Answers

vote up 0 vote down check

If you can use a pseudo-random sampling and you're on SQL Server 2005/2008, then take a look at TABLESAMPLE. For instance, an example from SQL Server 2008 / AdventureWorks 2008 which works based on rows:

USE AdventureWorks2008; 
GO 


SELECT FirstName, LastName
FROM Person.Person 
TABLESAMPLE (100 ROWS)
WHERE EmailPromotion = 2;

The catch is that TABLESAMPLE isn't exactly random as it generates a given number of rows from each physical page. You may not get back exactly 5000 rows unless you limit with TOP as well. If you're on SQL Server 2000, you're going to have to either generate a temporary table which match the primary key or you're going to have to do it using a method using NEWID().

link|flag
Wrong, tablesample works by selecting an appropriate number of pages and then returning all the rows found on those pages. The whole point is avoiding hitting all the pages holding the table. – friism Mar 20 at 16:45
Sorry, you are right. Read the algorithm wrong. It determines the # of rows and then selects the entire page or not to get the approxmate #. – K. Brian Kelley Mar 20 at 21:27
vote up 4 vote down

Hi,

Have you looked into using the TABLESAMPLE clause?

For example:

select *
from HumanResources.Department tablesample (5 percent)
link|flag
vote up 3 vote down

Yeah, tablesample is your friend (note that it's not random in the statistical sense of the word): Tablesample at msdn

link|flag
We are using sqlserver 2005, but our database compatibility level is at 80, so no tablesample. :( any other ideas? – Byron Whitlock Mar 16 at 20:45
select * from customers order by newid() – Albert Mar 20 at 12:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.