|
|
Archives of the TeradataForum
Message Posted: Wed, 07 Jan 2004 @ 22:59:56 GMT
Subj: | | Re: Global temp tables |
|
From: | | Christie, Jon |
Putting that nugget of info into a request, we get:
sel trim(d.databasename)||'.'||trim(t.tvmname)
from DBC.TVM t
,DBC.Dbase d
where t.databaseid = d.databaseid
and t.tablekind = 'T'
and t.commitopt in ('D','P')
order by 1;
It's important to remember that this request returns a complete list of global temporary templates. It does not report instances of
those templates at all.
| |