Tagged Questions
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 can run a job on a schedule, in response to a specific event, or on demand.
10
votes
3answers
2k views
Will a SQL Server Job skip a scheduled run if it is already running?
The title pretty much says it all - if you schedule a SQL Server job to run every X number of minutes, and it does not finish the previous call before the # of minutes is up, will it skip the run ...
6
votes
1answer
285 views
How to Prevent Sql Server Jobs to Run simultaneously
I have some jobs for example :
job1, executing every 2 minutes
job2, executing every 10 minutes
job3, executing every 15 minutes
now there is a problem. jobs may occur simultaneously and cpu usage go ...
6
votes
2answers
1k views
Can you run an SSIS task from .net?
I have scheduled sql agent task which runs an SSIS package. I want to be able to run the SSIS package from .net. Is there a way to either run the SSIS package directly or at least run the SQL agent ...
4
votes
1answer
1k views
How to accurately detect if a SQL Server job is running and deal with the job already running?
I'm currently using code like this to detect if a SQL server job is running. (this is SQL Server 2005, all SP's)
return (select isnull(
(select top 1 CASE
WHEN current_execution_status = 4 ...
3
votes
5answers
596 views
The proper way to disable/enable SQLServer Agent Jobs
I have a number of SQLServer agent scheduled jobs, one of them performs a full database backup. I want to disable some other jobs when backup begins and re-enable them once backup is done. What is the ...
3
votes
4answers
2k views
How to monitor SQL Server Agent Job info in C#
I need to create an application for monitoring SQL Server 2000 Agent Job status and info when Job occur same as show on Windows application event log. Now I connect to the database already via a ...
3
votes
2answers
2k views
SQL Server Agent Job Timeout
I have just had a scheduled SQL Server job run for longer than normal, and I could really have done with having set a timeout to stop it after a certain length of time.
I might be being a bit blind ...
3
votes
1answer
2k views
SQL Server: should I use an “Agent Job” or a “Maintenance Plan” to delete old data?
I'm looking for a way to periodically (e.g. weekly) run some SQL statements in a database to delete old data. As far as I can see, there are (at least) two ways to do this:
using a "Maintenance ...
3
votes
1answer
5k views
How to backup SQL Server Agent jobs?
How can I backup and restore SQL Server 2005 Agent job schedules?
3
votes
3answers
6k views
SSIS package not running when called as step in SQL Job
I have a .dtsx file (an SSIS package) that downloads files from an FTP server and imports data. It runs fine whenever I run it manually. However, when I schedule calling the package as a step in a SQL ...
3
votes
2answers
2k views
sp_start_job wait for job to finish
Is there a way to determine when a sql agent job as finished once it has been started with sp_start_job?
2
votes
1answer
51 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 ...
2
votes
1answer
92 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
1answer
63 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
0answers
34 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 ...
2
votes
1answer
563 views
SQL Server (SQLEXPRESS) and SQL Server Agent (SQLEXPRESS)
I came across these two services separately running in Services.msc -
SQL Server (SQLEXPRESS) - started+Automatic
SQL Server Agent (SQLEXPRESS) - Disabled
Can you please guide why do we need ...
2
votes
4answers
1k views
Notify Operator if ANY step in job fails
Can I (How do I) configure Sql Server 2008 to notify an operator if any step in the Job fails?
I have a Sql Server job with several steps to update data from multiple different sources, followed by ...
2
votes
3answers
2k views
Get date of last successful job run?
I have a single step job that executes a stored procedure. I would like get the date of the last successful job execution time so that I can just update a delta instead of the whole set of data.
...
2
votes
1answer
3k views
Could not obtain information about Windows NT group user
I am creating a SQL Server Replication using a script. When I try to execute
The job failed. Unable to determine if the owner (STAR\moorer7) of job L3BPT2M-Atlas-14 has server access (reason: Could ...
2
votes
2answers
3k views
SQL Server add job agent T-SQL script issue
I am using SQL Server 2008 Enterprise. I have created a very simple test SQL Server Agent job which just print out a string. And then I add a schedule to let the job run once a day.
Then I select ...
2
votes
3answers
2k views
Looking for T-SQL scripts to delete a SQL Job
If I know the database server name, instance name and the SQL Server job name, how to delete a SQL Server job by its name in a simple way? I am writing scripts which will be called by sqlcmd to delete ...
2
votes
1answer
1k views
how to handle SQL Agent job error?
I am writing a SQL Agent Job to remove rows from Table 1 and Table 2 once a day. The step of the SQL Agent job is -- delete some specific records from Table1, then delete some specific records from ...
2
votes
2answers
4k views
Problem using SQL Agent to run SSIS Packages - fails with “DTSER_FAILURE(1)”
I have an SSIS Package stored in the MSDB database which works fine when I execute it. It will run under SA account or will use Windows security.
I want to schedule this job to run with SQL Agent, ...
2
votes
3answers
2k views
Where do I store sensitive encrypted password in an SQL Server agent job?
I prefer to keep our SSIS packages in a solution on the server, not in sql. By default, sensitive data is encrypted with a user key. Since the sql server agent uses a service account to run jobs, we ...
1
vote
1answer
28 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
105 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 ...
1
vote
1answer
40 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 ...
1
vote
1answer
300 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 ...
1
vote
1answer
274 views
SQL Server Agent Jobs: How to execute a job step without executing the entire job
I have a SQL Server Agent Job that previously had two steps. Today, I've had to integrate a third step and I'll soon need to integrate a fourth.
I want to be sure that the step will execute properly ...
1
vote
1answer
154 views
SQL 2000 script to kill Agent job if it overuns
On a legacy SQL 2000 box that is awaiting upgrade
Does anyone have a script to kill / abort a job in SQL Agent 2000 if it over runs a set duration or overlaps with another agent job.
This is causing ...
1
vote
1answer
88 views
SQL Server Agent - to update SQL table from Oracle
this is a newbie questions...
is it possible to write a job that will update my sql (SQL Server 2008) table nightly - from an oracle db? i can't seem to find any tutorials online. please help.
i have ...
1
vote
1answer
414 views
SQL 2008 SQL Server Agents Jobs, how to populate email for Notifications
I am trying to add my email address to notifications for SQL Server Agent Job when it fails..
So I go SQL Server agent, open up the jobs, right click on the job and select properties and then ...
1
vote
2answers
740 views
Cause of Intermittent SSIS Job failure with exit code -1073741819?
I am relatively new to SSIS. In the environment I am working in, I have access to a Dev database only. I create and test packages, then send these to a DBA to execute on our UAT environment. One of ...
1
vote
4answers
120 views
What does the word “pager” mean in SQL Server Agent context?
I want to know the meaning of pager in SQL Server Agent context. Anybody can explain it please?
Thanks
1
vote
2answers
171 views
Trouble calling stored procedure with parameters
I am trying to update SQL Server Agent schedules using msdb.dbo.sp_update_schedule, but when I try to call the stored procedure from code I get exceptions.
System.Data.OleDb.OleDbException:
...
1
vote
1answer
124 views
SQL Server Agent Doesn't Allow Me To Run Jobs
There are a number of SQL Server Agent jobs set up that run on schedules and they run OK. When I use Management Studio, right click any job and select "Start at Step...", a dialog pops up and says ...
1
vote
2answers
446 views
SQL Server Agent stop, start, pause, restart buttons are all disabled
Can anyone know why all the buttons are disabled ?
I am trying to create a Job on SQL Server 2008 R2 Express.
Thanks.
1
vote
1answer
202 views
SQL Server CLR to embed business logic and schedule execution with SQL Server Agent
I have the business logic of an workflow-like application in a C# class library, but at end of each month certain process in the library needs to be invoked, i thought that the ideal mechanism to ...
1
vote
3answers
247 views
SQL Agent Command Line Not Saved
I have a SSIS package I am trying to schedule. I create a new job under SQL Server Agent. On the Command line tab of the jobstep, I choose "Edit the command-line manually".
The changes are retained ...
1
vote
2answers
904 views
How SQL calculates NEXT_RUN_DATE for a job schedule?
I have to make a manual calculation of the next run date for a job, can you help me?
1
vote
3answers
763 views
Powershell Transcript is empty when running script from SQL Agent Job in 2005 SQL Server
I have a complex Powershell script that gets run as part of a SQL 2005 Server Agent Job. The script works fine, but it uses the "Start-Transcript $strLogfile -Append" command to log all of it's ...
1
vote
2answers
596 views
How to implement SQL Server Job that waits to another job finish?
I'm looking a way to implement a precedence step on SQL Server Agent that will verify is a specific job is running. If so, the step will entry in a "wait" state until first job finish with success.
...
1
vote
1answer
152 views
Deleting SQL Agent job by criteria - script
I want to drop all the SQL Agent Jobs which are not currently running and have description of 'xxxx'. How can this be done in script?
As of now i got this done as below and sure there would be ...
1
vote
1answer
124 views
Sending a summary of SQL Server Agent job failures
SQL Server Agent allows you to create Notifications at the moment a Job succeeds or fails, but I'd like to create a regular notification that sends a summary of the events for those who are one step ...
1
vote
3answers
2k views
SQL Agent Job - Connection may not be configured correctly or you may not have the right permissions on this connection?
I'm getting this error when running an SSIS package through SQL Agent
Failed to acquire connection "ORACLE ADO.NET". Connection may not be configured correctly or you may not have the right ...
1
vote
3answers
491 views
Using an SQL Agent Job to call procedures in a loop
I am putting together a job on SQL Enterprise Manager 2000 to copy and delete records in a couple database tables. We've run a straight up mass copy and delete stored procedure, but it could be ...
1
vote
2answers
2k views
How do I create a SQL Server agent without using a GUI?
I am using Angel LMS and its built on a SQL Server platform. I believe its 2005, but not 100% sure about that.
Anyway, maybe my pseudo-code will shed light on that answer. Also single quotes must ...
1
vote
1answer
564 views
Begin and monitor progress on long running SQL queries via ajax
Is it possible to start a query that will take a significant amount of time and monitor progress from the UI via Ajax?
I considered starting the process as a "run once" job that is scheduled to run ...
1
vote
2answers
2k views
Create SQL Server job automatically
I am writing SQL Server deployment scripts which create SQL Server job automatically on a specific SQL Server server/instance. I have found that I can extract the sql statement which can be used to ...
1
vote
2answers
4k views
SQL Server agent job account issue
I am using SQL Server 2008. I am confused about which account will be used when a SQL Server agent job runs. My confusions are,
SQL Server agent as a Windows Service which we could control from ...