不建議直接刪除表空間,
刪除后在創(chuàng)建test1file.dbf時(shí)報(bào)錯(cuò),提示文件已存在,
刪除表空間是需要在后面加 including contents
刪除后在創(chuàng)建test1file.dbf時(shí)報(bào)錯(cuò),提示文件已存在,
刪除表空間是需要在后面加 including contents
2018-05-15
--增加表空間
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m
select * from dba_data_files
--刪除表空間
alter tablespace test1_tablespace drop datafile 'test2_file.dbf'
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m
select * from dba_data_files
--刪除表空間
alter tablespace test1_tablespace drop datafile 'test2_file.dbf'
2018-05-15
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
select * from dba_data_files t where t.tablespace_name in ('TEST1_TABLESPACE')
create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
select * from dba_data_files t where t.tablespace_name in ('TEST1_TABLESPACE')
2018-05-15
忘了密碼,修改密碼
修改密碼
1. sqlplus / as sysdba cmd 命令
2.輸入 alter user 用戶名 account unlock;
3.、alter user 用戶名(system) identified by 新密碼(m1234) ;
修改密碼
1. sqlplus / as sysdba cmd 命令
2.輸入 alter user 用戶名 account unlock;
3.、alter user 用戶名(system) identified by 新密碼(m1234) ;
2018-05-13
說重復(fù)的沒有意義是,不妨這樣想,分開知識(shí)點(diǎn)來講,你們現(xiàn)在都知道這是重復(fù)了,這樣間接不是鍛煉了你們的歸納能力嗎?直接講的話,或許還有很多懵懂的知識(shí)點(diǎn)也是可以一起講的呢?到時(shí)候太復(fù)雜呢?任何事情都有相對(duì)面,人家老師這樣講也是屬于人家獨(dú)立講課的一個(gè)方式,理解就好!另外,那個(gè)說照著敲別人代碼怎么敲也是別人的代碼要?jiǎng)幽X子是最重要的人,我沒有想要說別的意思,動(dòng)腦好,但不照人家代碼來打練習(xí),怎么來進(jìn)步,怎么來自己獨(dú)立打出自己的代碼?純靠腦?
2018-05-02
挺基礎(chǔ)的一些東西啦,有啥不明白的可以來問我呀,大家一起學(xué)習(xí)努力
2018-05-02