※ SCENARIO 0 : Tablespace의 조작 ① 새로운 Tablespace Create [/DBA3/DBA/dba숫자]svrmgrl SVRMGR> connect internal SVRMGR> startup SVRMGR> create tablespace test 2> datafile '/DBA3/DBA/dba숫자/u01/test_01.dbf' 3> size 10k; SVRMGR> select tablespace_name, bytes, file_name from dba_data_files; ② Table Create SVRMGR> create table test(name char(30)) 2> tablespace test 3> storage(initial 4k); ③ Table에 Row들을 Inse..