개발 공부
(ORACLE) create user 오류 : 누락된 또는 부적합한 옵션 본문
creat user 시 아래 오류 발생
create user userName identified by !!pwd
-- SQL Error [922] [42000]: ORA-00922: 누락된 또는 부적합한 옵션
오라클 password 정책 확인
o Passwords must be from 1 to 30 characters long.
o Passwords cannot contain quotation marks.
o Passwords are not case sensitive.
o A Password must begin with an alphabetic character.
o Passwords can contain only alphanumeric characters and the underscore (_), dollar sign ($), and pound sign (#). Oracle strongly discourages you from using $ and #..
o A Password cannot be an Oracle reserved word (eg: SELECT).
원인은 알파벳으로 시작해야하는 정책을 지키지 않은 것이었다.
'DB, SQL' 카테고리의 다른 글
(Toad for oracle) toad에서 explain plan 테이블 생성 (0) | 2022.10.13 |
---|---|
(ORACLE) 사용자 생성 (0) | 2021.07.15 |
(mysql) 실행 에러 : Unable to lock ./ibdata1, error: 11 (0) | 2021.07.09 |
(mysql) 실행 에러 조치 순서 (0) | 2021.07.09 |
SQL 수정일자(modified_at) 널 허용(nullable) 문제 (0) | 2021.02.01 |
Comments