Archives of the TeradataForum
Message Posted: Tue, 13 Oct 2009 @ 14:24:29 GMT
Subj: | | Re: Volatile table in procedure |
|
From: | | Geoffrey Rommel |
I may have spoken too soon. Apparently it is possible to create a procedure that uses a volatile table, as long as you do this:
Session 1:
create volatile table ...;
create procedure ...;
/* The procedure is created, but you get a warning. */
Session 2:
create the same volatile table;
call the procedure;
Something is wrong with the C compiler on my TD Express version, so I am unable to test this right now. Sorry!
|