dbTalk Databases Forums  

SSIS package

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss SSIS package in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
mscertified
 
Posts: n/a

Default SSIS package - 06-09-2008 , 01:43 PM






We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?

Reply With Quote
  #2  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM






On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #3  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #4  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #5  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #6  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #7  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #8  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
  #9  
Old   
matteus
 
Posts: n/a

Default Re: SSIS package - 06-10-2008 , 04:17 AM



On Jun 9, 8:43 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
Quote:
We have a web app that maintains data in a SQL server database. We need to
run a monthly job that processes this data (complex logic) and then outputs
the contents of several resulting tables to an FTP server. This FTP data is
then sucked into an Orable application and processed. We need a second
monthly job that reades the Oracle return codes (to see if the data was
processed corectly) and updates the SQL server tables with information about
what was processed.
Can an SSIS package handle these types of operations and what is the best
way to set this up?
Of course it does.
I haven't been working with SSIS for a long time, but with the
information you provided i'd create two packages: the first that
process and send to Oracle, the second that retrieves from Oracle and
update you're master DB.
In SSIS (this is new in respect of DTS) there's a specific task for
FTP commands (send, retrieve, create/delete dirs, etc) so you can
accomplish file sending with it.
If you have to connect directly to Oracle DB, i believe that you must
have installed Oracle client in the machine on which the package will
run in order to successfully connect.
There's a plenty of ways to accomplish data processing. The easisest
(for me) is oledb command, oledb source and so on.

Bye,
Matteo



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.