Viewing 15 posts - 6,901 through 6,915 (of 49,571 total)
You've got an active transaction. A session somewhere has run a BEGIN TRANSACTION and has not either committed or rolled the transaction back.
Commit or roll back the open transaction, then...
December 31, 2014 at 1:29 am
Igor Micev (12/30/2014)
GilaMonster (12/29/2014)
Have a read through this: https://www.simple-talk.com/sql/performance/sql-server-deadlocks-by-example/
Hi Gail,
I read your article. In Reader-Writer Deadlocks, why do you move the merge statement into another SP (UpdateCustomerLatestOrderStatus ), can't you...
December 30, 2014 at 10:35 am
goussarova (12/30/2014)
No, I have no proof of page locking.
I have not considered read committed snapshot or snapshot isolation as I never used them before.
I read about snapshot isolation this...
December 30, 2014 at 10:27 am
Backup/restore - backup the database to a file. Restore from file.
Copy database wizard - run object creation scripts on destination and copy data one table at a time.
December 30, 2014 at 5:08 am
SELECT * FROM TableName WHERE DateTimeColumn = '2014-12-28 08:52:02.920'
December 30, 2014 at 2:51 am
994388426 (12/30/2014)
1.For a mirroring session to be established, the partners and the witness, if any, must be running on the same version of SQL Server.
Not entirely true. Mirroring up-version...
December 30, 2014 at 2:46 am
matt.newman (12/12/2014)
December 30, 2014 at 2:45 am
The same way as in this thread of yours http://www.sqlservercentral.com/Forums/Topic1646925-149-1.aspx, you can just omit the LEFT function since you're grouping by the entire column
Please don't post multiple threads for the...
December 30, 2014 at 2:29 am
Not enough information there. The CheckDB output would have been written to the error log. Look there.
December 30, 2014 at 1:41 am
IncidentalProgrammer (12/29/2014)
December 30, 2014 at 1:39 am
IncidentalProgrammer (12/29/2014)
December 30, 2014 at 1:35 am
goussarova (12/29/2014)
December 30, 2014 at 1:30 am
Why do you think you need to do anything?
December 30, 2014 at 1:29 am
No ORDER BY, no guarantee of order. End of Story
If you need a particular order, put an ORDER BY on your query.
December 30, 2014 at 1:28 am
Uwe Ricken (12/29/2014)
SELECT, INSERT, UPDATE, DELETE are definitely not always single threaded. They can all run in parallel when the optimiser decides that the plan is expensive enough (compared with...
December 29, 2014 at 7:49 am
Viewing 15 posts - 6,901 through 6,915 (of 49,571 total)