Viewing 15 posts - 406 through 420 (of 49,571 total)
January 25, 2018 at 7:22 am
It's deadlocking because there's some statement earlier in the transaction holding other locks. You need to identify what those other statements are before you can solve this deadlock problem.
Don't...
January 25, 2018 at 7:19 am
For when the procedure was created, look at the create date in sys.procedures. SQL doesn't track the last execution date except as tied to the plan (which is not necessarily...
January 25, 2018 at 6:49 am
Yes, it will take a while if there's stuff running. It doesn't need single user, but it can't complete until all requests running at the point it started have finished.
January 25, 2018 at 5:16 am
No, it means that 20 devices max can connect to that single SQL Server
January 25, 2018 at 3:28 am
The first allows you to use SET TRANSACTION ISOLATION LEVEL SNAPSHOT in your queries. SNAPSHOT cannot be made a default isolation level
The second makes changes the default isolation level...
January 25, 2018 at 3:27 am
Narine M - Thursday, January 25, 2018 3:00 AMIs there any alternate solution
No idea. What are you doing with that table?
Cross database...
January 25, 2018 at 3:25 am
January 25, 2018 at 1:45 am
January 25, 2018 at 1:40 am
January 25, 2018 at 1:37 am
Correct, that table won't be there, it's not expected to be there.
January 25, 2018 at 1:35 am
January 25, 2018 at 1:32 am
Yes, no, no
They just must not take their own transaction log backup.
Edit: And you can carry on just restoring the log backups on the sunday, the...
January 24, 2018 at 11:26 am
A CTE must be followed immediately by a query. Yours is not, it's followed by an IF statement.
The IF needs to go outside of the CTE.
January 24, 2018 at 9:20 am
Viewing 15 posts - 406 through 420 (of 49,571 total)