Oracle(98)
-
[oracle19c] 사용자 생성 및 삭제 (ORA-65096, ORA-28014)
(1) 생성 SQL> create user scott identified by "tiger"; ERROR at line 1: ORA-65096: invalid common user or role name SQL> create user "C##SCOTT" identified by "tiger"; -> 12c부터 바뀌 C##을 붙여줘야한다고 함. 근데 저렇게 생성하면 C##도 사용자명에 포함되버리는데 왜 저렇게 했을까나? or SQL> alter session set "_ORACLE_SCRIPT"=true; SQL> create user scott identified by "tiger"; (2) 삭제 SQL> drop user scott [CASCADE]; 여기서 ORA-28014: cannot drop a..
2022.03.24 -
ORA-01950: no privileges on tablespace 'USERS'
DML문을 실행하려고 했는데 ORA-01950 에러가 발생한다면 해당 테이블스페이스에 insert 할수 있는 권한이 없다는 것이다. 권한을 아래와 같이 부여해 줄 수 있다. alter user scott quota unlimited on users; 또는 alter user scott quota 1m on users; 권한을 확인 하는 방법은 select * from dba_ts_quotas; 조회하였을때 해당 테이블스페이스의 계정이 등록되어 있으면 권한을 부여받은 것이다. 여기서 max_bytes 가 -1 이면 unlimited 로 부여 받은 것이고, 값이 존재하면 그 byte만큼 저장이 가능하게 부여받은 것이다.
2022.03.24 -
[ORA-01017] : invalid username / password; logon denied by SQL developer
오라클에서 제공하는 SQL developer 에서 system 또는 sys 계정에 접속하고자 할 때, 정확한 비밀번호를 입력했음에도 불구하고 접속이 안되는 경우가 있다. 분명 sqlplus에서는 system 계정으로 매우 접속이 잘된다. SQL> sqlplus /nolog SQL> conn system/oracle as sysdba 왜 이런지 원인은 알 수가 없다. 문제점을 알려주는 곳을 도저히 찾을수가 없었다. 해결방안은 그냥 패스워드를 다시 만들어주면 해결된다. 너무 간단했다. ㅠㅠ SQL> alter user system identified by "oracle"; 참고로 원인을 찾아보던 중 19c 경우 기본암호가 "manager"에서 "no authentication" 로 변경되었다고 하는데, 필자..
2022.03.24 -
11g alert 파일 경로 확인
SQL> select * from v$diag_info where name = 'Diag Trace';
2022.02.09 -
shmmax 값에 대한 추측성 글
현재 서버shmmax=1gshmseg=120SGA = 48G 신규서버shmmax=1gshmseg=120SGA = 110G 위로 올라가지 않음. 왜 그런 것인지를 찾아봄. shmmax 할당 : SGA 보다 크거나 같게 설정하는 것을 권장한다고 함. 현재 알아본 바로는,1. sga 값보다 shmmax를 낮게 설정하면, 여러개의 shared memory가 뜨는 것을 볼 수 있다. - ipcs -ma 명령어로 SEGSZ 값을 합산하면 대략적으로 sga값과 동일하게 나온다.2. sga 값보다 shmmax를 높게 설정하면, 한개의 shared memory가 뜨는 것을 볼 수 있다. 의문. sga 값보다 shmmax를 낮게 설정하였는데, 에러가 발생하였다. - ORA-27123: unable to attach to ..
2015.03.10 -
External Table
drop table temp_pgheo_external;drop directory TEST; create directory TESTas '/data16/tmp'; create table temp_pgheo_external(server_date varchar2(14),code1 varchar2(20),code2 varchar2(20),code3 varchar2(20),code4 varchar2(20),code5 varchar2(20) )organization external( type oracle_loader default directory BDUMP access parameters( --recodrds fixed 63 records delimited by newline fields terminated b..
2014.07.16