Viewing 15 posts - 31 through 45 (of 2,267 total)
no it's not good pratice, and will run like a dog if there is a lot of data in there.
November 8, 2011 at 3:21 am
As far as I am aware the Visual Fox Pro Ole provider (VFPOLEDB) is not 64-bit compatible, you will need to run this package in 32-bit mode.
November 8, 2011 at 3:15 am
I see it all the time..
though common does not mean that it is good practice.
November 8, 2011 at 3:09 am
have a look at the procedure here, it will generate the insert script with data for you.
http://vyaskn.tripod.com/code.htm#inserts"> http://vyaskn.tripod.com/code.htm#inserts
November 8, 2011 at 3:02 am
I agree with Koen, a well designed ETL Packages wether it be in SSIS or any of the other tools should have logic in there that makes the...
November 8, 2011 at 2:54 am
the way I would do this, would be to create a distinct count on your measure, when you do this , SSAS creates a new...
November 7, 2011 at 7:54 am
best way to handle type 2 scd in my opinion, is to create a staging table that is identical to your load table and use the t-sql merge.
this will be...
November 5, 2011 at 6:05 am
i have seen code that would disagree with this.
November 3, 2011 at 9:13 am
so the id is meaningless?
if so you can use
DBCC CHECKIDENT ("Attributes ", RESEED, 10000);
to reseed you id column
November 2, 2011 at 6:22 am
you have a primary key and are trying to insert a duplicate.
search your source table for id =1129614 and it should have more than one row.
November 2, 2011 at 6:00 am
If you don't want to make a change to the sql source,
another way of doing this would be to add your data source twice, then use a derived column to...
November 2, 2011 at 3:51 am
Viewing 15 posts - 31 through 45 (of 2,267 total)