This example creates a SAS data set in a Base SAS session by submitting the FEDSQL
procedure, and then submitting FedSQL statements. The PROC CONTENTS output lists
the contents of the SAS data set.
Program
libname MyFiles base 'C:\My Documents';
proc fedsql;
create table myfiles.customer
( id double primary key,
name char(16),
address char(64),
city char(16),
state char(2),
country char(16),
homephone char(16),
workphone char(16),
cellphone char(16),
initorder double ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.