Oracle連線遠端資料庫

2021-09-01 04:47:20 字數 2534 閱讀 4727

引用

配置連線遠端資料庫

orcl125 =

(description =

(address_list =

(address = (protocol = tcp)(host = 192.168.2.125)(port = 1521)) )

(connect_data =

(service_name = orcl) )

)2查詢序列

select seqname.currval from dual   查詢序列當前值

select seqname.nextval from dual   查詢序列下一值 3

ora----00947-----沒有足夠的值

如果你插入語句,選擇了四列,而你的值小於4列,就是......

4 關鍵字

select * from v$reserved_words;

5oracle中 查詢乙個表有多少列

select count(column_name) from user_tab_columns where table_name=upper('表名');

5 oracle 刪除乙個使用者

drop user username cascade;

6 切換賬戶

su oracle : 只切換使用者,而不切換環境;就是說切到oracle使用者後,使用的依舊是root的環境。

su - oracle :同時切換使用者和環境

su   oracle:不會執行oracle主目錄中的profile指令碼  

su   -oracle:會執行oracle主目錄中的profile指令碼 

7  oracle 查詢有哪些使用者表

select * from user_tables

8 oracle 建使用者操作

1 建立表空間

create tablespace test2

datafile 'c:\test2.dbf' size 50m

default storage(

initial 500k

next 500k

minextents 1

maxextents unlimited

pctincrease 0 );

2 建立使用者

create user pige identified by pige default tablespace test1;

create user cs identified by jabsco default tablespace test1;

create user upgrade identified by abc default tablespace test2;

3 授權

grant resource,connect,dba to pige;

grant resource,connect,dba to cs;

grant resource,connect,dba to upgrade;

4 匯入檔案

imp pige/pige@orcl full=y file=d:\file\myeclipse\operationplatform\database\cs20120222.dmp

ignore=y

imp cs/jabsco@orcl126 full=y file=e:\文件\operateform.dmp

ignore=y

5  exp pige/pige@orcl file=d:\pipi.dmp full=y

如何檢視有哪些使用者的命令  授權命令

exp pige/pige@orcl file=d:\pipi1.dmp owner=(pige)

connect 是個角色,本角色包含 create session 

用系統使用者執行下面的語句,就可以看出這兩個角色間許可權的差別了。

select

grantee,privilege

from

dba_sys_privs

where

grantee='

resource'or

grantee

like

'connect%'

connection,就是一座連線河兩岸的橋。

session,就是班車。

你要過河,必須首先得有橋。有了橋,你還得買車票上班車,讓班車開過去。

對了,該橋只允許有註冊過的班車通過。。不准步行。。另外,你要游泳,坐船做飛機都不行。。

建立表空間

create tablespace ts_drp datafile 'd:\***' size 100m;

將表空間分配給使用者

alter user drp default tablespace ts_drp;

給使用者授權

grant create session,create table,create view,unlimited tablespace to drtp;

以drp使用者登入,匯入指令碼

conn drp/drp @d:\share\05_drp\sql\xx.sql

oracle連線遠端資料庫

d oracle product 10.2.0 db 2 network admin 6 修改oracle安裝路徑下d oracle product 10.2.0 db 2 network admin tnsnames.ora的tnsnames.ora檔案,新增 description addres...

遠端連線oracle資料庫

遠端連線oracle資料庫 1.需要乙個tns檔案 2.找到本地伺服器客戶端的tns檔案,然後將要連線的服務如這樣兒式的 orcl description address protocol tcp host zhaoyun pc port 1521 connect data server dedic...

遠端連線Oracle資料庫

ylbtech oracle 遠端連線oracle資料庫 所謂遠端連線oracle資料庫,是指oracle資料庫伺服器和oracle客戶端分別安裝在2臺電腦上,我們使用oracle客戶端來連線在另一台電腦上的oracle資料庫伺服器。當我們進行這種遠端訪問的時候,必須在安裝有oracle客戶端的這台...