Archives of the TeradataForum
Message Posted: Thu, 06 Mar 2003 @ 21:50:24 GMT
Subj: | | Re: Global Temporary Table not available |
|
From: | | Brian Dezarn |
I understand that the data is not available to the other sessions. Let me explain further.
session 1 Logs in and executes create table:
CREATE MULTISET GLOBAL TEMPORARY TABLE dbname.tablename (
column1 CHAR(6) NOT NULL,
column2 CHAR(6),
etc...
Session 1 inserts data
Insert into dbname.tablename values ('VALUE1','VALUE2'......
1 record inserted
Session 2 logs in and executes :
Insert into dbname.tablename values ('VALUE1','VALUE2'......
Error Table/view/trigger/procedure 'dbname.tablename' does not exist.
|