Viewing 15 posts - 3,781 through 3,795 (of 7,168 total)
The code can be optimized if rewritten as:
AND p.TrackingNumber > ''
Since NULL will not be greater than anything the call to ISNULL is wasteful.
edit: put code inside quote block to...
June 19, 2012 at 4:41 am
If you meant SSIS package, and not actually DTS (SQL 2000, 7.0):
kausmail (6/8/2012)
June 19, 2012 at 4:28 am
I think so. If I have it, you can change my query to this to see the inner-section (maxDtStart and minDtEnd) where all processes overlap:
DECLARE @dt DATETIME = '2012-06-11 11:32:00.000';
WITH...
June 18, 2012 at 3:59 pm
One point of clarification on the requirement please, when you say "a common point in time" what determines that point? Will this be for a real-time dashboard in which case...
June 17, 2012 at 3:12 pm
Hmmm, is your test environment representative of the prod environment in terms of CPU, memory and IO subsystem? I would also look hard at the CPU time (SET STATISTICS TIME...
June 17, 2012 at 2:04 pm
I would recommend looking into the Conditional Split Transformation to help you parse the file and route each file-line-type onto a different output stream.
Then, when loading your data-lines into...
June 17, 2012 at 1:48 pm
Here is a good place to start to get some idea of what Microsoft set forth as documented Best Practices when it comes to setting up a DW. It talks...
June 17, 2012 at 1:43 pm
For those not interested in opening the Excel file here it is:
Just a couple WAGs, you could try importing the entire sheet into one table and then using T-SQL to...
June 17, 2012 at 8:35 am
charlesd (6/17/2012)
I got the same error as before. But doesn't the execution of the...
June 17, 2012 at 8:12 am
george sibbald (6/17/2012)
I highlighted MS11-049 as it is an important security update and should be applied to all SQL servers.
No question, it is important. I just wondered why you singled...
June 17, 2012 at 8:07 am
akin.akinwumi (6/15/2012)
I think without changing the Oracle source query you need to modify the default output property that SSIS presents the columns from the data source.
That was my initial suggestion,...
June 16, 2012 at 8:44 pm
george sibbald (6/16/2012)
June 16, 2012 at 5:43 pm
Jeff Moden (6/16/2012)
June 16, 2012 at 3:05 pm
To add to the modifications Jeffrey mentioned you can also tune the SSIS package's buffer settings (DefaultBufferMaxRows and DefaultBufferMaxSize) to improve performance.
June 16, 2012 at 3:00 pm
jralston88 (6/15/2012)
June 16, 2012 at 1:48 pm
Viewing 15 posts - 3,781 through 3,795 (of 7,168 total)