Is there a way to tweak ODBC/Stata to work with volatile tables on Ubuntu?
Here's an example of a simple toy SQL query that I am using in Stata:
odbc load, exec("create volatile table new_usr as
(select top 10 user_id from dw_users) with data primary index(user_id) on commit
preserve rows;
select * from new_usr;") clear dsn("mozart") lowercase;
This is the error message I am getting:
The ODBC driver reported the following diagnostics
[Teradata][ODBC Teradata Driver][Teradata Database] Only an ET or null statement is legal after a DDL Statement.
SQLSTATE=25000
r(682);
Any advice would be greatly appreciated. I added the SAS tag since there seems to be a lot of documentation online for SAS and Teradata via ODBC. This may be just an issue of changing the mode somewhere in the ODBC settings. I am using unixODBC as the manager.
Update: You can change the mode in the .odb.ini settings by adding SessionMode=ANSI to each entry. Still doesn't work, but maybe getting closer.