Viewing 15 posts - 346 through 360 (of 606 total)
Rather than messing about with two packages, I find it easier to execute dynamic dts packages by using vba.
Copy this code into a vba module on a word document or...
January 25, 2005 at 5:51 am
Still not entirely sure what you are trying to do.
Are you using a data driven query task for the package as a whole or do you have various source and destination...
January 20, 2005 at 7:18 am
Sounds like you've got it. It's exactly what I meant - You see more than entry when looking at the OnSuccess flow.
Incidentally, if you want to check to make sure...
January 19, 2005 at 10:03 am
Don't know if you are aware, but you can add more than one destination step precendence on a singe source step.
Click on one of the 'on completion' lines and open...
January 19, 2005 at 9:14 am
Why not just add a line in that inserts into the desired table after each insert:
select max(Identity_Column) from yourtable. Will give you the last id entered.
Or is there more to your...
January 19, 2005 at 9:10 am
I got this a few months back. Will do the trick for you.
http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm
January 19, 2005 at 9:08 am
Thanks Peter. The user account that is logged on to perform the load is not a global one, so I will be able to put a trace on it.
I will...
January 19, 2005 at 3:06 am
Thank you both for your replies. Somehow I knew it would involve a lot of work, but if it is to be right, then I appreciate it's the only way.
Looks like...
January 18, 2005 at 7:19 am
I can only quote from my experience with dynamic properties tasks, but the idea behind it is the same for everyone.
The task is there to set values at runtime rather than...
January 17, 2005 at 3:30 am
At a guess I think it has something to do with the identity column.
Check what the 'set identity_insert' is
January 14, 2005 at 10:00 am
As per Steve's answer.
Easiest way:
select count(distinct(name)), date
from testing
group by date
January 13, 2005 at 10:48 am
You have a couple fo ways to do this.
You can retrieve the value of OIW_DOLLAR into a global variable and then use if, then, else, end if on the value...
January 13, 2005 at 5:57 am
Not as easy as it looks. If you only have 3 rows to export across, the easiest way is to do a select to return one row, then use the...
December 31, 2004 at 3:54 am
Inexed views are not straightforward. Read this article on how to. Helped me out a couple of weeks back.
Beware the pitfalls associated with them as I also found out.
December 20, 2004 at 8:18 am
I would create a temporary table that has two coulmns (correct_spelling, incorrect_spelling).
Then run an update on the address table linking together the incorrect spelling with the address.
I.E
update address_table
set address_table.address =...
December 20, 2004 at 8:14 am
Viewing 15 posts - 346 through 360 (of 606 total)