Hi,
I have a DTS package which transfers data from an Oracle database to an Ms
SQL 2000 database.
It works like a charm.
However, once a week on a "non-standard" time the Oracle database is
updated, and I need to run the DTS package.
How can I make this event driven?
I can have a table created which will put an entry in the Oracle database
such as data week01 updated.
Can I then base the execution of DTS based on the existance of an entry in a
table on Oracle?
I then need my DTS package to run an SQL query which is the following:
select SALES_WEEK_ID "Sales Week",
LOC_ID "Location",
.......
from loc_item_week
where sales_week_id in('200140')
order by sales_week_id,
loc_id,
THis also works like a charm, but how can I make the sales_week_id based
upon a table in SQL, I can then build a table in SQL, if dat is 01012002
then sales_week_id="200201'
Or any better way to make the sales_week_id dynamical.
Is this possible in DTS?
Thanks in advance,
Eduard de Vries