I need to create a random sample of 100K from a billion record dataset. I searched online and learned that I can use raununi (x). But when I ran it in SAS Enterprise guide 5.1, it returned an error message "
CLI describe error: [IBM][CLI Driver][DB2/AIX64] SQL0440N No authorized routine named "RANUNI" of type "FUNCTION" having
compatible arguments was found. SQLSTATE=42884
"
My codes are like:
"
proc sql;
create table aa as
select *
from bb
where ranuni(5567) between 0.5 and 0.51
"
Any advice on how to create a random sample using SQL efficiently?
Thanks!
If you have the right license for it I would use this:
proc surveyselect data=Customers
method=srs n=15
seed=1953 out=SampleStrata;
strata State Type;
run;
If you must use sql all the info you need should be here:
Randuni is a call function, therefore I don't think its available in proc SQL. You can although use the rand() function:
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.