Viewing 15 posts - 901 through 915 (of 1,228 total)
If you have ten files, you can create ten dataflows and have them run in parallel OR have ten different packages and call them in parallel with a master package....
September 19, 2014 at 6:07 pm
sqldriver (8/27/2014)
August 27, 2014 at 3:15 pm
Better yet, don't use commas for delimiters. Use TABs instead. The folks on the receiving end of the data will love you for it.
Agreed, if you have not...
August 25, 2014 at 10:31 am
Following up on the BCP suggestion this is actually a good idea >
Open a command line window and type something like
bcp "adventureWorks2008R2.Person.address" out "c:\myBcpOut.txt" -c -T
If...
August 22, 2014 at 6:06 pm
For example, for a particular employee there might be 141 records in this "huge dumping table" but when I perform the SCD, only 14 records make it to the DW...
August 21, 2014 at 5:30 pm
Brandie Tarvin (8/21/2014)
MMartin1 (8/20/2014)
This applies to things like buying a car as well. Good luck.
Except when buying a car, I have no intention of offering the highest possible price first....
August 21, 2014 at 3:58 pm
These are not the best ways likely, but a couple of ideas I have are:
1) Use SSIS and a script component with a dataflow to add text qualifiers...
August 21, 2014 at 1:02 pm
Brandie Tarvin (8/18/2014)
M Joomun (8/18/2014)
Thanks for your replies.
As to the table schema, tblPerson - tblManagementOfBleeding is a 1 ~ 1. I've attached screenshots which give more detail. Do you...
August 21, 2014 at 12:06 pm
There is a small piece in one of my books about this. I'll do some reading and get back to you tomorrow likely. The SCD transform is process intensive because...
August 20, 2014 at 3:04 pm
Salary.com has some good information that will give you an indication of where the salaries are in your area. So it is a start.
You can mention what you think...
August 20, 2014 at 1:45 pm
Hi Romina,
Are you still using the looping? I don't think that will help. Just use a SCD transform and select it as a 'Historical Attribute' for the change type property...
August 20, 2014 at 12:40 pm
One of the things a ETL developer will invariably encounter is data that is not trustworthy. And though we can argue that it should be (It should be!), it still...
August 19, 2014 at 6:48 pm
Something like this ?
WITH myCTE
AS (
SELECT row_number() over (partition by EmployeeID, Firstname,Salary
ORDER BY EmployeeID, FirstName, Salart ) as Colm1,*
from Employee_salary
)
DELETE From myCTE where Colm1> 1
August 19, 2014 at 6:24 pm
If you are concerned about how it will run in a job, you can deploy it to a test machine with the job service running under the same credentials ...security...
August 19, 2014 at 6:08 pm
Hi,
Since I don't have sample data to work with I took the AdventurWorks database as my foundation. I am not totally clear how your data looks like but below is...
August 19, 2014 at 5:57 pm
Viewing 15 posts - 901 through 915 (of 1,228 total)