February 14, 2007 at 10:19 am
Hi all
I have this hex 0x4319E038 pertaining to a table, after converting to int, i couldnt not find this particular ID in sysobjects...
What is the formula to get the particular table given this hex figure?
February 14, 2007 at 11:29 am
you should be able to use the object_name function without translating to decimal:
select object_name(0x4319E038)
select object_name(0x60FC61CA)
Lowell
February 15, 2007 at 9:08 am
Don't forget to set your database context to the proper database prior to running the select. If you do not, then you can get an incorrect object name or NULL as a result.
RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply