Viewing 15 posts - 421 through 435 (of 451 total)
Is it possible to order it this way?
1 1234 1237 some remarks
2 1237 1240 even more remarks
3 1240 1242 bladibladibla
2 1237 1241 blablabla
1 1234 1238 extra remarks
1 1234 1239 more...
June 13, 2012 at 6:33 am
How would you manually tell if the Oracle db has been loaded for that day? Is there a status table or some such thing that gets updated? Is...
June 13, 2012 at 6:25 am
When you say fetch other data, I'm assuming it's not just part of the same field (or columns from that table/view), but rather you need to pull in data from...
June 13, 2012 at 6:23 am
Can't be B as the OP states that it has to update existing records. Unless your SQL destination is going to a temp table and then you do a...
June 8, 2012 at 6:44 am
hurrican3p (6/6/2012)
Is it common in a large ETL to have an error output from every component in the DF?
I always have an error output for each task in the dataflow;...
June 6, 2012 at 7:37 am
1) Use configurations to store your connection string.
2) Map connection string value to a variable.
3) Use the Expressions property in the connection manager to use that variable for the ConnectionString.
4)...
June 5, 2012 at 1:31 pm
Add a data viewer to the dataflow path that goes into your conversion transformation. You'll probably be able to see the bad data that's not converting to an integer.
HTH,
Rob
June 5, 2012 at 9:55 am
Without your DDL, it's a little hard to get specific. But you probably want to look at the T-SQL DATEDIFF() function.
http://msdn.microsoft.com/en-us/library/ms189794(v=sql.105).aspx
Something like:
SELECT ColA,
ColB,
DATEDIFF(ww,...
June 4, 2012 at 7:38 am
Looks like "D" to me.
The downside of the OLEDB Command is that you'll be processing records a row at a time which can be a bottleneck. "C" makes no...
June 4, 2012 at 6:11 am
Right now, "created_on" and "start_on" are actual date columns from the source system. I have not created a date dimension yet and I might need help finding an efficient...
May 31, 2012 at 9:29 am
I've exported MySQL data nightly to SQL Server table with no problems using SSIS and ODBC source.
Is it repeatably not loading all MySQL source rows? Is there a unique...
May 25, 2012 at 9:19 am
Not knowing your help desk system, it looks okay to me. A couple of comments:
Your FKs to dimensions have...
May 25, 2012 at 6:10 am
Take a look at some of these blog posts for some ideas:
http://www.thejoyofcode.com/SSIS_Custom_Logging_Task_for_Event_Handlers.aspx
HTH,
Rob
May 24, 2012 at 12:24 pm
Are you switching/upgrading from an earlier version of MS Access? I have a vague memory that Access tightened down some security constraints (that could be undone in Settings) to...
May 24, 2012 at 6:13 am
Can you set a breakpoint in your OnLoad event and step through to see what line is causing problems?
May 23, 2012 at 6:19 am
Viewing 15 posts - 421 through 435 (of 451 total)