question

jhunu avatar image
jhunu asked

select * from ##tablename

I am executing the below scrip " select * from ##tablename" getting error as :-Invalid object. How can i access this temporary table
temporary-tableglobal-temporary-table
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Kev Riley avatar image
Kev Riley answered
A double # table is a global temporary table, and will cease to exists when all connections have stopped referencing it and the session that created the table has ended. If you try to access the table outside of these conditions, it will no longer exist.
2 comments
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

jhunu avatar image jhunu commented ·
i am accessing in same connection.
0 Likes 0 ·
Kev Riley avatar image Kev Riley ♦♦ commented ·
can you post the script?
0 Likes 0 ·
salum avatar image
salum answered
Check the existence of your global temp table using below query. SELECT * FROM tempdb..sysobjects where name like '%tablename%'
1 comment
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Pavel Pawlowski avatar image Pavel Pawlowski commented ·
Better to use `SELECT OBJECT_ID('tempdb..[##myTempTableName]')`. You will receive the correct ID or NULL if table doesn't exists. The like can return multiple objects if you will search a local temp table, but also global with the same name exists or any other table with table name starting as your table exists.
0 Likes 0 ·
Sri 1 avatar image
Sri 1 answered
i think there are two table, one is local temp table which we create like #table and another is ##Table which is global temp table concept. local will be accesible to you only while ## global to all user who are on server till the time session not end by creator.
1 comment
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Sri 1 avatar image Sri 1 commented ·
you can more search the topic on google.
0 Likes 0 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.