主頁(yè) > 知識(shí)庫(kù) > oracle 創(chuàng)建表空間詳細(xì)介紹

oracle 創(chuàng)建表空間詳細(xì)介紹

熱門(mén)標(biāo)簽:溫州人工外呼系統(tǒng) 北京營(yíng)銷(xiāo)外呼系統(tǒng)廠家 外呼系統(tǒng)口號(hào) 外呼系統(tǒng)鄭州 貴陽(yáng)智能電銷(xiāo)機(jī)器人官網(wǎng) 北京外呼系統(tǒng)公司排名 百度地圖標(biāo)注員是干什么 地圖標(biāo)注付款了怎么找不到了 沈陽(yáng)400電話(huà)是如何辦理
注意點(diǎn):
1.如果在PL/SQL 等工具里打開(kāi)的話(huà),直接修改下面的代碼中[斜體加粗部分]執(zhí)行
2.確保路徑存在,比如【D:\oracle\oradata\Oracle9i\】也就是你要保存文件的路徑存在
/*分為四步 */
/*第1步:創(chuàng)建臨時(shí)表空間 */
復(fù)制代碼 代碼如下:

create temporary tablespace user_temp
tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;


/*第2步:創(chuàng)建數(shù)據(jù)表空間 */
復(fù)制代碼 代碼如下:

create tablespace user_data
logging
datafile 'D:\oracle\oradata\Oracle9i\user_data.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;

/*第3步:創(chuàng)建用戶(hù)并指定表空間 */
復(fù)制代碼 代碼如下:

create user username identified by password
default tablespace user_data
temporary tablespace user_temp;

/*第4步:給用戶(hù)授予權(quán)限 */
復(fù)制代碼 代碼如下:

grant connect,resource,dba to username;

您可能感興趣的文章:
  • Oracle 查看表空間的大小及使用情況sql語(yǔ)句
  • Oracle新建用戶(hù)、角色,授權(quán),建表空間的sql語(yǔ)句
  • oracle表空間表分區(qū)詳解及oracle表分區(qū)查詢(xún)使用方法
  • oracle增加表空間大小兩種實(shí)現(xiàn)方法
  • Oracle 表空間查詢(xún)與操作方法
  • Oracle中如何把表和索引放在不同的表空間里
  • Oracle表空間數(shù)據(jù)文件移動(dòng)的方法
  • Oracle修改表空間大小的方法
  • Linux下Oracle刪除用戶(hù)和表空間的方法
  • Oracle表空間設(shè)置和管理淺析

標(biāo)簽:淮北 溫州 衢州 包頭 通遼 衡水 潮州 定西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《oracle 創(chuàng)建表空間詳細(xì)介紹》,本文關(guān)鍵詞  oracle,創(chuàng)建,表,空間,詳細(xì),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《oracle 創(chuàng)建表空間詳細(xì)介紹》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于oracle 創(chuàng)建表空間詳細(xì)介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章