BookmarkSubscribeRSS Feed
msbrvamsi
Calcite | Level 5

Hi,

 

i am using SAS Desktop version, i can only connect to database using wizard every time. Can some one suggest me how can i save the database table pulled from wizard saved into SAS Dataset.

 

I need this urgently please can someone help me on this.

 

Thanks,

Vamsi

1 REPLY 1
HB
Barite | Level 11 HB
Barite | Level 11

Are you selecting File > Import Data and then working through there using a database as a source?

 

As one of the final steps it will ask if you want to save the code as Proc Import.  Do that and post it here.

 

Should look something like

PROC IMPORT OUT= WORK.name_you_select 
            DATATABLE= "name of the table being imported" 
            DBMS=ACCESS REPLACE;
     DATABASE="J:\Drive D\source path to file\some database.mdb"; 
     SCANMEMO=YES;
     USEDATE=NO;
     SCANTIME=YES;
RUN;

 

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 531 views
  • 0 likes
  • 2 in conversation