dbTalk Databases Forums  

SSIS or SQL Agent?

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


Discuss SSIS or SQL Agent? in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #11  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM






Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


Reply With Quote
  #12  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM






Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


Reply With Quote
  #13  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM



Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


Reply With Quote
  #14  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM



Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


Reply With Quote
  #15  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM



Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


Reply With Quote
  #16  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM



Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


Reply With Quote
  #17  
Old   
Todd C
 
Posts: n/a

Default Re: SSIS or SQL Agent? - 07-10-2008 , 07:45 AM



Ditto on M's suggestion.

Each of the tools mentioned is good for its intended purpose. Yes, you could
create a continually running SSIS package that dynamically polls the system
date and time and does something in response, but the question is, "Why would
you want to?" And yes, you could create complex job steps inside of SQL Agent
that do all the complex tasks, etc. but again, why?

SSIS is good for your "complex logic".
SQL Agent is good for scheduling and controlling the job.
--
Todd C

"matteus" wrote:

Quote:
On Jul 9, 10:36 pm, mscertified <rup... (AT) tigerlily (DOT) com> wrote:
We need to set up a monthly 'job' that reads and writes from our SQL Server
2005 database and creates FTP files. The logic is quite complex, its goes way
beyond a simple transfer of data. Would it be better to use SSIS or SQL
Server Agent to do this? What are the pros and cons? Thanks.

The logic is quite complex
That is the point. SSIS is much more powerful than sqlserver agent:
with ssis you can create a package: move, transform, edit and ftp your
data. With sqlserver agent you can also create simple step that runs
scripts or stproc, but imho is mainly for filesystem tasks or for
scheduling an operation (such a package).
I would definetly create a ssis package and then schedule it with
agent.

M.


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.