-
--oracle查看用戶(hù)的表空間 ·dba_tablespaces數(shù)據(jù)字典 ---desc dba_tablespaces ---select tablespace_name from dba_tablespaces; ·user_tablespaces數(shù)據(jù)字典 ---desc dba_tablespaces ---select tablespace_name from user_tablespaces; ·dba_users connect system/toor desc dba_users; ·user_users查看全部
-
2-9修改[永久的]表空間 · 修改表空間狀態(tài) · 修改數(shù)據(jù)文件 · 設(shè)置聯(lián)機(jī)或脫機(jī)狀態(tài) ALTER TABLESPACE tablespace_name ONLINE|OFFLINE; · 示例: · alter tablespace test1_tablespace offline; 用數(shù)據(jù)字典查看表狀態(tài) · desc dba_tablespaces STATUS就是表的狀態(tài) select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE'; · alter tablespace test1_tablespace online; · 設(shè)置只讀或者可讀寫(xiě)狀態(tài)(前提是表要在聯(lián)機(jī)online狀態(tài)) ALTER TABLESPACE tablespace_name READ ONLY|READ WRITE · 示例: · alter tablespace test1_tablespace read only; 查看狀態(tài) · desc dba_tablespaces · alter tablespace test1_tablespace read only; 查看狀態(tài) · desc dba_tablespaces查看全部
-
2-8創(chuàng)建表空間 · CREATE [TEMPORARY] TABLESPACE tablespace_name TEMPFILE|DATAFILE 'xx.dbf' SIZE xx · 示例: · create tablespace test1_tablespace datafile 'test1file.dbf' size 10m; · create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m 查看表空間 desc dba_data_files select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE';【文件名要大寫(xiě)】 查看臨時(shí)表空間 select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE';查看全部
-
--oracle表空間 ·數(shù)據(jù)庫(kù)與表空間 ·表空間與數(shù)據(jù)文件 ·表空間分類(lèi) -·永久表空間:永久存儲(chǔ)的表 -·臨時(shí)表空間:SQL語(yǔ)句執(zhí)行過(guò)程的臨時(shí)表 -·UNDO表空間:修改之前的信息查看全部
-
--oracle啟用scott用戶(hù) ·啟用用戶(hù)的語(yǔ)句 alter user username account unlock; ·使用scott用戶(hù)登入SQL Plus connect scott/tiger查看全部
-
--oracle查看登入用戶(hù) ·show user命令 查看當(dāng)前的用戶(hù) ·dba_users數(shù)據(jù)字典 查看賬號(hào)信息 desc dba_users ·select username from dba_users; 查看oracle的所有系統(tǒng)用戶(hù)查看全部
-
--oracle使用系統(tǒng)用戶(hù) 系統(tǒng)用戶(hù) -sys,system 安裝密碼 -sysman 安裝密碼 -scott tiger 使用system用戶(hù)登入 system/密碼 @orcl as sysdba orcl就是自己設(shè)置的服務(wù)名,如果不是用自己的,就寫(xiě)別人的 如果在同一臺(tái)機(jī)器上,就不用@orcl eg-->system/toor eg-->connect sys/toor as sysdba查看全部
-
---oracle刪除 app\Administrator\product\11.2.0\dbhome_1\deinstall.bat 指定要取消配置的所有單實(shí)例監(jiān)聽(tīng)程序 【LISTENER】: Enter 指定在此Oracle主目錄中配置的數(shù)據(jù)庫(kù)名的列表【ORCL】:Enter 是否仍要修改ORCL數(shù)據(jù)庫(kù)的詳細(xì)資料?【n】:y 指定此數(shù)據(jù)庫(kù)<1.單實(shí)例數(shù)據(jù)庫(kù);2.啟用Oracle Restart的數(shù)據(jù)庫(kù)>的類(lèi)型[1]:Enter Enter Enter CCR check is finished 是否繼續(xù)<y -是,n - 否>?【n】:y 等待... 無(wú)法刪除:'d:\app\Administrator\product\11.2.0\dbhome_1\deinstall.bat'。該目錄正在使用中。 在程序結(jié)束后刪除。查看全部
-
在官網(wǎng)找不到,查看全部
-
意思是說(shuō)online狀態(tài)才能使用這個(gè)表空間嗎?查看全部
-
1.邏輯空間與物理文件的映射,是在創(chuàng)建時(shí)就建立的 2.永久和臨時(shí)文件對(duì)應(yīng)的數(shù)據(jù)字典分別是dba_data_files和dba_temp_files查看全部
-
表空間是Oracle特有的概念么?查看全部
-
表空間——邏輯數(shù)據(jù)空間 數(shù)據(jù)文件——物理上的存儲(chǔ)查看全部
-
DROP TABLESPACE tablespace_name [INCLUDING CONTENTS] drop tablespace test1_tablespace including contents;查看全部
-
ALTER TABLESPACE tablespace_name ADD DATAFILE 'xx.dbf' SIZE xx; alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m; alter tablespace test1_tablespace drop datafile 'test2_file.dbf'查看全部
舉報(bào)
0/150
提交
取消