|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, April 30, 2009 8:27 PM
Points: 7,
Visits: 16
|
|
Hi All,
I am having a Stored Procedure Or SQL Script to be attached to Job Scheduler. When this Stored procedure executes it generates some output text. I need to store this output to text file when ever this store Procedure (or) SQL Script executed by job Scheduler.
Please help me how to handle this?
Thanks, Anil
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Yesterday @ 11:34 AM
Points: 4,007,
Visits: 4,857
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, April 30, 2009 8:27 PM
Points: 7,
Visits: 16
|
|
Hi Charles,
Thanks for the reply. My Stored Procedure contains the cursor. The output of the stored procedure contains all the Logins and their passwords and default database assigned. This all information when i execute on Query Analyser it will display output on the screen.
I need to execute this stored procedure from Job scheduler and store the output some where in text file.
Can you suggest me How you mention path of the file during execution of stored procedure?
Please help me.
Thanks, Anil
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: 2 days ago @ 9:12 AM
Points: 6,370,
Visits: 8,235
|
|
Anil Kumar Kurra (4/29/2009) Hi All,
I am having a Stored Procedure Or SQL Script to be attached to Job Scheduler. When this Stored procedure executes it generates some output text. I need to store this output to text file when ever this store Procedure (or) SQL Script executed by job Scheduler.
Please help me how to handle this?
Thanks, Anil I take it that you mean you have a scheduled job to be run by SQL Server Agent, as opposed to a Scheduled Task to be run by the operating system.
Open up the job, then open up the step. Go to the advanced tab. Click in the "Output File" and enter the location and filename for the output. Save all changes. When the job is run, it will now pump the output to this file.
Wayne Microsoft Certified Master: SQL Server 2008 If you can't explain to another person how the code that you're copying from the internet works, then DON'T USE IT on a production system! After all, you will be the one supporting it! Links: For better assistance in answering your questions, How to ask a question, Performance Problems, Common date/time routines, CROSS-TABS and PIVOT tables Part 1 & Part 2, Using APPLY Part 1 & Part 2, Splitting Delimited Strings
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, April 30, 2009 8:27 PM
Points: 7,
Visits: 16
|
|
Hi,
I had tried that method. But in that output file it is storing the Job executed Successfully.
It is not storing the output of the script.
It is storing Job has executed successfully in that file everytime the job executes.
Please let me know on this.
Regards, Anil
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: 2 days ago @ 9:12 AM
Points: 6,370,
Visits: 8,235
|
|
Well, I don't know what to tell you. This is the method that I use, and the log files from the jobs do contain the output from the procedure. From both print statements, and select statements.
Wayne Microsoft Certified Master: SQL Server 2008 If you can't explain to another person how the code that you're copying from the internet works, then DON'T USE IT on a production system! After all, you will be the one supporting it! Links: For better assistance in answering your questions, How to ask a question, Performance Problems, Common date/time routines, CROSS-TABS and PIVOT tables Part 1 & Part 2, Using APPLY Part 1 & Part 2, Splitting Delimited Strings
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Yesterday @ 11:34 AM
Points: 4,007,
Visits: 4,857
|
|
Anil Kumar Kurra (4/29/2009) Hi Charles,
Thanks for the reply. My Stored Procedure contains the cursor. The output of the stored procedure contains all the Logins and their passwords and default database assigned. This all information when i execute on Query Analyser it will display output on the screen.
I need to execute this stored procedure from Job scheduler and store the output some where in text file.
Can you suggest me How you mention path of the file during execution of stored procedure?
Please help me.
Thanks, Anil
I'm talking about executing the stored procedure inside an SSIS package. The output file is designated in the flat file connection manager.
Greg
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Monday, August 13, 2012 11:57 AM
Points: 152,
Visits: 15
|
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Wednesday, November 30, 2011 4:32 PM
Points: 16,
Visits: 158
|
|
Wayne,
I create a stored procedure and I am executing that stored procedure via job step on the Job Agent creating a text file to an output file location on the advanced tab of the jobstep. However, when the job runs and creates the text file there is heading on top of the text file. (see below) do you know how to get rid of the heading so the first actual record.
Job Diet Orders' : Step 1, 'Run Stored Procedure OrderProcedure' : Began Executing 2010-08-11; 27 :11:28 ---------- ---------- ------------------------- --------------- - ---------- -------------------------------------------------------------------------------- -------- -------- ---------- ---------- -------------------- -------------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Thank you for your time.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, October 17, 2011 1:53 PM
Points: 1,
Visits: 6
|
|
|
|
|