安裝ORACLE資料庫後進行初始化,建立表空間

2021-05-27 09:19:00 字數 793 閱讀 3963

//建立臨時表空間

create temporary tablespace test_temp 

tempfile 'e:\oracle\product\10.2.0\oradata\testserver\test_temp01.dbf' 

size 32m 

autoextend on 

next 32m maxsize 2048m

extent management local;

//建立資料表空間

create tablespace test_data

logging

datafile 'e:\oracle\product\10.2.0\oradata\testserver\test_data01.dbf' 

size 32m 

autoextend on 

next 32m maxsize 2048m

extent management local;

//建立使用者並指定表空間

create user testserver_user identified by testserver_user

default tablespace test_data

temporary tablespace test_temp;

//給使用者授予許可權

grant connect,resource to testserver_user;

//以後以該使用者登入,建立的任何資料庫物件都屬於test_temp 和test_data表空間,這就不用在每建立乙個物件給其指定表空間了。

Oracle 修改資料庫提交之後進行回滾

1 查詢你執行update 語句之前的資料 精確到什麼時間 select from 表名 as oftimestamp to timestamp 2017 07 2117 16 38 yyyy mm dd hh24 mi ss 2 開啟可移動資料命令,執行完就可以回滾資料 alter table 表...

oracle資料庫安裝

安裝完oracle 11g後,需要重新安裝時,你可以試著用以下方法解除安裝oralce.軟體環境 1 windows server 2008 r2 oracle 11g r2 實現方法 1 開始 設定 控制面板 管理工具 服務 停止所有oracle服務。3 執行regedit,選擇hkey loca...

Oracle資料庫安裝

2 版本選擇 12c第一版 3 安裝問題解決 a 安裝報錯 無法訪問臨時位置 的問題 1 以管理員命令執行 net share c c 2 進入cmd執行 setup.exe ignoreprereq j doracle.install.db.validate.supportedoscheck fa...