1.解壓sqoop-sqlserver-1.0.tar.gz,並改名(可以不改)
2.來到root使用者修改環境變數
su root
vi /etc/profile
增加環境變數export mssql_connector_home=/home/hadoop/mssql
3.來到mssql目錄啟動install.sh
4.測試查詢辦公電腦的sqlserver的所有資料庫(伺服器跟辦公電腦的策略不通,不同訪問)
5.所以直接訪問188.2.72.121(訪問成功)
6.匯入表
將excel資料匯入SqlServer資料庫
下面是我見到的最好的從excel匯入資料到sqlserver的最好方法,並給出了需要注意的地方。1 將excel裡的資料匯入已經存在的表中,命令如下 insert into t1 select from openrowset microsoft.jet.oledb.4.0 excel 5.0 hdr...
將Excel資料匯入到SQL Server資料庫中
1 接受資料匯入的表已經存在。insert into t1 select from openrowset microsoft.jet.oledb.4.0 excel 5.0 hdr yes database c test.xls sheet1 2 匯入資料並生成表。select into t1 fr...
將Excel資料匯入到SQL Server資料庫中
這個方法是到目前為止我見到最好的方法,還有幾個要注意的問題也在下面提到了哦!其中還涉及到要注意到地方都在下面累出來了 1 接受資料匯入的表已經存在。insert into t1 select from openrowset microsoft.jet.oledb.4.0 excel 5.0 hdr ...