November 23, 2010 at 7:02 pm
jts_2003 (11/23/2010)
What interested me was how long the random names are in sysobjects - obviously Microsoft planning for LOTS of temporary objects being created!
It's not the number of names, it's to lower the chances of generating duplicate names. That's why GUID/UNIQUEIDENTIFIER values are so long.
David Lathrop
DBA
WA Dept of Health
November 23, 2010 at 11:52 pm
This will surely work :
select * from sysobjects where name like '#testvm%'
November 24, 2010 at 1:51 am
archana.singh 38798 (11/23/2010)
This will surely work :select * from sysobjects where name like '#testvm%'
No, because it will also return tables called '#testvm_something' etc. as was explained earlier
November 24, 2010 at 10:55 am
Thanks for the question.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
November 24, 2010 at 9:13 pm
Well said Nigel. 🙂
December 3, 2010 at 1:20 pm
Thanks for the question, and the discussion.
Viewing 6 posts - 31 through 35 (of 35 total)
You must be logged in to reply to this topic. Login to reply