Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Don't use the SAS tag. Your question does not have anything to do with SAS. Perhaps you can find help from a Stata forum. – BellevueBob Feb 13 at 22:38
I have aleady tried the Statalist, where I am an active user. The Stata/TD combo is pretty rare, so I got zero response there. SAS is more common in the business world, and there appears to be lots of SAS documentation for TD/ODBC. The Stata part may be even irrelevant if it's just a matter of setting the mode for ODBC elsewhere. I can certainly remove the tag if the moderators object. – Dimitriy V. Masterov Feb 13 at 23:08

2 Answers

I'm not familiar with Stata, but I'm guessing that your ODBC is connecting in "ANSI" mode. Try adding this between the create volatile table and the select statements:

commit work;

If that doesn't work, you may need to make two separate calls somehow.

UPDATE: Thinking a bit more about this, perhaps you can try this:

odbc load, exec("select distinct user_id from dw_users where cast(date_confirm as
date) > '2011-09-15'") clear dsn("mozart") lowercase;

In other words, just execute the query in one step; don't try to create a volatile table.

share|improve this answer
That produces "Syntax error: COMMIT WORK not allowed for a DBC/SQL session" error message. Any idea what that means? I am pretty inexperienced with Teradata. – Dimitriy V. Masterov Feb 13 at 20:57
Sorry, I understand the Teradata part but I don't know this Stata thing. The SQL looks correct to me (although normally I'd expect to see a fully-qualified table name). Volatile tables only exist for the duration of one session so maybe you need to execute the statements separately. But again, I don't know how it works for you; that clear option might break the connection. – BellevueBob Feb 13 at 21:14
Look at the ODBC driver options and try changing the "Session Mode". Try different settings and see if they make a difference. Again, I'm just guessing here. I don't use ODBC at all myself (I use .NET). – BellevueBob Feb 13 at 21:21
This query runs perfectly in SQL Assistant, but I would like to avoid the hassle of having to import a csv file into Stata for analysis. The clear tells Stata to clear any data currently loaded into memory to make room for the second select. Is there anything I can change in .odbc.ini file to set the mode to ANSI? Does the commit work; go right before the second select? – Dimitriy V. Masterov Feb 13 at 21:24
If your connection is in ANSI mode, the COMMIT is needed. If the connection is in TERADATA mode, the COMMIT is NOT needed. And sorry, I don't know the parameters for the odbc.ini file; I was referring to the driver settings in the Windows ODBC Administrator. – BellevueBob Feb 13 at 22:27
show 1 more comment

What if you try the following with your connection mode as TERADATA (which is more often then not the default):

odbc load, exec("BT; create volatile table new_usr as
(select top 10 user_id from dw_users) with data primary index(user_id) on commit
preserve rows; 
ET;

select * from new_usr;") clear dsn("mozart") lowercase;

The BT; and ET; statements wrap the SQL contained between in an explicit transaction. This SQL has been tested in SQL Assistant as I don't have access to the tool you are using. Typically, BT and ET are used to enforce logical transactions (or units of work) that must be completed successfully or everything is rolled back. This may allow you to get around the issue you are having in your tool.

EDIT

Failing the ability to wrap the Volatile Table creation in a BT and ET do you have the ability to create a stored procedure or macro that can embed all the logic necessary to complete the task then call the stored procedure or macro from Stata?

share|improve this answer
Thanks for helping me again. I changed the mode in the .odbc.ini file. I am getting the following error: Only an ET or null statement is legal after a DDL Statement. SQLSTATE=25000 – Dimitriy V. Masterov Feb 20 at 17:26
So the inclusion of BT; and ET; statements didn't work? – Rob Paller Feb 20 at 18:13
I just took your code as is from the post. – Dimitriy V. Masterov Feb 20 at 19:15
I have never tried a stored procedure before. I will try to figure out how to do that. – Dimitriy V. Masterov Feb 21 at 1:39
Just to make sure I am doing things correctly, is connection mode the same thing as session mode? – Dimitriy V. Masterov Feb 21 at 1:44
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.