SQL語句匯入匯出Excel

2021-04-18 07:19:38 字數 1188 閱讀 1565

/******* 匯出到excel    exec master..xp_cmdshell 』bcp settledb.dbo.shanghu out c:/temp1.xls -c -q -s"gnetdata/gnetdata" -u"sa" -p""』   

/*********** 匯入excel    select *    from opendatasource( 』microsoft.jet.oledb.4.0』,    』data source="c:/test.xls";;user id=admin;;password=;;extended properties=excel 5.0』)...xactions   

/*動態檔名    declare @fn varchar(20),@s varchar(1000)    set @fn = 』c:/test.xls』    set @s =』』』microsoft.jet.oledb.4.0』』,    』』data source="』+@fn+』";;user id=admin;;password=;;extended properties=excel 5.0』』』    set @s = 』select * from opendatasource (』+@s+』)...sheet1$』    exec(@s)    */   

select cast(cast(科目編號 as numeric(10,2)) as nvarchar(255))+』 』 轉換後的別名    from opendatasource( 』microsoft.jet.oledb.4.0』,    』data source="c:/test.xls";;user id=admin;;password=;;extended properties=excel 5.0』)...xactions   

/********************** excel導到遠端sql    insert opendatasource(    』sqloledb』,    』data source=遠端ip;;user id=sa;;password=密碼』    ).庫名.dbo.表名 (列名1,列名2)    select 列名1,列名2    from opendatasource( 』microsoft.jet.oledb.4.0』,    』data source="c:/test.xls";;user id=admin;;password=;;extended properties=excel 5.0』)...xactions  

使用sql語句匯入 匯出 資料為Excel

匯出資料為excel exec master.xp cmdshell bcp fsebss.dbo.resource goodstype out c temp1.xls c q s yysoft 468er27v sql伺服器名稱 u sa 登入名 p 111111 密碼 從excel中匯入資料 i...

匯入匯出sql語句

expdp 匯出 create directory dpdata1 as d test dump 建立目錄 grant read,write on directory dpdata1 to scott 賦予許可權 select from dba directories 查詢目錄 要在c盤建立test...

sql匯入匯出 excel檔案

在企業管理器的匯入一步步操作或用 語句如下 從excel檔案中,匯入資料到sql資料庫中,很簡單,直接用下面的語句 在開始前需要啟用ad hoc distributed queries exec sp configure show advanced options 1 reconfigure exe...