Viewing 15 posts - 44,416 through 44,430 (of 49,571 total)
Depends on how many rows your query affects and how much lock memory SQL has available.
If both are switched off, then you'll probably be getting table locks.
September 19, 2008 at 3:06 am
Consider using a timestamp (aka rowversion). It's got nothing to do with time despite the name. It's a binary number that changes every time the row is updated is unique...
September 19, 2008 at 2:09 am
They affect what logs are allowed on the indexes. SQL can take locks at various granularities depending on the amount of rows affected. It can lock at the row, page,...
September 19, 2008 at 2:01 am
You may want to contact Microsoft's customer support people on this. Stack dumps shouldn't be occurring at all, much less every couple min. They will have the tools to read...
September 19, 2008 at 1:53 am
And please post in the appropriate forum next time.
September 19, 2008 at 1:49 am
sqlservercenter (9/18/2008)
detach it, when attach,ignore the log file,then it is ok.
Especially if you're trying to corrupt the database.
Log files aren't optional, deleting them should be an absolute last resort and...
September 19, 2008 at 1:47 am
Weird...
Are there any entries in the sql error log or windows event log from the same time?
September 19, 2008 at 1:46 am
toparsi (9/18/2008)
Thanks for all the replies...Gila Monster
I could not answer as I came in a little late today. We are using MSMQ (microsoft message queuing) for batch processing.
Ok,...
September 19, 2008 at 1:45 am
When you get a deadlock graph, post it here and I'm sure someone will help you with it.
September 18, 2008 at 10:29 am
What traceflag do you have on to get that output? (1205?)
Try switching whichever that one is off and switching 1222 on. It gives very nice, very detailed output. There's nothing...
September 18, 2008 at 10:20 am
The advantage is that the log backup will clear out of the log the entries for the delete that just finished, allowing the space to be reused on the next...
September 18, 2008 at 10:13 am
Use the server-side trace functionality. It's what profiler uses behind the scenes and it uses a bunch of sp_trace procedures.
You can get profiler to create a script for you...
September 18, 2008 at 10:06 am
They're a big, big organisation, their methodologies and ways of doing things are set and are not subject to change. As long as you don't mind been told exactly how...
September 18, 2008 at 10:04 am
Can you do an integrity check on that DB?
DBCC CheckDB (< Database name > ) WITH NO_INFOMSGS
September 18, 2008 at 9:55 am
Viewing 15 posts - 44,416 through 44,430 (of 49,571 total)