ORACLE資料庫操作基本語句

2022-08-21 14:27:11 字數 1507 閱讀 7291

[username/password] [@server] as [sysdba|sysoper]

eg. system/password or connect sys/password as sysdba

show user

dba_users

desc dba_users//展示表結構

select username from dba_users;

alter user username account unlock
資料庫--->表空間--->資料檔案

表空間分類:

永久表空間: 表、檢視,永久儲存

臨時表空間: 操作當中的過程,過程結束即被釋放

undo表空間: 儲存事務所修改資料的舊址,就是被修改之前的資料,用於回滾

create [temporary] tablespace tablespace_name tempfile|datafile 'xx.dbf' size xx

永久表空間

create tablespace test1_tablespace

datafile 'testlfile.dbf' size 10m;

臨時表空間

create temporary temptest1_tablespace

tempfile 'tempfile1.dbf' size 10m;

改變表空間狀態

alter tablespace tablespacename offline|online;聯機||離線

alter tablespace tablespacename read only|read write;

增加

alter tablespace tablespace_name add datafile 'xx.dbf' size xx;

刪除alter tablespace tablespace_name drop datafile 'xx.dbf';

(1)基本儲存結構

(2)二維結構

(3)行和列

字元型

char(n) n<=2000 補充為n位

nchar(n) n<=1000

varchar2(n) n<=4000

nvarchar2(n)n<=2000

數值型number(p,s) p有效數字,s小數點後的位數

float(n)

日期型data

timestamp

其他型別

blob 4gb二進位制

clob 4gb字串

建立表

create table table_name

( colimn_name datatype, ...

)

oracle資料庫基本操作

一 增 有3種方法 1.使用insert插入單行資料 insert into 表名 列名 values 列值 insert into strdents name,age values atm 12 2.使用insert,select語句將現有表中的 資料新增到已有的新錶中 insert into 已...

oracle資料庫基本操作

檢視磁碟使用情況 df h 進入oracle su oracle sqlplus nolog conn as sysdba 檢視三種資料庫檔案 select from vlo gfil e 日 志檔案s elec t fr omv datafile 資料檔案 select from v contro...

oracle資料庫基本操作

1.在 oracleservice 服務啟動動後,就可以對資料庫進行管理了,oracle 的啟動和關閉是最基本的命令,在 sql plus 中,啟動 oracle 必須是 sys 使用者,命令格式是 startup open oracle 服務關閉用命令 shutdownimmediate orac...