Viewing 15 posts - 526 through 540 (of 629 total)
There's the System::MachineName variable - I always tend to use this in environments where the environment is less "controlled" and the package may be moved at short notice.
Well - actually...
November 8, 2010 at 3:00 pm
Pac123 (11/8/2010)
PaulB-TheOneAndOnly (11/5/2010)
Pac123 (11/5/2010)
Thats right..Table B is at a more granular level than table #A. [one record for every week in the date range between start and enddates].
Here is the...
November 8, 2010 at 2:48 pm
Jeff Moden (11/2/2010)
andrew gothard (10/30/2010)
As a side bar, I never load data directly into the "final" table from an outside source (like a file). It's too risky for a...
November 4, 2010 at 2:15 pm
As a side bar, I never load data directly into the "final" table from an outside source (like a file). It's too risky for a multitude of reasons. ...
October 30, 2010 at 3:32 pm
Build the command in a string and use EXECSql to run it
DECLARE @sql VARCHAR(1000)
SET @sql = 'CREATE TABLE ' + '[' + @otherdb' + '].[dbo].[my_new_table]'
Exec ( @sql)
October 30, 2010 at 3:20 pm
Have you tried starting Task manager on the server and seeing if there's a process eating memory?
October 30, 2010 at 3:07 pm
rocky_498 (10/29/2010)
October 30, 2010 at 2:41 pm
Class sig BTW - mind if I use it in interviews? 🙂
Be my guest. Not entirely sure how you intend that to be of use in an interview, but...
October 29, 2010 at 2:36 pm
Craig Farrell (10/29/2010)
andrew gothard (10/29/2010)
October 29, 2010 at 2:33 pm
Not sure what you're getting at mate - do you mean that you want the process to add a datestamp as the records are entered, if so from when te...
October 29, 2010 at 2:15 pm
Ah - in that case - what I've done in the past is to have the script object parse the filename - set a value in a variable and then...
October 29, 2010 at 2:08 pm
Personally I'd *probably* use a staging table for that, rather than do it in SSIS, particularly if you can set up an SP in the source which is appropriately indexed...
October 29, 2010 at 2:03 pm
Ok - have two forEach Loops one looking for .csv and one looking for .txt files (it's part of the ForEach loop config). That's it, process accordingly using the...
October 29, 2010 at 1:54 pm
Do you have a Location Dimension which is linked into your fact table?
If so, then I'd add the offset values in hours from your 'base' location / time zone in...
October 29, 2010 at 7:54 am
Make sure you do an update statistics once you've got the data over too
October 6, 2009 at 12:51 pm
Viewing 15 posts - 526 through 540 (of 629 total)