오라클 tablespace 생성 삭제 조회 관련
########tablespace 조회#################################### select * from dba_tablespaces; ########tablespace 물리적인 위치 조회######################### SELECT status,enabled, t.name ,d.nameFROM V$DATAFILE d, V$TABLESPACE tWHERE t.ts#=d.ts#; ########tablespace 생성#################################### CREATE TABLESPACE JD_SAMPLE DATAFILE 'D:\dbdata\oracle\11g\sampl..