Viewing 15 posts - 406 through 420 (of 542 total)
GSquared (7/25/2011)
pwalter83 (7/25/2011)
GSquared (7/25/2011)
Don't do this.
Triggers will block transactions till they complete. Running an SSIS package for this is a really, really bad...
July 25, 2011 at 8:57 am
GSquared (7/25/2011)
pwalter83 (7/25/2011)
GSquared (7/25/2011)
Don't do this.
Triggers will block transactions till they complete. Running an SSIS package for this is a really, really bad...
July 25, 2011 at 8:40 am
GSquared (7/25/2011)
Don't do this.
Triggers will block transactions till they complete. Running an SSIS package for this is a really, really bad idea.
Queue the...
July 25, 2011 at 8:19 am
Lowell (7/25/2011)
1. use synonyms, and dynamically change the synonym defintion.
the problem with that is the synonym must point to an OBJECt, like a...
July 25, 2011 at 7:53 am
Suresh B. (7/25/2011)
You can setup Transactional Replication for this purpose.
Yeah, that could be another way...but before giving a one liner for an answer, you need to at least read the...
July 25, 2011 at 7:37 am
Mike Menser (7/21/2011)
July 22, 2011 at 3:25 am
Hi,
Thanks for your reply. I just needed one clarification- What does '+' signify in the syntax that you have mentioned ?
case when ARRIVAL_SCHEDULE_DT = DATEADD (month, 3, getdate()) and PORT_CD...
July 21, 2011 at 9:00 am
GSquared (7/18/2011)
SET @tempItemList = REPLACE (@tempItemList, ' ', '')
However, rather than fixing that, I recommend replacing the whole function. Here's an article...
July 18, 2011 at 8:37 am
GSquared (7/14/2011)
Can you post the code for the UDF (dbo.Split)?
Thanks for your reply, please find the code below:
---------------------------------------------
CREATE FUNCTION [dbo].[Split](@ItemList [nvarchar](4000), @delimiter [char](1))
RETURNS @IDTable TABLE (
[Item] [varchar](50) NULL
) WITH EXECUTE...
July 18, 2011 at 2:17 am
Ninja's_RGR'us (7/12/2011)
CREATE TABLE #test( id INT NULL)
CREATE CLUSTERED INDEX #CIX ON #test (id)
INSERT INTO #test (id) VALUES (null)
INSERT INTO #test (id) VALUES (1)
INSERT INTO #test (id) VALUES (2)
INSERT INTO #test...
July 13, 2011 at 5:24 am
Ninja's_RGR'us (7/11/2011)
Do you have access to the reportserver database and are you logging the...
July 12, 2011 at 8:34 am
Ninja's_RGR'us (7/8/2011)
pwalter83 (7/8/2011)
Ninja's_RGR'us (7/7/2011)
The 7 nc index would only slow down the import of the data (assuming it's...
July 11, 2011 at 2:37 am
Ninja's_RGR'us (7/7/2011)
The 7 nc index would only slow down the import of the data (assuming it's a massive...
July 8, 2011 at 1:58 am
Ninja's_RGR'us (7/7/2011)
pwalter83 (7/7/2011)
Ninja's_RGR'us (7/7/2011)
With 17 optional parameters, the...
July 7, 2011 at 9:57 am
Ninja's_RGR'us (7/7/2011)
With 17 optional parameters, the only valid...
July 7, 2011 at 9:35 am
Viewing 15 posts - 406 through 420 (of 542 total)