Apologies for posting this here. I've also posted to the ASE board, but it's very quiet these days. Just hoping there's a Sybase person lurking here!
Is there any way that I, as user sa, can view a temp table in tempdb created by another user. The tablename is preceded by a # (persists for session only) and the users session is still open.
Sybase tells me the table is owned by dbo, so I've tried all of the following ... all tell me the table doesn't exist.
Any thoughts much appreciated.
Greg.
Is there any way that I, as user sa, can view a temp table in tempdb created by another user. The tablename is preceded by a # (persists for session only) and the users session is still open.
Sybase tells me the table is owned by dbo, so I've tried all of the following ... all tell me the table doesn't exist.
Code:
select * from tempdb.dbo.#usertable
select * from tempdb.guest.#usertable
select * from tempdb.<userid>.#usertable
Greg.