Viewing 15 posts - 6,691 through 6,705 (of 7,168 total)
Lamprey13 (4/8/2011)
April 8, 2011 at 3:11 pm
steve smith-401573 (4/8/2011)
April 8, 2011 at 2:57 pm
I have not tried it within SSIS but the OUTPUT clause will generate a resultset for you with your ID that you may be able to pipe into a variable...
April 8, 2011 at 2:34 pm
I thought so too so I figured I would share it. The performance benefits are enough reason to add it to the toolkit. The fact that it reads a bit...
April 8, 2011 at 2:29 pm
Test the execution plans but my testing shows this form of the query perform a bit better than the DELETE...IN method:
-- Credit to Itzik for exposure to technique
WITH ...
April 8, 2011 at 2:17 pm
Some random thoughts...
1. MSIS = Microsoft Integration Services? Maybe a local Windows account or Domain account accessing the server via an AD group?
2. Re: the logging table you have setup...do...
April 8, 2011 at 1:33 pm
steve smith-401573 (4/8/2011)
April 8, 2011 at 1:19 pm
BCP would be an excellent solution IF I knew the output file format. Where will I find the definition(s) for truncation that SSMS provides? When I examine an...
April 8, 2011 at 12:42 pm
ISNUMERIC was not changed from 2000 to 2005 with respect to a single decimal point. This returns 1 on 2000 and 2005:
SELECT ISNUMERIC('.') ;
which happens in support of the...
April 8, 2011 at 12:32 pm
Keep going...your query is subject to a data-driven bug.
CREATE TABLE #temptable(tranName varchar(1),planname varchar(20), priority int)
INSERT INTO #temptable VALUES ('a','plan1',1)
INSERT INTO #temptable VALUES ('a','plan2',2)
INSERT INTO #temptable VALUES ('c','plan3',3)
INSERT INTO #temptable VALUES...
April 8, 2011 at 12:20 pm
It has to do with the optimizer and how much "smarter" it has gotten since 2000. In your situation however you are experiencing a regression as a result of improvements...
April 8, 2011 at 12:01 pm
Dominic Gagné (4/8/2011)
I need to extract data from a linked server by using a StoredProc with a parameter. I wanted to store the result in a temporary table...
April 8, 2011 at 10:27 am
Here is a good start explaining how NULLs are tracked by the storage engine at the page level in non-sparse columns: http://www.sqlskills.com/BLOGS/PAUL/post/Misconceptions-around-null-bitmap-size.aspx
And some info about Sparse Columns: http://www.sqlskills.com/BLOGS/PAUL/category/Sparse-Columns.aspx
April 8, 2011 at 9:44 am
I do not know what the proc is doing so I may be completely off the grid here...but I can't get over the assumption that you should even be in...
April 8, 2011 at 9:36 am
I agree with Dan. I categorize this kind of work into the sysadmin domain which is not a strength of SSIS.
What you've described is a need to sync a...
April 8, 2011 at 9:28 am
Viewing 15 posts - 6,691 through 6,705 (of 7,168 total)