sp_manage_jobs_by_login (Transact-SQL)
SQL Server 2005
Deletes or reassigns jobs that belong to the specified login.
- [ @action = ] 'action'
-
The action to take for the specified login. action is varchar(10), with no default. When action is DELETE, sp_manage_jobs_by_login deletes all jobs owned by current_owner_login_name. When action is REASSIGN, all jobs are assigned to new_owner_login_name.
- [ @current_owner_login_name = ] 'current_owner_login_name'
-
The login name of the current job owner. current_owner_login_name is sysname, with no default.
- [ @new_owner_login_name = ] 'new_owner_login_name'
-
The login name of the new job owner. Use this parameter only if action is REASSIGN. new_owner_login_name is sysname, with a default of NULL.
Reference
sp_delete_job (Transact-SQL)System Stored Procedures (Transact-SQL)