달력

52024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
반응형

실행

sqlplus "/as sysdba"

 

-- 테이블스페이스 정보 조회
 select * from dba_data_files;

--유저 조회

select username,account_status,lock_date from dba_users;

--잠금 해제

alter user [계정명] account unlock;

 

--자동잠금기능 해제...ㅎㅎ

select * from dba_profiles where resource_name like 'FAILED%';

alter profile default limit FAILED_LOGIN_ATTEMPTS unlimited;

 

참고용 url : http://nimba.tistory.com/198 

반응형
Posted by 친절한 웬디양~ㅎㅎ
|