精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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

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

 

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

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

命令:su - oracle

命令:sqlplus / as sysdba

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

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

啟動(dòng)數(shù)據(jù)庫(kù):startup

啟動(dòng)監(jiān)聽(tīng):lsnrctl start

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

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

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

【說(shuō)明】:

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

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

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

【說(shuō)明】:

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

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

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

【說(shuō)明】:

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

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

grant all privileges to buser;

【說(shuō)明】:

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

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

命令:exit;

 

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

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

sql>createsequence "序列名稱(chēng)"

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

startwith1 -----從哪開(kāi)始:1

nomaxvalue----- 遞增最大值:沒(méi)有

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

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

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

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

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

foreachrow

begin

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

end;

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

 

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

1.用sql命令行查詢(xún)目前所有被鎖的表:

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.通過(guò)sql命令解鎖指定進(jìn)程:

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

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

 

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

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

 

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

oracle11g數(shù)據(jù)庫(kù)管理工具 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類(lèi)oracle日期函數(shù)超全面總結(jié)

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

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