黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

oracle11g數(shù)據(jù)庫常用操作實例總結(jié)

oracle11g數(shù)據(jù)庫常用操作實例總結(jié)

 

一、創(chuàng)建用戶庫

1.進(jìn)入oracle數(shù)據(jù)庫

命令:su - oracle

命令:sqlplus / as sysdba

【進(jìn)入oracle數(shù)據(jù)庫后可以操作的常用命令】:

關(guān)閉數(shù)據(jù)庫:shutdown immediate

啟動數(shù)據(jù)庫:startup

啟動監(jiān)聽:lsnrctl start

停止監(jiān)聽:lsnrctl stop

2.創(chuàng)建表空間

sql:create tablespace mydatabase datafile '/u01/app/oracle/oradata/mydatabase.dbf'size 300m autoextend on;

【說明】:

  • create tablespace:創(chuàng)建表空間關(guān)鍵字
  • mydatabase:數(shù)據(jù)庫名稱(表名稱)
  • datafile '/u01/app/oracle/oradata/mydatabase.dbf':指定數(shù)據(jù)庫文件目錄
  • size 300m:設(shè)置表空間初始大小
  • autoextend on:參數(shù)表示當(dāng)表空間大小不夠用時會自動擴(kuò)容,所有建議加上autoextend on參數(shù)。

3.創(chuàng)建用戶并賦予表空間權(quán)限

create user username identified by "passwd" default tablespace mydatabase;

【說明】:

  • create user:oracle創(chuàng)建用戶關(guān)鍵詞
  • username:用戶名
  • identified by:指定密碼關(guān)鍵詞
  • passwd:自定義密碼
  • default tablespace:數(shù)據(jù)庫映射關(guān)鍵詞
  • mydatabase:映射的數(shù)據(jù)庫名稱

4.授予用戶管理權(quán)限

grant connect,resource,dba to username;
grant create session to username;

【說明】:

  • grant connect,resource,dba to:將連接數(shù)據(jù)權(quán)限,授權(quán)給指定用戶
  • grant create session to :將創(chuàng)建會話權(quán)限,授權(quán)給指定用戶
  • username:用戶名

5.想讓b用戶對a用戶庫進(jìn)行操作,那就授權(quán)給b用戶(不強制執(zhí)行)

grant all privileges to buser;

【說明】:

  • grant :授權(quán)關(guān)鍵字
  • all:全部權(quán)限
  • privileges to:指定授權(quán)人關(guān)鍵字
  • buser:授權(quán)人用戶名

6.退出數(shù)據(jù)庫

命令:exit;

 

二、oracle(11g) 數(shù)據(jù)庫設(shè)置id自增功能(一共兩個步驟):

1.給要實現(xiàn)id自增的數(shù)據(jù)表創(chuàng)建一個序列

sql>createsequence "序列名稱"

incrementby1 -----每次遞增:1

startwith1 -----從哪開始:1

nomaxvalue----- 遞增最大值:沒有

minvalue1----- 遞增最小值:1

nocycle;-----不循環(huán)

2.給要實現(xiàn)id自增的數(shù)據(jù)表創(chuàng)建一個觸發(fā)器

sql>createorreplacetrigger "觸發(fā)器名稱"

beforeinserton "要實現(xiàn)id自增的數(shù)據(jù)表名稱"

foreachrow

begin

select "之前創(chuàng)建的序列名稱".nextvalinto:new."要實現(xiàn)id自增數(shù)據(jù)表中的id字段名" fromdual;

end;

這2個sql執(zhí)行完成后,您的數(shù)據(jù)表就可以實現(xiàn)id自增的效果了。

 

三、遇到oracle(11g) 數(shù)據(jù)表被上鎖,無法正常更新表數(shù)據(jù)怎么處理?

1.用sql命令行查詢目前所有被鎖的表:

select b.owner tableowner,b.object_name tablename,c.osuser lockby,c.username loginid, c.sid sid, c.serial# serial from v$locked_object a,dba_objects b,v$session c where b.object_id = a.object_id and a.session_id =c.sid;

2.通過sql命令解鎖指定進(jìn)程:

alter system kill session 'sid,serial' immediate;?

解鎖被鎖數(shù)據(jù)表后,數(shù)據(jù)表可恢復(fù)正常更新。

 

四、遇到oracle(11g) 表中數(shù)據(jù)查詢后發(fā)現(xiàn)中文字符亂碼怎么轉(zhuǎn)義?

<?php
//變量字符類型檢測;
$filetype = mb_detect_encoding($apppath , array('utf-8','gbk','latin1','big5')); 
//變量強行轉(zhuǎn)換utf-8
$apppath = mb_convert_encoding($apppath ,'utf-8' , $filetype);
?>

 

附:oracle 11g相關(guān)軟件下載:

oracle11g數(shù)據(jù)庫管理工具 64位:https://www.jb51.net/softs/443979.html

oracle官網(wǎng)https://www.oracle.com/index.html

本地下載:https://www.jb51.net/softs/443977.html

下一節(jié):12類oracle日期函數(shù)超全面總結(jié)

oracle數(shù)據(jù)庫

相關(guān)文章
學(xué)習(xí)SQLite