Viewing 15 posts - 271 through 285 (of 9,643 total)
Based on your code it looks like this procedure is part of a series of actions that are all part of the same transaction. This could be part of...
September 18, 2015 at 12:35 pm
Would a comma delimited list of decline reasons be an acceptable solution? If it isn't then Gazareth's suggestion(s) are the best ones. If the decline list is basically...
September 18, 2015 at 11:53 am
With the default READ_COMMITTED isolation level the behavior you are seeing is what I would expect, a reader being blocked by writer until the writer commits. You could use...
September 18, 2015 at 11:46 am
BL0B_EATER (9/18/2015)
chrisn-585491 (9/18/2015)
The counter offer decision has become very easy for me. I never take it. In over 30 years of experience and many moves, I've always been better off...
September 18, 2015 at 9:43 am
Just got a deadlock alert from Idera DM and this is the query(anonymized):
'
SELECT
*
FROM
"database"."dbo"."table" WITH (UPDLOCK, REPEATABLEREAD)
WHERE
"columnA" = @P1...
September 18, 2015 at 6:52 am
I wouldn't ever expect the counter offer to happen. If it does, great, it means, as you said, 2 companies think you are worth it.
I think most people don't...
September 18, 2015 at 6:49 am
Andy Warren (9/17/2015)
September 18, 2015 at 6:34 am
I've never done the renegotiate thing. I've never really left a "permanent" full-time position by choice, it has always happened to me through layoffs. I do know that...
September 17, 2015 at 7:31 am
Can be a newer edition as the tools are usually backwards compatible. Profiler is anyway.
September 16, 2015 at 7:35 am
SQL Server is designed to use a lot of memory to cache data.
The way SQL Server works is that as queries are run it loads the data into memory (physical...
September 11, 2015 at 1:53 pm
Will1922 (9/11/2015)
EXEC sp_trace_setevent @TraceID, 41, 10, @on
It's option 10 which is what I added - RPC:Completed. And...
September 11, 2015 at 1:46 pm
Well, you didn't add the RPC:Completed event and SSIS is using RPC to send it's queries. Check out https://msdn.microsoft.com/en-us/library/ms186265.aspx That's the 2016 version of BOL, but trace hasn't...
September 11, 2015 at 1:24 pm
You are collecting SQL:StmtCompleted and you need RPC:Completed to get what SSIS is doing.
September 11, 2015 at 12:27 pm
This isn't piling on, but you really need to re-think the architecture here. As has been mentioned, the trigger is not written to handle a set-based insert which means...
September 11, 2015 at 11:38 am
Real thread is here, http://www.sqlservercentral.com/Forums/Topic1718832-391-1.aspx
September 11, 2015 at 11:30 am
Viewing 15 posts - 271 through 285 (of 9,643 total)