1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

こちらのIBM i サービスと同様に導入済みライセンスの情報、キー期限切れを返してくれます。
違いは出力先がSQLの実行元クライアントになる事です。

概要

■ビュー名:QSYS2.LICENSE_INFO ビュー
■カテゴリ:プロダクトサービス
■サポート:IBM i 7.2 SF99702 Level 9以降
■参照URL(IBM i 7.5):https://www.ibm.com/docs/ja/i/7.5?topic=services-license-info-view

SYSTOOLS.License_Expiration_Check プロシージャー と同様に導入済みライセンスプログラム、ライセンスキー期限切れについて、SQLの実行元に返します。

使用例

下記の例はライセンスプログラムのうち、ライセンスキーが14日以内に切れるものを返します。

SELECT * FROM QSYS2.LICENSE_INFO
   WHERE LICENSE_EXPIRATION <= CURRENT DATE + 14 DAYS;

実行例はこちら

image.png

ライセンスプログラムの名称、VER、機械グループ、使用限界、ライセンスキー期限日、使用カウントなどが取得できます

全てのカラムをチェックできていませんが、ICENSE_EXPIRATION_CHECK との差異は、返す先だと思うので、プログラムや運用上使いやすい方を使えばいいように思います。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?