Viewing 15 posts - 5,551 through 5,565 (of 7,164 total)
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 12, 2011 at 3:35 pm
Jeffrey Williams-493691 (7/12/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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,...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 12, 2011 at 2:13 pm
That's scary, we even picked the same alias and variable names :blink:
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 12, 2011 at 1:53 pm
Thanks for sharing the links. They had me at "Undo/Redo" 😀
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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,...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 12, 2011 at 1:31 pm
David Benoit (7/12/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 12, 2011 at 9:11 am
opc.three (7/11/2011)
Raghavender (7/8/2011)
We have a user for a database. Here we need that user should have exec permissions on all stored procedure.
If any new stored procedure created, that user...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 11, 2011 at 9:32 pm
Raghavender (7/8/2011)
We have a user for a database. Here we need that user should have exec permissions on all stored procedure.
If any new stored procedure created, that user should...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 11, 2011 at 5:05 pm
Viewing 15 posts - 5,551 through 5,565 (of 7,164 total)