//建立臨時表空間
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 username identified by password
default tablespace test_data
temporary tablespace test_temp;
//給使用者授予許可權
grant connect,resource to username;
//以後以該使用者登入,建立的任何資料庫物件都屬於test_temp 和test_data表空間,這就不用在每建立乙個物件給其指定表空間了。
oracle配置使用PL SQL
一般在使用plsql時,會結合oracle客戶端來使用,這樣方便把資料庫連線資訊新增到plsql中。不過oracle客戶端軟體有點龐大,安裝起來不太方便,所以在網上找到一種不依賴oracle客戶端來使用plsql的方法。2 具體操作步驟 2 在解壓目錄下新建 network 目錄,然後在networ...
PLSQL來Oracle建立表空間和建立使用者
建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...
不安裝oracle,使用plsql連線oracle
通常企業開發時,資料庫是不會在我們本地安裝的 廢話 所以使用plsql時,沒必要的話,我們盡量不去安裝oracle,太大了 接下來說一下本人plsql,不安裝oracle的使用步驟 1.個人本地環境 os win10 未安裝oracle 3.建立乙個目錄存放instantclient 可以本人的為例...