1
2

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.

SAP HANA ユーザ情報確認用SQL

Posted at
select 
 user_name,
 CREATE_TIME,
 LAST_SUCCESSFUL_CONNECT,
 LAST_INVALID_CONNECT_ATTEMPT,
 LAST_PASSWORD_CHANGE_TIME,
 PASSWORD_CHANGE_NEEDED,
 IS_PASSWORD_LIFETIME_CHECK_ENABLED,
 USER_DEACTIVATED,
 DEACTIVATION_TIME
from users
where user_name like 'ユーザー名'
--  and (LAST_SUCCESSFUL_CONNECT is null or USER_DEACTIVATED = 'TRUE')
order by user_name
1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?