3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SQL Server エージェントの拡張ストアド プロシージャを使用できるようにする

Last updated at Posted at 2016-07-27

#Agent XPs の設定
Agent XPs の設定をして、SQL Server エージェントの拡張ストアド プロシージャを使用できるようにする。
このオプションを有効にしないと、SQL Server Management Studio のオブジェクト エクスプローラーに SQL Server エージェントのノードが表示されない。
#設定方法
SQL Server に接続して、以下のクエリを実行する

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?