Skip to content

Instantly share code, notes, and snippets.

@iangow
Last active May 26, 2016 15:52
Show Gist options
  • Save iangow/a7b96fe4da081e2b3f624c10fa9dec7c to your computer and use it in GitHub Desktop.
Save iangow/a7b96fe4da081e2b3f624c10fa9dec7c to your computer and use it in GitHub Desktop.
Code to get data into SAS via ODBC (thanks to Dan Taylor for testing)
proc sql;
connect to odbc as iangow (datasrc=iangow);
create table mydata as
select * from connection to iangow (
SELECT *
FROM filings.ct_orders);
quit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment