Viewing 15 posts - 11,971 through 11,985 (of 13,870 total)
Looks to me like your delete query is not sophisticated enough and will leave behind orphaned records - except your referential integrity rules are currently stopping that. Be careful.
July 26, 2010 at 3:03 am
niffer76 (7/23/2010)
July 23, 2010 at 9:21 am
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
Viewing 15 posts - 11,971 through 11,985 (of 13,870 total)