Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 5 of 5 total
Thread Where is my TEMPORARY table?
Thu, Dec 18 2008 4:12 AMPermanent Link

Tiago Ameller
Docs says "the table should be created as a local temporary table that is only visible to the current session."

Running this in EDBMgr

CREATE TEMPORARY TABLE TopTen AS
SELECT CLIENTE, COUNT(*) AS SUMA
FROM MAEXPEDI
GROUP BY CLIENTE
HAVING SUMA > 10
WITH DATA

TopTen table is missing or I can't see it in EDBmgr

Running it again and "TopTen table already exists"

May be I need to change my glasses Smiley
Thu, Dec 18 2008 7:25 AMPermanent Link

Francisco Fernandez
Tiago,

I have  the same problem in edbmgr but in application works fine but don't drop table
because you may have problems, wait the next fix.
Thu, Dec 18 2008 10:51 AMPermanent Link

Francisco Fernandez
Sorry, i correct. The problem comes when you try to drop temporary table and it
not exists.
Thu, Dec 18 2008 11:08 AMPermanent Link

Fernando Dias

Team Elevate Team Elevate

Tiago,

I'm not absolutly sure about this (Tim will correct me if I' wrong Smiley,
but it seems to me that temporary tables are not, as the name indicates,
"persistent" database objects and so, not stored in the database
catalogue, and that's why they don't show in EDB Manager.

--
Fernando Dias
[Team Elevate]
Thu, Dec 18 2008 2:57 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Tiago,

<< TopTen table is missing or I can't see it in EDBmgr >>

EDB Manager does not show temporary tables in the list of normal tables.
They are just "there".  2.03 is going to finally have a catalog table for
temporary tables, and then I can see about adding them as a separate list in
the EDB Manager.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image