使用oracle 使用者登入linux系統
su -u oracle
sqlplus 登入
[oracle@yctech ~]$ sqlplus / as sysdba
檢視表空間儲存目錄
sql> select name from v$datafile;
建立表空間
sql>
create tablespacetest_data logging datafile '/data/oracle/oradata/test/test_data01.dbf' size 64m autoextend on next 65m maxsize 2048m extent management local;
建立臨時表空間
sql> create temporary tablespacetest_temp tempfile '/data/oracle/oradata/test/test_temp01.dbf' --//linux下的檔案系統 size 64m autoextend on next 64m maxsize 2048m extent management local;
create
tablespace
notifydb
datafile
'/oracle/oradata/test/notifydb.dbf'
size
200m
autoextend
on extent
management
local
segment
space
management
auto;
create
tablespace
notifydb
datafile
'/oracle/oradata/test/notifydb.dbf'
size
200m
autoextend
on extent
management
local
segment
space
management
auto;
-- 建立使用者oracle
create user oracle
--指定密碼
identified by oracle
--指定表空間
default tablespace 'dsbase
--指定臨時表空間
temporary tablespace dstemp
profile default;
--賦予dba許可權
grant dba to oralce;
grant unlimited tablespace to oracle;
四:刪除使用者表空間的步驟: alter tablespace 表空間名稱 offline; drop tablespace 表空間名稱;(表空間無有資料時用) 或者 drop tablespace 表空間名稱 including contents;(表空間下有資料時候用) ;
sql> select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;
linux下建立iso檔案(用mkisofs命令)
太方便了,太方便了。看man會看暈,直接看例項 示 例 1 建立映像檔案 把目錄a下的內容做成iso檔案 mkisofs r o a.iso a 2 建立映像檔案 把目錄a下的內容做成iso檔案,並指定不把檔案b.txt放到iso中 mkisofs m b.txt r o a.iso a 3 建立映...
linux下 如何建立預設oracle使用者
登陸 sqlplus as sysdba 建庫 create user 使用者名稱 identified by 密碼 default tablespace users temporary tablespace temp 分號不可忘記 賦許可權 grant connect,resource,creat...
Linux下建立Oracle服務及其開機自啟動
開發十年,就只剩下這套架構體系了!說明 以下操作環境在centos 6.4 oracle 11gr2 oracle安裝在oracle base opt oracle中,其oracle home opt oracle 11g 用oui安裝並配置oracle資料庫後,oracle就開啟了 包括 資料庫例...