樓下安裝5分鐘是怎么安裝的,我是不明白我的i5八代8G內(nèi)存裝一個(gè)12C他么的裝了一小時(shí),這是裝的神仙軟件吧我靠!
2019-02-04
還在堅(jiān)持的點(diǎn)贊,等你們發(fā)現(xiàn)我這條評(píng)論,我已經(jīng)是大神了
2018-12-20
在表空間上創(chuàng)建新的數(shù)據(jù)文件
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m;
在表空間上刪除創(chuàng)建的數(shù)據(jù)文件
alter tablespace test1_tablespace drop datafile 'test2_file.dbf' ;
刪除表空間
drop tablespace test1_tablespace including contents;
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m;
在表空間上刪除創(chuàng)建的數(shù)據(jù)文件
alter tablespace test1_tablespace drop datafile 'test2_file.dbf' ;
刪除表空間
drop tablespace test1_tablespace including contents;
2018-12-18
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
修改表空間狀態(tài)為只讀/讀寫狀態(tài)
alter tablesapce test1_tablespace read only/alter tablespace test1_tablespace read write;
查看表空間狀態(tài)
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
修改表空間狀態(tài)為只讀/讀寫狀態(tài)
alter tablesapce test1_tablespace read only/alter tablespace test1_tablespace read write;
查看表空間狀態(tài)
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
2018-12-18
查看數(shù)據(jù)文件結(jié)構(gòu)
desc dba_data_files
查看數(shù)據(jù)文件存儲(chǔ)位置
select file_name from dba_data_files where tablespace_name = 'TEST1_TABLESPACE';
修改表空間的狀態(tài)
修改表空間狀態(tài)為脫機(jī)狀態(tài)
alter tablespace test1_tablespace offline;
查看表空間狀態(tài)
select status from dba_tablespaces where
desc dba_data_files
查看數(shù)據(jù)文件存儲(chǔ)位置
select file_name from dba_data_files where tablespace_name = 'TEST1_TABLESPACE';
修改表空間的狀態(tài)
修改表空間狀態(tài)為脫機(jī)狀態(tài)
alter tablespace test1_tablespace offline;
查看表空間狀態(tài)
select status from dba_tablespaces where
2018-12-18
查看默認(rèn)表空間和臨時(shí)表空間
desc dba_users
select default_tablespace,temporary_tablespace from dba_users where username='SYSTEM';
修改默認(rèn)表空間
alter user system default tablespace system;
創(chuàng)建表空間
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
desc dba_users
select default_tablespace,temporary_tablespace from dba_users where username='SYSTEM';
修改默認(rèn)表空間
alter user system default tablespace system;
創(chuàng)建表空間
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
2018-12-18
登錄Oracle數(shù)據(jù)庫(kù)
登錄system和tiger:connect system/密碼 connect tiger/密碼
登錄sys: connect sys/123456 as sysdba
查看表空間結(jié)構(gòu)
desc dba_tablespaces
desc user_tablespaces
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
登錄system和tiger:connect system/密碼 connect tiger/密碼
登錄sys: connect sys/123456 as sysdba
查看表空間結(jié)構(gòu)
desc dba_tablespaces
desc user_tablespaces
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
2018-12-18