Hi everyone, I wondered if the index is kept while overwriting an indexed data set ?
for example:
data MyIndexedTable;
set MyIndexedTable;
newColumn=2*oldColumn;
run;
If it is not possible to keep indexes that way, how can I manage to update my table by keeping its indexes ?
Thanks in advance !
@Dozo92i wrote:
Hi everyone, I wondered if the index is kept while overwriting an indexed data set ?
for example:
data MyIndexedTable;
set MyIndexedTable;
newColumn=2*oldColumn;
run;
If it is not possible to keep indexes that way, how can I manage to update my table by keeping its indexes ?
Thanks in advance !
Try it.
Run a proc contents before and after, and you'll have the answer.
Example code for the test:
data work.class;
set sashelp.class;
run;
proc datasets library=work nolist;
modify class;
index create sex;
run;
quit;
proc contents data=work.class;
run;
data work.class;
set sashelp.class;
run;
proc contents data=work.class;
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.