아래 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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.