Hi,
Can I do a commit in a data step similar to sql commits?
data tab2;
set tab2;
....
run;
For example, every 1000 rows.
Thanks
You may need to provide specific details on what your are attempting.
The OUTPUT statement is executeable and can be conditional so if you do something like:
Data tab3;
set tab2;
if mod(_n_,1000)=0 then output;
run;
you can get get every 1000 record. _n_ is an automatic variable indicating the record read, MOD is a function doing modular arithmetic.
BTW be very carefule using the Data table; Set table; construct. Logic errors may mean that you destroyed the data you needed at a later step.
B
You may need to provide specific details on what your are attempting.
The OUTPUT statement is executeable and can be conditional so if you do something like:
Data tab3;
set tab2;
if mod(_n_,1000)=0 then output;
run;
you can get get every 1000 record. _n_ is an automatic variable indicating the record read, MOD is a function doing modular arithmetic.
BTW be very carefule using the Data table; Set table; construct. Logic errors may mean that you destroyed the data you needed at a later step.
B
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.