Hi, when I run the following script in SQL 2000 Query Analyzer, I try to find the created table in the database, as well as TempDB, however, do not see it listed anywhere. If I keep QA open, I can continue to interact with the table (select, insert, etc), but do not see it listed anywhere.
Does anyone know where it is stored?
-Ovatvvon :-Q
Does anyone know where it is stored?
Code:
USE {db_name}
GO
CREATE TABLE #tmpTable(
id int PRIMARY KEY,
txt varchar(25)
)
INSERT INTO #tmpTable (id, txt) VALUES (1, 'Test 1')
INSERT INTO #tmpTable (id, txt) VALUES (2, 'Test 2')
INSERT INTO #tmpTable (id, txt) VALUES (3, 'Test 3')
SELECT * FROM #tmpTable
-Ovatvvon :-Q