March 11, 2008 at 7:48 am
I recently faced a problem with data being there and not being there.
Let me explain. A particular row didnt have any values for a particular field when i looked into the the table by returning all rows from enterprise manager. At the same time, a select query for that particular field in that row revealed it HAD lots of values in there.
Any clues whether the data is there? not there? which one is right? why does this happen?
Thanks,
Learner.
March 11, 2008 at 11:49 am
Looks like a case of dirty reads. Is the query executed with set transaction isolation level read uncommitted ?
SQL DBA.
March 11, 2008 at 3:10 pm
Not sure what youre trying to say.
Thanks,
Learner
March 11, 2008 at 4:08 pm
Do you have any hex 0'x in the beginning of the data? If theres x00, the data wont get displayed correctly. This can be verified using a simple convert.
select convert(binary,columnname) from table
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply