Hi,
If we are having variables in sas formats and we need to load the sas datasets on Oracle, how can we do this if variable formats in sas are not compatible with that of oracle.
Thanks in advance.
Why not 'strip' the formats off the variables and then load the raw data into Oracle. You may still have to work on date and time vars but all other vars should be ok.
ex.
data your_table_to_export_to_oracle;
set your_table;
format _all_;
run;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.