記錄一次Oracle建立DBLink踩到小坑

2022-08-21 15:27:10 字數 878 閱讀 3294

1、查詢當前是否具有建立dblink的許可權:

如果沒有許可權,先授權:

grant create database link,drop database link to scott;

2、查詢當前已存在dblink

3、建立dblink

create database link dblink_20191015

connect to scott identified by "123456"

using '(description =(address_list =(address =(protocol = tcp)(host = 127.0.0.1)(port = 1521)))(connect_data =(service_name = orcl)))';

dblink_20191015:dblink名稱

scott:連線使用者

「123456」:密碼(注:如果是數字開頭,必須要用雙引號引起來)

4、查詢資料

select * from employee@dblink_20191015

5、刪除dblink

drop database link dblink_20191015;(其中public是公共的)

記錄一次oracle使用記錄

使用oracle資料庫的專案到我這邊,需要修改,咱雖然 學過 oracle,但那畢竟已經過去了。哈哈。使用database configuration assistant 建立資料庫,建立快完的時候,說我沒有監聽啥的,然後 通過 net manager 建立了,qizhong1 其中選中的那個就是建...

記錄一次Vue Electron 建立流程

首先自行安裝nodejs和npm npm config set registry npm config set electron mirrornpm install g vue clivue create ldgtool選擇vue2 其中ldgtool為專案名稱,專案名稱不要有中文 cd到專案資料夾...

記錄一次oracle批量插入操作

begin insert into t police person id,name,birthday,cardno,departmentid,policeid,callgroup,callno,callgpsid,telephone,position,mobilephone,address,emai...