Hi,
I have one dataset called Cust_demo whci saved all the customer demographic information such as Cust_name, cust_Address and zip code..etc.. Now initially we have defined address variable as a character with length 8, now since the length of address field started increasing we have to make some more space for address variable suppose 10, so can i change this length of address variable?
Also this dataset is quite big almost18-20 gb so i can't take risk to recreate it with new length so any Efficient way without creating new dataset appreciated.
Regards,
Tushar Jagtap.
you can use proc sql;
proc sql;
alter table have
modify colname char(xxx) format=$xxx.;
quit;
you can use proc sql;
proc sql;
alter table have
modify colname char(xxx) format=$xxx.;
quit;
Thanks DBailey..
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.