Oracle入門筆記

2021-05-10 06:03:03 字數 1086 閱讀 8883

剛開始使用oracle,做一些筆記以積累。

2023年11月6日  專案dssc,伺服器上建立資料庫並匯入資料。

建立表空間:

create tablespace ts_stone

logging

datafile '***.dbf'

size 100m

autoextend on

next 100m maxsize 2048m

extent management local;

臨時表空間:

create temporary tablespace temp_ts_stone

tempfile '***xx.dbf'

size 50m

autoextend on

next 50m maxsize 2048m

extent management local;

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

create user stone identified by pwd_stone

default tablespace ts_stone

temporary tablespace temp_ts_stone;

使用者授權:

grant connect, resource to stone

匯出資料:

exp stone/pwd_stone@ts_stone file='d/oracle/data/ts_stone.dmp' full=y

exp stone/pwd_stone@ts_stone file='d/oracle/data/ts_stone.dmp' owner=stone

exp stone/pwd_stone@ts_stone file='d/oracle/data/ts_stone.dmp' tables=(tablea, tableb, tablec)

匯入資料:

imp stone/pwd_stone@ts_stone file=***.dmp tables=(tablea, tableb, tablec)

imp stone/pwd_stone@ts_stone file=***.dmp full=y ignore=y

Oracle入門筆記

對於資料庫遷移來說,如果源資料庫與目標資料庫版本一致,推薦使用oracle匯入或者pl sql匯入 如果版本不一致,則可以使用sql匯入的方式。create tablespace test datafile e database data test data.dbf size 20m autoext...

Oracle系列 Oracle入門

一,什麼是oracle?1,oracle是乙個 物件關係 資料庫管理系統 ordbms 2,基於客戶 伺服器 c s 系統結構,是使用者與資料庫之間的介面。客戶端執行與使用者的互動,伺服器端執行資料庫操作。二,oracle的特點?1,企業級應用的大型資料庫 2,安全,完整性強 3,分布式處理 4,可...

Oracle陣列入門

oracle陣列一般可以分為固定陣列和可變陣列 固定陣列 sql declare type v ar is varray 10 of varchar2 30 my ar v ar v ar g m d 龔 帥 begin for i in 1.my ar.count loop dbms output...