Viewing 15 posts - 61 through 75 (of 212 total)
In in doubt, use T-SQL to join the facts to the dimension table.
I tend to create the facts in a working table (a persistent table in a database...
April 13, 2016 at 2:53 am
I agree with Phil about having the same DB structure in all environments but I have worked at a company where the DB names has a suffix for the environment...
April 11, 2016 at 7:50 am
Yes you can do this in SSIS.
Within your package you will need a connection for each CSV file and one for your Excel workbook.
In a data flow, you will need...
April 5, 2016 at 6:50 am
#temp tables only exist for the duration of the connection that created them.
Also, I guess that you want to store the results on a different server from where the xp_cmdshell...
April 4, 2016 at 10:05 am
As Jeff said, SSIS might not be the best tool for this but you can achieve this using SSIS and without a script task.
1. Create a new SSIS Package
2....
April 4, 2016 at 9:51 am
Hi Simon,
I worked on a DW project that used exactly this strategy of loading the incremental rows into a partition and then switching it into the main table. We...
February 11, 2016 at 7:42 am
Thanks. Works a treat.
Jeremy
April 21, 2015 at 3:43 am
Thanks Luis.
The source for the calculations would be a user front end so that they can define new 'scenarios'. For example they could define a new scenario that is...
January 24, 2014 at 2:14 am
declare @T table (
Scenario char(1)
,Metric char(1)
,Value int)
insert @T
values ('1','A',100)
,('1','B',80)
,('2','C',100)
,('2','D',80)
,('3','C',100)
,('3','E',70)
,('3','F',40)
,('4','C',100)
,('4','G',70)
,('4','H',40)
select* from@t
The expected results are:
1. 20 (being A-B)
2. 100 (as C is larger than D)
3. 110 (as the...
January 23, 2014 at 10:15 am
Kimball seems to mentions two different approaches. One involves creating a fact dimension to describe the single fact (e.g. balance, credit interest, debit interest etc) on the fact table...
April 17, 2011 at 1:22 pm
Thanks.
That was the decision I was coming to but great to have someone think the same way.
Jez
April 14, 2011 at 1:38 pm
I've got that and the file name is fine.
Digging a bit deeper, I have found some warnings elsewhere in the package and I suspect that the package is hitting the...
July 20, 2009 at 2:01 pm
Hi Jeff,
A file will always have the same number of columns. The import file (a text file) will be delimited by characters and there will always be the...
July 20, 2009 at 2:18 am
That's how it is in the import file. I am importing each line into a single nvarchar(max) column and running some t-sql code to split it into different columns.
July 16, 2009 at 7:15 am
Thanks. It had to be around somewhere & I just couldn't find it.
Jez
June 30, 2009 at 2:02 pm
Viewing 15 posts - 61 through 75 (of 212 total)