Viewing 15 posts - 91 through 105 (of 427 total)
Thanks Grant. Using the transaction id (from sys.dm_tran_locks.request_owner_id) I could figure out that the same transaction also had an IX lock on an internal table called "queue_messages_180220113", which is likely...
August 16, 2012 at 1:28 am
gdraghetti (7/24/2012)
I have a problem in SQL2005 so after several days of work without problems, suddenly takes a very slow (sqlserv.exe works much CPU in task manager) and checking the...
August 14, 2012 at 8:07 am
Have a look at the state of the conversations in your system(s). Are they properly closed by a call to end conversation on both ends? A good starting point is...
August 14, 2012 at 7:44 am
dave.farmer (7/26/2012)
I'm also curious as to the operation of the RECEIVE... when there are, say, 10 million messages in the queue, what will my activation procedure actually RECEIVE? Not all...
August 14, 2012 at 6:57 am
What I usually do in this sort of situation is simply to disable the queue (alter queue dbo.[queuename] with status = off). The call to receive will fail on...
August 14, 2012 at 6:50 am
You may still be interested to read this blog post from the developers of SSSB which describes how to configure your service broker routes such that the calls to your...
August 14, 2012 at 6:28 am
Then while you're at it, don't use getdate() for the timestamp on your audit data and don't use current_timestamp either. Instead I suggest to use getutcdate().
Using getutcdate() ensures that a)...
July 23, 2012 at 2:27 am
prakashp 84206 (6/6/2012)
R.P.Rozema,I want to remove the duplicates as a one-off task.
Since you're talking with MS SQL experts here, I would like to suggest you import the data into a...
June 15, 2012 at 1:29 am
Ok, lets go about this another way: do you need to remove the duplicates as a one-off task, or are you writing some code that will be used many more...
June 6, 2012 at 2:30 am
That's not SQL J, that's Sybase Adaptive Server. As I read it, SQL J is just a method to include Java code in their database, much similar to SQL server's...
June 5, 2012 at 5:01 am
prakashp 84206 (6/4/2012)
I understand your concern, don't get angry. Sorry for troubling you. But frankly speaking I can't find the forum for SQL J. I am using SQL J...
June 5, 2012 at 12:59 am
prakashp 84206 (6/4/2012)
June 4, 2012 at 6:55 am
iBar (5/23/2012)
Agree. Ok then "Mark-101232" solution is already there.Thanks.
Thank you for the effort, but I wasn't looking for an answer anymore. Microsoft already provided the 'official' workaround: select
'A' as [value],
'',
'B'...
June 3, 2012 at 4:08 am
You can also give this a try to see what it does for your performance. It would do a lot better if at least some of the columns used in...
June 3, 2012 at 3:41 am
GSquared (5/30/2012)
Those IsNulls in the Where clause and Join predicates are also going to also kill performance, unless I'm mistaken. Regardless of indexing....
Indeed, the isnulls should be removed to...
June 3, 2012 at 3:21 am
Viewing 15 posts - 91 through 105 (of 427 total)