DB2跨庫訪問表

來源:互聯網
上載者:User

DB2跨庫訪問表

今天和大家聊聊DB2跨資料庫訪問表是如何?的?因為自己花了很長時間,才測試成功,所以決定和大家分享一下!

好了,廢話不多說了!我們言歸正傳,首先你要安裝了DB2資料庫,然後在開始菜單中,找到如下位置:

開啟之後,輸入

db2

進入db2編輯模式,如下所示:

下面的命令順序執行:

update dbm cfg using Federated YES; // 開啟資料庫聯集查詢

db2stop force;

db2start; // 重啟資料庫方可生效

接下來,需要串連到具體的資料庫,舉個例子,假如有A庫和B庫,現在你要在A庫中訪問B庫的表,那麼這裡串連的就是A庫了

connect to [資料庫名稱] user [使用者名稱] using [密碼]

此時的[資料庫名稱]就是A庫了。

順序執行如下命令:

create wrapper drda; // 建立DRDA封裝器(WRAPPER)

create server [資料庫伺服器別名] type db2/AIX version 9 wrapper drda authorization ["使用者名稱"] password ["密碼"] options(dbname ['資料庫名稱']); // 建立伺服器(SERVER)

這裡,我們將資料庫伺服器別名命名為:B,後邊會用到的。

create user mapping for ["使用者名稱"] SERVER ["資料庫伺服器別名"] OPTIONS (REMOTE_AUTHID ['使用者名稱'] , REMOTE_PASSWORD ['密碼']); // 建立使用者映射

此處的,資料庫伺服器別名應為:B,與上文對應。

create nickname NK_Student for 資料庫伺服器別名.使用者名稱.Student; // 建立表的暱稱

這裡的資料庫伺服器別名與上對應為:B。

至此,你就可以像這樣在A庫中訪問B庫中的Student表了:select * from NK_Student。

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.