Viewing 15 posts - 8,581 through 8,595 (of 13,882 total)
I just noticed another thing ...
If you do a LEFT JOIN from table A to table B, you are telling SQL to return all rows which match, plus all rows...
March 23, 2015 at 2:07 am
Perhaps. If you frequently need to filter based on year.
Alternatively, if there is already a suitable index on the datetime column, change your filter from
Year(col) = 2013
to
col >= '20130101'...
March 23, 2015 at 1:50 am
I see no way (or reason) to introduce windowing functions here.
I suspect that you would see a large performance improvement if you were to add a QuotaDateYear column to your...
March 23, 2015 at 1:30 am
aarionsql (3/18/2015)
Thank you for the suggestion. That does not work as the package fails when it tries to INSERT the record
I've read your posts and I don't understand 100% what...
March 19, 2015 at 6:42 am
Here you go
where (
dbo.ocsTimeHeader.tshStatus = 'ACTIVE'
or dbo.ocsTimeHeader.tshStatus = 'IDLE'
...
March 19, 2015 at 6:38 am
Steve Jones - SSC Editor (3/18/2015)
cast( datepart(mm, mydatecolumn) as char(2)) + '/' + cast( datepart(dd, mydatecolumn)...
March 18, 2015 at 10:30 am
aarionsql (3/18/2015)
I am building a SCD 2 package and there is date field for current records and expired records where I have traditionally used a GETDATE() funtion to populate...
March 18, 2015 at 10:22 am
aarionsql (3/18/2015)
If any one has any ideas on converting GETDATE() to a DATETIMEOFFSET(0) within the Data Flow.
I am getting truncation / conversion errors when I am trying to convert...
March 18, 2015 at 9:55 am
goaziz 51438 (3/17/2015)
March 17, 2015 at 9:40 am
raj.prabhu001 (3/17/2015)
ok so i have process where we need to download daily 1000 pdf file from website
and store them for refrence we currently do it manually.
but i think creating package...
March 17, 2015 at 7:33 am
dwain.c (3/16/2015)
Use CONSTRAINTs to prevent overlaps and gaps in the first place:Self-maintaining, Contiguous Effective Dates in Temporal Tables[/url]
..maybe gaps are ok. Otherwise, it's unclear why you would ever need to...
March 17, 2015 at 6:20 am
--Removed
March 17, 2015 at 4:55 am
Perhaps there is an alternative.
There is a system variable in SSIS called the ExecutionInstanceGUID.
This is a GUID generated every time a package runs – it uniquely identifies a single run...
March 16, 2015 at 11:26 am
raj.prabhu001 (3/16/2015)
2. i want to run a package that will go through individual links one...
March 16, 2015 at 9:13 am
Viewing 15 posts - 8,581 through 8,595 (of 13,882 total)