從外部資料庫取資料的四種方式

2021-05-27 06:49:24 字數 784 閱讀 7996

/*----リンクサーバーは必要です,常用方式*/

/*據說openquery速度比較快*/

select *

from [link名].db.schema.table

select *

from openquery([link名], 'select * from db.schema.table')

/*----リンクサーバーは必要ではない,這種方式不可取*/

/*:資料庫ip:使用者名稱:密碼 */

select *

from opendatasource('sqloledb','data source=;user id=;password=').db.schema.table

/*:資料庫ip:使用者名稱:密碼 */

select *

from openrowset('sqloledb','';'';'','select * from db.schema.table')

sp_configure 'show advanced options', 1

reconfigure

gosp_configure 'ad hoc distributed queries', 1 -- 啟用即席查詢

reconfigure

gosp_configure 'show advanced options', 0

reconfigure

go

mysql的四種連線方式 資料庫的四種連線方式

a表 b表 a.id同parent id 存在關係 1 內連線 相當於select a.b.from a,b where a.id b.id select a.b.from a inner join b on a.id b.parent id 結果是 2 左連線 左表的挨個資訊去查詢,查不到則將右邊...

Oracle資料庫的四種啟動方式

1 startup nomount 非安裝啟動 這種方式啟動下可執行 重建控制檔案 重建資料庫 啟動instance,即啟動sga和後台程序,這種啟動只需要init.ora檔案。2 startup mount dbname 安裝啟動 這種方式啟動下可執行 資料庫日誌歸檔 資料庫恢復 重新命名一些資料...

資料庫 四種正規化

部分函式依賴 設x,y是關係r的兩個屬性集合,存在x y,若x 是x的真子集,存在x y,則稱y部分函式依賴於x。舉個例子 學生基本資訊表r中 學號,身份證號,姓名 當然學號屬性取值是唯一的,在r關係中,學號,身份證號 姓名 學號 姓名 身份證號 姓名 所以姓名部分函式依賴與 學號,身份證號 完全函...