Last active
May 26, 2016 15:52
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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