BookmarkSubscribeRSS Feed

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

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

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

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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Article Labels
Article Tags