Viewing 15 posts - 11,941 through 11,955 (of 13,838 total)
You'll need three dataflow tasks.
That does not mean that you need three packages. You can chain from one DF to another, or run them in parallel, within the same package.
July 21, 2010 at 12:50 pm
deepthiponguleti (7/20/2010)
I cannot make any changes to the insert stmts send to me by the vendor. I cannot add any stmt before or after the insert stmts.
Are you saying that...
July 20, 2010 at 12:26 pm
That article refers to an import to SQL Server, not an export to Excel.
Can you try explaining what's going on?
July 20, 2010 at 12:20 pm
I don't see how - that expression looks only at the first letter of [Copy of Description] whereas your query does much more.
To me, yours looks equivalent to this:
(SUBSTRING([Copy of...
July 20, 2010 at 9:07 am
Try using the import / export wizard.
July 20, 2010 at 7:44 am
What was the query and what was the error?
Are you using DB2 syntax or T-SQL syntax?
July 20, 2010 at 7:43 am
stewartc-708166 (7/20/2010)
select col1, col2,.... from sourceTable
where modifiedDate > (select max(modifiedDate) maxMod from destinationTable)
That's a better way of identifying your source data - every record will result in an INSERT...
July 20, 2010 at 3:30 am
For each record in your source, check for existence (match on PK) in destination. In pseudo code:
If Exists ...
July 20, 2010 at 2:58 am
I agree - what are your findings? A single quote in one of the fields perhaps?
July 20, 2010 at 1:23 am
Yes, definitely. You will have to re-do your development in 2005. There is no 'Save As' function.
July 19, 2010 at 9:18 am
Probably a permissions issue relating to the credentials used when the job is executed.
July 19, 2010 at 6:37 am
da-zero (7/15/2010)
I have an easy solution for that problem:use Excel 2007 or later 😉
Same as my solution!
July 15, 2010 at 8:24 am
da-zero (7/15/2010)
Phil Parkin (7/15/2010)
You left out the square brackets around the field name ...
No, that is only necessary when the field name contains a space.
I think he forgot the initial...
July 15, 2010 at 6:51 am
OK, I understand what you mean.
I'd be tempted to use ranking functions to assign a row number (order by ID, or whatever you want) to each row in both tables,...
July 15, 2010 at 6:34 am
Viewing 15 posts - 11,941 through 11,955 (of 13,838 total)