简体   繁体   中英

SAS/ACCESS Interface to Teradata QUERY_BAND

SAS Libname Statment

QUERY_BAND= LIBNAME Option

Generate

SET QUERY_BAND="BAND;" FOR SESSION;

I need to generate this :

SET QUERY_BAND='BAND’; FOR SESSION VOLATILE;

Whitch statment should I to use? Statement like QUERY_BAND_VOLATILE does not exist.

Your query_band expression is incorrect. Use smth like below, and run it within the Proc SQL as Richard suggested.

SET QUERY_BAND = 'BAND=1;' FOR SESSION VOLATILE;

proc sql;

connect to teradata as tdd (server=&SERVER. user=&HCUSER. password=&HCPASS.);

execute(SET QUERY_BAND = 'BAND=1;' FOR SESSION VOLATILE; ) by tdd;

disconnect from tdd;

quit;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM