SQL Server Agent is a Microsoft Windows service that executes scheduled administrative tasks, which are called jobs. SQL Server Agent uses SQL Server to store job information. Jobs contain one or more job steps. Each step contains its own task, for example, backing up a database. SQL Server Agent ...

learn more… | top users | synonyms

0
votes
0answers
3 views

Attach text file created by SQL Server Agent to email

Hello I am trying to figure out how to set up an SQL Server Agent Process that will pick up a file that was created by the step and send an email with the attachment. The first step is below. Would ...
0
votes
0answers
12 views

Execute a T-SQL job with a different connection string [migrated]

is it possible to execute a stored procedure from a SQL agent job while specifying a custom Application Name, similar to specifying the Application Name in a connection string? The reason I want to ...
0
votes
0answers
99 views

SQL Server Agent Job pass parameter between steps?

I am creating some jobs to backup my databases and then compress them. I want to backup the database in one step and zip the file in the next step, so I want to pass the name for the file from the ...
0
votes
1answer
118 views

SQL XML Parsing Stored Procedure running manually, not running via SQL Server Agent

The stored Procedure is running manually but will not run using SQL Server agent. I get the following error Executed as user: XXX. XML parsing: line 9, character 9, unexpected end of input ...
-2
votes
1answer
112 views

Can't start sql server Agent [closed]

I want to start the SQL Server Agent (sql server 2008 R2 Enterprise edition), then I did: Open SQL Server configuration manager. SQL Server services. Right click on sql server agent. but when I ...
2
votes
1answer
172 views

TRY/CATCH does not work on SQL Server Agent error?

I use sp_start_job to start a job. The job (test2) has only one step: select getdate() waitfor delay '00:00:10' The TRY/CATCH code: begin try EXEC msdb.dbo.sp_start_job @job_name = 'test2' ...
0
votes
2answers
453 views

The Messenger service has not been started - NetSend notifications will not be sent

In my SQL Server agent, I did not set any notifications, then why this error is coming? I run pakg through dtsexec it executes successfully, and also I run a simple job for inserting record it runs ...
0
votes
0answers
87 views

SQL Server 2012 automated restore with SQL Server Agent

I'm using these two scripts to back up from a database and restore the .bak file in a different one. BACKUP DATABASE [CCC] TO DISK = N'C:\Backup DB\CCC.bak' WITH NOFORMAT, INIT, NAME = N'CCC-Full ...
0
votes
2answers
110 views

Powershell to return the value only for Cluster Resource

I am trying to evaluate a value from a powershell command for a SQL Agent setting on a clustered server using powershell. I am very new to Powershell but we want to set up a monitor to make sure that ...
0
votes
2answers
165 views

Is there any way to update Sql Server Agent jobs schedule time by programmatically

presently we have many jobs are sheduling different time is there any way we can run all the jobs to schedule at same by programatically.
0
votes
0answers
60 views

how to append data to a Database table from a new excel everytime dropped in a folder, using Scheduler

I was to import excel data into a table in SQL Server,regularly on a scheduled time. I was able to import data from a "particular excel" into DB using Import-Export Wizard (SSIS package), executing ...
1
vote
1answer
108 views

“Invalid command line parameters” error when running package from job

I'm having an issue scheduling a .dtsx package to execute as a SQL Server Agent job. I've Googled the problem, but can't find the required solution for my particular issue. The SQL Server version is ...
0
votes
0answers
84 views

SQL Server Agent Job - backup certain tables

I am trying to create a SQL Server Agent Job which performs the following functionality. Creates a '.bak' file containing a backup of a set tables from within a database. Zips this backup with a ...
0
votes
1answer
422 views

SQL Server Agent Job Completes but Stored Procedure Doesn't Run

I have a stored procedure to simply run a series of UPDATE statements on a CRM2011 SQL Server. The goal is to have it run every 30 minutes via a SQL Server Agent job. The stored procedure does not ...
6
votes
3answers
141 views

transactional replication using script

I am able to configure transactional replication using SSMS and it works properly. But i want to configure it using script so that i use it from my c#/vb application. Is there any way to do that?
0
votes
0answers
175 views

Email notification subject changed after sql server agent job migration

I have a job on my server with email notification on success and failure. The mail notification has the subject as [The job succeeded.] SQL Server Job System: 'XYZ' completed on \123. or ...
1
vote
1answer
383 views

Notify operator task vs. notify if job fails

In a maintenance plan, I can create a Notify Operator task to run on the success or failure of any task in my maintenance plan. There is also the option to notify if an SQL Server Agent job fails, so ...
1
vote
2answers
209 views

Where does SQL Server Agent save jobs?

My server is down and I can only get the harddisk from it. I found my database and copied it but where I can find agent jobs? Where are they saved?
3
votes
1answer
554 views

How to catch the exit code of a CMDEXEC SQL Server Job?

The following SQL Server job always exits with return code 0 indicating success, when in fact it does not do its job, i.e. it does not delete "test.txt". How can I catch the actual exit code ...
0
votes
3answers
228 views

scheduled execution of all TSQL scripts in a folder

I have a bunch of TSQL scripts that need to be executed on a daily basis. I know I can use Job Agent to execute them but that requires me to change the actual job. What I would like to do is create a ...
1
vote
1answer
72 views

Scheduling table dbo.sysschedules to individual records

I'm looking for a query to convert records in the dbo.sysschedules table into individual records for each occasion the schedule is expected to run. For example, a schedule is set to run once every ...
3
votes
2answers
1k views

Good way to call multiple SQL Server Agent jobs sequentially from one main job?

I've got several SQL Server Agent jobs that should run sequentially. To keep a nice overview of the jobs that should execute I have created a main job that calls the other jobs with a call to EXEC ...
0
votes
4answers
376 views

SQL Server : scheduling programmatically

I'm trying to force SQL Server to call a needed stored procedure each hour. I've read the following articles: http://msdn.microsoft.com/en-us/library/ms190268.aspx ...
1
vote
1answer
2k views

SSIS Package not executed by SQL Server Agent using password or xml config or table config

I have an SSIS package that takes data from a MySQL database and puts it in to a SQL Server table. The connection to MySQL is ADO.net. The package runs fine in BIDS. I would like to deploy the ...
1
vote
2answers
2k views

unable to kill SQL server job, status stays killed/rollback

I am unable to kill some SQL Server agent jobs. The task state continues to be running and the command stays in KILLED/ROLLBACK. The job executes queries against OSI's PI system via OLEDB linked ...
1
vote
1answer
173 views

Can I install SQL Server Agent, but no database instance?

Can one install Microsoft's SQL Server Agent, without a database instance? (The aim is to reduce traffic to the database. I would like to put the server agent to an other server.) Thanks for the ...
0
votes
2answers
235 views

SQL Server Agent Job Set Up

I'm a newbie to SQL and .Net and this question might be stupid too to ask but I still need help. I've a Database located on Server1. Now I got another Server, lets call it Server2 to work on my ...
4
votes
1answer
296 views

SQL Server Jobs / Schedules - US vs. UK Daylight Savings Adjustment

SQL Server Jobs / Schedules - US vs. UK Daylight Savings Adjustment We have a UK based server which needs to run a SQL Agent Job at 16:30 (US Central time – this may seem strange but it because of ...
1
vote
1answer
523 views

Run a 32 bit Powershell script on Sql Server Agent

I have a powershell script that runs a 32 bit com object so when I run it in Powershell 64x it fails but runs fine in 86x When I run it in a Sql Server Agent job it has the same 64x failure. Is ...
0
votes
2answers
112 views

Accessing another SQL Server from SQL Job Agent

I have a SQL Server Agent Job on "server X." This job is simple, and uses the following query to refresh a table (on server X) by clearing it, then re-populating it with data from a view (also on ...
2
votes
1answer
724 views

Enable/Disable Sql Server Agent using a t-sql script

Is it possible to enable or disable the sql server agent using t-sql?
0
votes
0answers
265 views

How do I run a SQL Agent job with different parameters using SMO and without having to alter the JobStep definition?

I have some SSIS packages that are stored in the SQL Server and exposed via a SQL Agent Job I have written a component that allows me to dynamically build up the correct command line for the job step ...
0
votes
1answer
301 views

SQL Server Agent Jobs Crashing

Running a Windows 2003 with SQL Server 2005 on, with around ~85-90 jobs which run once per hour (at different times), generating new sitemaps for each website hosted on the server, along with ...
0
votes
1answer
212 views

SQL Server Agent Jobs Priorities

I am busy configuring my first SQL Backup policy and have run into a snag. I want to use SQL Server Agent to run automated backup jobs, one for full weekly backups, one for daily differential backups ...
0
votes
1answer
949 views

SQL Server agent not getting started

I am trying to start my sql server agent but it is not getting started . Showing the following Error- Object reference not set to an instance of an object. I had made a scheduling a job.I tried to ...
1
vote
2answers
544 views

Can i use Database project (.dbproj) to manage SQL server Server Jobs? How?

I am working with a database project. I would like to manage my database scheduler job in my project. It seem like that I could not create any server object in the database project. I am not sure ...
0
votes
1answer
268 views

What's the disadvantage of using Microsoft SQL Server Jobs for Backup? [closed]

I happen to find a lot of Automated SQL Backup Solutions on the net. two in particular are - SQL Backup and FTP (http://sqlbackupandftp.com/) - SQL Maintenance Solutions (http://ola.hallengren.com/) ...
0
votes
2answers
1k views

Analysis Services Processing Task Fails When Run By SQL Server Agent

I have an SSIS package which contains an Analysis Services Processing Task. This package is kicked off by a SQL Server Job in SQL Server 2008 R2. If I run this job myself or process the cube manually ...
1
vote
1answer
85 views

Accessing a share from a sql server job

I'm trying to run a SQL job (sql server 2008) every day that needs to read a file stored on another server. I have set up a share and I can access it using my user through windows explorer. Then I ...
1
vote
1answer
2k views

SSIS Error Code DTS_E_OLEDB_NOPROVIDER_ERROR. The requested OLE DB provider OraOLEDB.Oracle.1 is not registered

I have two servers: Server A - This is where my SSIS packages live in a file directory Server B - This is where my SQL Server 2008 database and SQL Server Agent Job lives. On Server B, I have ...
4
votes
1answer
4k views

Executing the same SSIS Package with different parameters at different time

I have a SSIS package running at 8 PM in the evening for the Year 2011. I would like to run the same package at 8:30 PM for the Year 2010. I made a SSIS Package configuration file and accept the ...
2
votes
1answer
2k views

“The specified '@notify_email_operator_name' is invalid” error

I have a scripted SQL Server Agent job I'm trying to transfer over to my local database from a server, but I receive this error message: Msg 14234, Level 16, State 1, Procedure sp_verify_job, Line ...
1
vote
1answer
599 views

What happens to Jobs scheduled when SQL Server Agent is stopped?

On our SQL Server theres a SQL Job which is ran every hour. On one particular hour it doesn't seem like the SQL Job was ran, and that was due to the SQL Server Agent being stopped during a backup. If ...
3
votes
1answer
454 views

Sql Server Agent job running longer than interval between executions

I would like to know what happens if an agent job (with recurring interval) in MS SQL server runs long enough so that it overlaps recurring execution. According to my tests, paralleled execution does ...
2
votes
2answers
5k views

SQL Server Agent Job Notify multiple operators on failure

I have a Job setup in SQL Server 2008 which sends a notification email to one operator when the job fails. Question: Is it possible to setup a notification email being sent to multiple operators ...
0
votes
2answers
2k views

Stored Procedure Return Value to Fail SQL Job

I have a stored procedure which is the first step in an SQL Job. The SP compares dates in 2 tables, if they equal then the SQL job can continue, but if they are not I need to return value from the SP ...
1
vote
1answer
217 views

deadlock on concurrent processes seperated by transaction isolation level

We have a workorder table. A server agent jobs grabs 100 entries from this table in a cursor and do some work. To parallelize this there are 10 server agent jobs, which call the following procedure ...
2
votes
1answer
163 views

Cannot Get DBMail to Work. Worked in the Past

SQL Server 2005 DBMail. I had all of this working, but then it just stopped. I tried starting over from scratch to no avail The surface area configuration tool has been used to make sure the procs ...
0
votes
1answer
881 views

SQL Server Agent Job is not running

I have a job that is supposed to run every 11 AM and 8 PM. About two weeks ago, it started to not respect the schedule. The "fix" that I found was to start the job manually and then the job would ...
0
votes
1answer
359 views

SQL Agent Notify on Step Error but Continue to Next Step

In my company's SQL Server (2005), there's a job that has about 20 steps. Each step is set to go to the next step on error. What's the best method for getting a notification sent out if a step has ...

1 2 3