RemoveJobByID Method
后续版本的 Microsoft SQL Server 将删除该功能。请避免在新的开发工作中使用该功能,并着手修改当前还在使用该功能的应用程序。
The RemoveJobByID method drops the SQL Server Agent job identified and removes the referencing Job object from the Jobs collection.
语法
object
.RemoveJobByID(
JobID
)
Parts
- object
Expression that evaluates to an object in the Applies To list.
- JobID
String representation of the system-generated, globally unique identifier for a job.
Prototype (C/C++)
HRESULT RemoveJobByID(
SQLDMO_LPCSTR NewVal);
备注
For SQL Server Agent, a job identifier is a 32-byte string representing a hexadecimal number.
The RemoveJobByID method completely removes a job. When a multiserver administration job is targeted on the master server, the master server posts job-delete instructions to each execution target server. The indicated job is deleted at the master server immediately. Each target server deletes its local copy of the job when it next successfully polls the master server and retrieves the delete instruction.
注意: |
---|
Removing a SQL Server Agent job by using the RemoveJobByID method requires appropriate permission. The Microsoft SQL Server login used for SQLServer object connection must be the owner of the job indicated by the JobID argument or a member of a role with greater privilege. |