SQL匯入資料

2021-07-28 03:30:37 字數 776 閱讀 9198

exec

sp_addlinkedserver

@server='

dbmes

', --鏈

接伺服器別名

@srvproduct=''

,@provider='

sqloledb',

@datasrc='

192.168.5.139'--

要訪問的的資料庫所在的伺服器的ip

goexec

sp_addlinkedsrvlogin

'dbmes

', --鏈

接伺服器別名

'false',

null,'

sa', --

要訪問的資料庫的使用者

'***x'--

要訪問的資料庫,使用者的密碼

go

insertintotablea

select*from

opendatasource('sqloledb','data source=127.0.0.1;user id=sa;password=sasasa').databasename.dbo.tableb

sqoop hdfs匯入sql資料

bin sqoop import connect jdbc mysql hadoop102 3306 company username root password 000000 table staff target dir user company delete target dir fields ...

資料匯入匯出SQL資料

bcp 可以實現資料的匯入匯出。exec master.xp cmdshell bcp test.dbo.p aspect in c temp1.txt c q s servername u sa p 匯入 exec master.xp cmdshell bcp test.dbo.p aspect ...

TXT匯入資料到SQL

using system using system.collections.generic using system.linq using system.text using system.data.sqlclient using system.io namespace 03匯入資料 using s...