아래 link 에 보시면 아래와 같은 내용을 확인하실 수 있습니다.
http://support.sas.com/kb/37/015.html
… To alter an RDBMS table, you must use explicit pass-through processing (also known as PROC SQL pass-through), as shown in the following example:
proc sql ;
connect to oracle(user=user-ID password=password path=host_string);
execute( alter table table-name ...specific-Oracle-syntax...)by oracle;
disconnect from oracle;
quit;
...
Index를 생성하시려면 아래 sample을 참고하시기 바랍니다.
proc sql;
connect to odbc(dsn=xxx user=xxx password=xxxx);
execute(create index............................... ) by odbc;
quit;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.