hello,
I would like to know if there is a way to convert a date (ddmmyyn8) to another date format (ddmmyy10) using proc sql alter table modify?
Regards,
@alepage wrote:
Hello,
I am not familiar with proc dataset.
However, I have tried this peace of code and it seems to work.
Is It correct?
proc datasets lib=work;
modify BaseAV2017;
format EffDate yymmdd10.;
quit;
This is correct. It only changes the header information of the dataset and is therefore very efficient.
For "attribute surgery" like that, proc datasets is the method of choice.
Hello,
I am not familiar with proc dataset.
However, I have tried this peace of code and it seems to work.
Is It correct?
proc datasets lib=work;
modify BaseAV2017;
format EffDate yymmdd10.;
quit;
@alepage wrote:
Hello,
I am not familiar with proc dataset.
However, I have tried this peace of code and it seems to work.
Is It correct?
proc datasets lib=work;
modify BaseAV2017;
format EffDate yymmdd10.;
quit;
This is correct. It only changes the header information of the dataset and is therefore very efficient.
Thanks a lot for your Help Kurt
Best Regards
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.