Yes I did refresh the TD library in SAS. I have Teradata SQL Assistant. When I use the below code in that, it's able to create the volatile table
create volatile table temp as (
select top 10 cust_id from teralib.customers
)
with data primary index (cust_id)
on commit preserve rows
However, when I run the same code below in SAS, I don't see the table. All I am looking for is the colatile table to be brought into a SAS library.
proc sql;
CONNECT TO ODBC AS TDP5 (DSN="TDP5DBC" UID="&SGB_UID." PWD="&SGB_PWD." connection=global);
execute(
create volatile table temp as ( select top 10 cust_id from teralib.customers ) with data primary index (cust_id) on commit preserve rows
) by TDP5;
quit;
... View more