■ USER 관리 [sql developer] # ora1 생성 -- user 생성할 때 기본값으로 설정된다. 기본값을 변경하면 자동으로 변경된다. create user ora1 identified by oracle; ex) create table test (id number); test segment 는 어느 tablespace 에 저장되나? 답변) DEFAULT_TABLESPACE users 에 저장 # ora1.test 생성 create table ora1.test (id number); select * from dba_users where username = 'ORA1'; 유저 생성시 default tablespace가 지정되어 있지 않으면 system tablespace 가 되는 문제점 때문에 ..