Oracle初始環境中建立第乙個資料庫

2021-08-15 00:21:00 字數 1857 閱讀 3111

--一、建立表空間

create tablespace dbsp_1 datafile 'd:\database\datafile1.dbf'--設定名稱、位置(必須保證為已存在的位置)

size 10m--設定大小

extent management local autoallocate;--當表空間大小已滿時,用自動管理的方式擴充套件表空間

--或extent management local uniform size 256k;--當表空間大小已滿時,每次自動擴充套件256k(根據需要自由設定)

--二、建立使用者

create user test1 identified by admin--設定使用者名稱及密碼

default tablespace dbsp_1--設定預設表空間

temporary tablespace temp--設定臨時表空間

quota 10m on dbsp_1;--設定使用者占用預設表空間的大小

--三、授權

--connect、resource、dba主要用於資料庫管理,資料庫管理員需要被授予這三個角色。

--一般的資料庫開發人員,需要被授予connect、resource角色即可。

--exp_full_database、imp_full_database角色分別用於運算元據庫匯出、匯入相關的操作

grant connect,resource to test1;

--四、建立表

--1、使用者表

create table euser

( userid number(4,0) not null,

username varchar2(50) not null,

age number(2,0) not null,

ename varchar2(50) not null,

--ename datatype referencesemp (empname)

sal number(6,2) not null

)select * from euser;

--2、部門表

create table emp

( empid number(6,0) not null,

empname varchar2(50) not null

)truncate table emp

drop table emp

select * from emp;

--五新增約束

--1、部門表(主鍵約束)

alter table emp

add constraint constraint_pk

primary key(empname);

--2、使用者表(主鍵約束)

alter table euser

add constraint constraint_pk_u

primary key(userid);

--3、使用者表(外來鍵約束)

alter table euser

add constraint constraint_fk foreign key

(ename) references emp (empname) on delete cascade;

desc user_constraints;

--4、檢視約束

select constraint_name from user_constraints where table_name='emp';

select constraint_name 約束名稱,constraint_type 約束型別 from user_constraints where table_name='euser';

oracle透明閘道器環境的建立

1 安裝oracle 的transparent gateway 透明閘道器。安裝oracle 選擇自定義安裝,然後再選擇 安裝透明閘道器,再進去選擇 安裝for sqlserver 的元件。www.bianceng.cn 2 修改 oraclehome ora92 tgsmsql admin ini...

oracle 透明閘道器環境的建立

oracle 透明閘道器環境的建立 蘭偉 2007 0 082 1 安裝oracle 的transparent gateway 透明閘道器。安裝oracle 選擇自定義安裝,然後再選擇 安裝透明閘道器,再進去選擇 安裝for sqlserver 的元件。2 修改 oraclehome ora92 t...

react umi 環境搭建,建立第乙個路由頁面

新增訪問頁面路由 自定義路由 配置檔案 約定式路由 基礎路由 umi路由 api 安裝nodejs 安裝yarn cnpm install g yarn安裝umi cnpm install g umi 建立umi 工程 yarn create umi建議使用yarn create,能確保每次使用最新...