Create Access Database from SAS


/ Published in: SAS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. PROC EXPORT DATA= DATASET_NAME
  2. OUTTABLE= "TABLE_NAME"
  3. DBMS=ACCESS REPLACE;
  4. DATABASE="C:\DATABASE_NAME.MDB";

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.