Viewing 15 posts - 5,041 through 5,055 (of 7,636 total)
Apparently, Service Broker event notifications can only be scoped to a specific Queue. So change your CREATE Event Notification as follows:
CREATE EVENT NOTIFICATION pmQueueDisabled
ON QUEUE pmNotifyQueue
...
October 27, 2008 at 4:08 pm
Sorry, I didn't see this before....
Is the comma in CREATE SERVICE a mistake or is there supposed to be another contract? (I am getting a syntax error there).
October 27, 2008 at 9:42 am
Glad we could help.
October 27, 2008 at 9:33 am
baumgaertner: It has already been explained how to do this with a script, even how to use SSMS to generate this script for you. Please let us know if...
October 27, 2008 at 8:55 am
What the Tablly table or CTE does in this case is to give you a way to create a a bunch of Divisions at once. For instance, this example...
October 27, 2008 at 8:45 am
Richard Cranston (10/27/2008)
What do you mean by "Using a Tally table/CTE probably"?
The Division numbers that you gave were in sequence which naturally suggests the use of a "Tally" or "Numbers"...
October 27, 2008 at 8:35 am
They use what is called "Copyleft". It's all explained at their Copyright page, here: http://en.wikipedia.org/wiki/Wikipedia:Copyrights
October 27, 2008 at 8:22 am
Could you give me a pointer to an example of how this is done, Jonathan? I think that we are probably talking about different things, but I do...
October 26, 2008 at 8:04 pm
Actually, I see this as a fairly interesting proposal, particularly as a path-forward starting point for allowing some kind of dynamic querying while preventing injection threats.
The problem is that at...
October 26, 2008 at 6:57 pm
rbarryyoung (10/9/2008)
Jeff Moden (10/9/2008)
True enough... but have you ever see it used for anything other than a delimiter? ๐I've seen it used for emoticons-> :ร
Jeff Moden (10/9/2008)
October 26, 2008 at 6:44 pm
I have to ask: Why are you using lowercase thorn ("รพ") as a column name?
October 26, 2008 at 5:59 pm
I cannot give you a real detailed answer without DDL's and sample data (see http://www.sqlservercentral.com/articles/Best+Practices/61537/). However the basic query type that you would use in SQL would look like...
October 26, 2008 at 5:52 pm
DECLARE is a statement. A CTE is an expression. In SQL, expressions are contained within statements, and never the other way around.
Unless you are trying to make a...
October 26, 2008 at 4:29 pm
My one suggestion would be the same as before: try a more relational approach to this.
Here is an example of how you might do that:
--====== Relational Tables
Create Table Players(
PlayerID...
October 26, 2008 at 11:10 am
Viewing 15 posts - 5,041 through 5,055 (of 7,636 total)