Viewing 15 posts - 5,551 through 5,565 (of 7,168 total)
Here is a neat form of the DELETE query shown above that I find useful at times:
WITH cte
...
July 12, 2011 at 4:22 pm
Duplicate post. Direct replies here: http://www.sqlservercentral.com/Forums/Topic1140682-392-1.aspx
July 12, 2011 at 3:35 pm
al_nick (7/12/2011)
I have the following EAV table based on exam data which we are receiving:
CREATE TABLE [dbo].[Exams](
[examid] [int] NULL,
[entity] [varchar](255) NULL,
[value] [varchar](255) NULL,
[examrowid] [int] NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
INSERT...
July 12, 2011 at 3:35 pm
Jeffrey Williams-493691 (7/12/2011)
July 12, 2011 at 2:43 pm
Elliott Whitlow (7/12/2011)
opc.three (7/12/2011)
If you're ready for a new challenge asynchronous behavior can be achieved purely in T-SQL using Service Broker.
I absolutely agree it can be done with service broker,...
July 12, 2011 at 2:28 pm
This script from Lowell is pretty slick:
http://www.sqlservercentral.com/Forums/FindPost1140415.aspx
It's better than what I had in place. It only needs a few tweaks. I gave it a spin and the I saw it...
July 12, 2011 at 2:13 pm
That's scary, we even picked the same alias and variable names :blink:
July 12, 2011 at 2:00 pm
If you're ready for a new challenge asynchronous behavior can be achieved purely in T-SQL using Service Broker.
July 12, 2011 at 1:53 pm
Thanks for sharing the links. They had me at "Undo/Redo" 😀
July 12, 2011 at 1:51 pm
Try this form (changes to your original query bolded):
DECLARE @cnt INT
SELECT @cnt = cnt
FROM OPENQUERY(SDW, 'SELECT count(*) as cnt
...
July 12, 2011 at 1:43 pm
sandyinfowave (7/12/2011)
Hello guys,I am using WMI Event Watcher Task to watch for any files placed in the folder....How does it actually work?? Should the package be running all the time
Thanks
Yes,...
July 12, 2011 at 1:31 pm
David Benoit (7/12/2011)
July 12, 2011 at 1:17 pm
Thanks for the reply David. I would like to do this in T-SQL if possible. Would running this on the publisher instance be equivalent to the steps you provided for...
July 12, 2011 at 12:39 pm
This is a first for me...I never before heard anyone say they used the "English Query" sub-system. I am curious as to why it was dropped from the product since...
July 12, 2011 at 10:30 am
Dean Cochrane (7/12/2011)
Syed Jahanzaib Bin hassan (7/12/2011)
Change the compatibility mode to 100 and rebuild the indexes and update the stats also,did you ?
I haven't tried that - change compatibility to...
July 12, 2011 at 9:11 am
Viewing 15 posts - 5,551 through 5,565 (of 7,168 total)