Viewing 15 posts - 76 through 90 (of 427 total)
I haven't read your entire series yet (though I certainly intend to do so) but while scanning through this level it struck me you that you are referring to typed...
November 13, 2012 at 4:01 am
Bobby Glover (10/29/2012)
Can two service broker queues use the same contract.
It's services that you connect a contract to, not the queue. When you have a conversation between 2 services in...
November 5, 2012 at 4:26 am
An extensive search on the internet has revealed that the functionality I need (getting the parent object that was affected by the action that the trigger fired for) is not...
October 23, 2012 at 2:49 am
Calling a CLR procedure passing in the @@procid from a T-SQL trigger works. But, if I do this, I don't have access to the SqlTriggerContext object inside the CLR code...
October 22, 2012 at 3:40 am
Jeff Moden (10/21/2012)
October 21, 2012 at 1:18 pm
Jeff Moden (10/21/2012)
October 21, 2012 at 1:03 pm
We currently do have generated T-SQL auditing triggers. Each trigger gets generated by a stored procedure. These triggers generate an xml file from the inserted & deleted tables and send...
October 21, 2012 at 2:20 am
First off, I do not have any experience with WMIEventProviderNotifications, but I have worked a lot with Service Broker, so I may be totally off, but I think I can...
October 3, 2012 at 6:08 am
You've probably over simplified your example table, as I don't see an account column in it. I would expect a bookings table to have an account column in it, to...
September 19, 2012 at 6:13 am
For those trying to duplicate this experiment, for example to learn some Service broker basics from it, here is the same experimental code with documented improvements in it:
create database t2
go
use...
September 19, 2012 at 1:47 am
Your async handler routine should not exit after each message: Service broker expects its handlers to continue processing messages for as long as there are more messages available. As you...
September 18, 2012 at 8:03 am
Phil Parkin (8/15/2012)
....
select [Room / Shelf]
,left([Room / Shelf], charindex('/', [Room / Shelf]) - 1)
,right([Room / Shelf], len([Room / Shelf]) - charindex('/', [Room / Shelf]))
From ChemInventory
Where [Room...
August 17, 2012 at 2:08 am
Also, use proper types for your columns. Numeric values -like a salary- should not be entered as strings. If you store them as strings the values may not sort as...
August 17, 2012 at 1:22 am
BrainDonor (8/16/2012)
The easiest way is probably to use the CSV Splitter function, by Jeff Moden (with some assistance from others) - http://www.sqlservercentral.com/articles/Tally+Table/72993/.
The splitter function will return 3 rows per input...
August 16, 2012 at 2:00 am
I have not found more information why this happened, but after a restart of the sql server the lock that was held already for almost 14 days was released and...
August 16, 2012 at 1:40 am
Viewing 15 posts - 76 through 90 (of 427 total)