您好,登錄后才能下訂單哦!
這篇文章主要介紹oracle如何創建實例、建庫、建表、擴展表空間,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
版本:oracle 11g
一、創建實例(詳細參考:http://jingyan.baidu.com/article/20095761798412cb0721b4ff.html)
打開dbca(db configuration assistance)有兩種方法:
./$ORACLE_HOME/bin/dbca
直接敲dbca(正常安裝+配好環境變量)╮(╯▽╰)╭
二、查看監聽狀態
lsnrctl status
有orcllearn則實例已正常監聽,可以下一步。
三、切換實例名到orcllearn
echo $ORACLE_SID export ORACLE_SID=orcllearn
四、創建/刪除/擴展表空間
#創建表空間 create tablespace DEMOSPACE datafile 'E:/oracle_tablespaces/DEMOSPACE_TBSPACE.dbf' size 1500M autoextend on next 5M maxsize 3000M; #刪除表空間 drop tablespace DEMOSPACE including contents and datafiles #擴展表空間 alter tablespace sales add datafile 'E:/oracle_tablespaces/DEMOSPACE_TBSPACE.dbf' size 800M autoextend on next 50M maxsize 1000M;
可參考(包含多種建表空間的方式):http://database.51cto.com/art/200910/158936.htm
五、創建用戶
create user li identified by li; grant create table to li; grant create tablespace to li; grant create view to li; grant create session to li;
六、創建表
create table hehe ( id number(8) not null, name varchar(20) not null , primary key (id) )
以上是“oracle如何創建實例、建庫、建表、擴展表空間”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。