私は、すべてのユーザーのパスワードを30日ごとに有効期限が切れるように設定されていることを確認するためにレポートを実行したいのですが、有効期限の間隔がsysloginsのに格納されていないようですか?報告書12.5
Q
報告書12.5
0
A
答えて
1
次のPROCで報告し得ることができます場合は、sp_addlogin、sp_modifylogin)
0
あなたは
sp_configure "systemwide password expiration", 30
go
すべてのユーザーのパスワードの有効期限を設定するには、sp_configureを使用することができますが、30日後に期限切れになるように、すべてのユーザーのパスワードを設定します。この値がレポートのために読み込めるかどうかはわかりません。デフォルトは0です。
0
が
幹部にsp_displaylogin
個々のユーザーの設定のためにパーマを取得するには、そのユーザとしてログインしてみてくださいです。この中で(
use sybsystemprocs
go
----------------------------------------------------------------------------
print 'sp__helpexpire'
----------------------------------------------------------------------------
if exists (select 1 from sysobjects where type = "P" and name = "sp__helpexpire")
drop proc sp__helpexpire
go
create procedure sp__helpexpire
as
begin
set nocount on
declare @swexpire int
select @swexpire=value from master.dbo.sysconfigures
where name = 'systemwide password expiration'
print "Serverwide password expire: %1!" ,@swexpire
print ""
print "Logins:"
print "=============================================================="
select l.name login , case a.int_value
when null then @swexpire
else a.int_value end "expire in days"
from master.dbo.syslogins l , master.dbo.sysattributes a
where l.suid *= a.object
and a.object_type='PS'
and a.attribute=0
and object_cinfo='login'
print ""
print "Roles:"
print "=============================================================="
select r.name "role name", case a.int_value
when null then @swexpire
else a.int_value end "expire in days"
from master.dbo.syssrvroles r , master.dbo.sysattributes a
where r.srid *= a.object
and a.object_type='PS'
and a.attribute=0
and object_cinfo='role'
end
go
それはあなたが探しているレコードを操作する(sybsystemprocsデータベースに格納されている)、これらのシステム・プロシージャのソースコードをチェックすることをお勧めは、常に次のとおりです。
関連する問題
- 1. ビルドステップ「アリュール報告書は、」UNSTABLE
- 2. NetSuite小計報告書
- 3. 報告書は何のテーブル
- 4. 報告書(RDLC)ローカリゼーション/グローバリゼーション
- 5. 報告サービス用の書式番号
- 6. ジャスパー報告書:ラウンド可変合計値
- 7. ジャスパー報告書の作成方法は?
- 8. ジャスパー報告書:2つの詳細セクション?
- 9. PowerBuilder 10.5から12.5へのアップグレード時の警告
- 10. Powerbuilder 12.5移行
- 11. PowerBuilder 12.5 sqlカーソルトランザクションサイズエラー
- 12. SYBASE ASE 12.5
- 13. GUIエラー報告
- 14. オージージョブの報告
- 15. Bashエラー報告
- 16. ユーザ報告ライブラリ
- 17. 報告は
- 18. mongodbでの報告
- 19. PHPエラー報告:Wordpress
- 20. sexmachine報告なし
- 21. Boost.Spirit:Lex + Qiエラー報告
- 22. データフローのエラー報告
- 23. jQueryは文書の直系子孫を報告しない
- 24. このリークカナリア報告書のリークは何ですか?
- 25. 、報告書は、元のデータを表示する
- 26. ジャスパー報告書のダブルパラメーターの受け渡し
- 27. Windowsデバッガー報告書のエラーを確認してください
- 28. 無効な書き込みエラーを報告するValgrind
- 29. 文章に年次報告書を含む分割文字ベクトル
- 30. VBAコードの書式設定に関する報告