BookmarkSubscribeRSS Feed

[SAS 활용 FAQ] Index를 create 하려니까 “ERROR: HEADER/VARIABLE UPDATE 함수는 ODBC 엔진을 지원하지 않습 니다”라는 메시지가 뜹니다.

Started ‎10-11-2021 by
Modified ‎10-11-2021 by
Views 226

아래 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;

Version history
Last update:
‎10-11-2021 09:56 PM
Updated by:
Contributors

sas-innovate-white.png

🚨 Early Bird Rate Extended!

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.

Register now!

Article Labels
Article Tags