真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

BCP數(shù)據(jù)的導(dǎo)入和導(dǎo)出

BCP 命令的參數(shù)很多,使用 -h 查看幫助信息,注意:參數(shù)是區(qū)分大小寫的

公司主營業(yè)務(wù):成都網(wǎng)站制作、做網(wǎng)站、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)公司是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)公司推出銀川免費(fèi)做網(wǎng)站回饋大家。

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

使用BCP命令導(dǎo)出和導(dǎo)入數(shù)據(jù)常用的參數(shù)如下

bcp {[[database_name.][schema_name]].{table_name | view_name} | "query"}

{in | out | queryout}  數(shù)據(jù)文件

[-c 字符類型]  | [-w 寬字符類型]
[-t 字段終止符]    [-r 行終止符]
[-i 輸入文件]       [-o 輸出文件]        
[-S 服務(wù)器名稱]   [-U 用戶名]           [-P 密碼]
[-T 可信連接]      [-d 數(shù)據(jù)庫名稱]
[-k 保留NULL值]

-c 使用char類型做為存儲類型,沒有前綴且以"\t"做為字段分割符,以"\n"做為行分割符。

-w 使用Unicode字符集拷貝數(shù)據(jù),在數(shù)據(jù)庫中,需要將Table Column設(shè)置為 nchar或nvarchar存儲類型。如果 -c 和 -w 同時(shí)指定,那么 -w 將覆蓋 -c。

-t field_term 指定column分割符,默認(rèn)是"\t"。

-r row_term 指定row分割符,默認(rèn)是"\n"。

-S server_name[ \instance_name] 指定要連接的SQL Server服務(wù)器的實(shí)例,如果未指定此選項(xiàng),BCP連接本機(jī)的SQL Server默認(rèn)實(shí)例。如果要連接某臺機(jī)器上的默認(rèn)實(shí)例,只需要指定機(jī)器名即可。

-U login_id 指定連接SQL Sever的用戶名。

-P password 指定連接SQL Server的用戶名密碼。

-T 指定BCP使用信任連接登錄SQL Server。如果未指定-T,必須指定-U和-P。

-d 指定數(shù)據(jù)庫名稱

-k 指定空列使用null值插入,而不是這列的默認(rèn)值。

 

一,使用bcp 將整個(gè)table中的數(shù)據(jù)導(dǎo)出到txt或csv文檔中

bcp db_study.dbo.sales out D:\test.txt S . U sa P sa t  S . U sa P sa t  w

二,使用 query statement 將查詢結(jié)果導(dǎo)出到txt 或 csv文檔中

1,配置SQL Server,允許運(yùn)行 xp_cmdshell 命令

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

-- 允許配置高級選項(xiàng)  EXEC master.sys.sp_configure 'show advanced options', 1  -- 重新配置  RECONFIGURE  -- 啟用xp_cmdshell  EXEC master.sys.sp_configure 'xp_cmdshell', 1  --重新配置  RECONFIGURE

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

否則,SQL Server 會拋出錯(cuò)誤信息

SQL Server 阻止了對組件“xp_cmdshell”的 過程“sys.xp_cmdshell”的訪問,因?yàn)榇私M件已作為此服務(wù)器安全配置的一部分而被關(guān)閉。系統(tǒng)管理員可以通過使用 sp_configure 啟用“xp_cmdshell”。有關(guān)啟用“xp_cmdshell”的詳細(xì)信息,請搜索 SQL Server 聯(lián)機(jī)叢書中的“xp_cmdshell”。

啟用“xp_cmdshell” 被認(rèn)為是不安全的,在使用完 “xp_cmdshell” 命令之后,使用以下script將其禁用。 

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

-- 允許配置高級選項(xiàng)  EXEC master.sys.sp_configure 'show advanced options', 1  -- 重新配置  RECONFIGURE  -- 禁用xp_cmdshell  EXEC master.sys.sp_configure 'xp_cmdshell', 0--重新配置  RECONFIGURE

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

2,使用  xp_cmdshell 命令運(yùn)行BCP命令,將數(shù)據(jù)導(dǎo)出

EXEC master..xp_cmdshell 'bcp "SELECT [Store] ,[Item] ,[Color] ,[Quantity] FROM [db_study].[dbo].[Inventory]" queryout D:\test.txt -S . -U sa -P sa -t "\t" -w 'EXEC master..xp_cmdshell 'bcp "SELECT [Store] ,[Item] ,[Color] ,[Quantity] FROM [db_study].[dbo].[Inventory]" queryout D:\test.csv -S . -U sa -P sa -t "," -w '

3,使用  xp_cmdshell 命令,也可以將整個(gè)Table的數(shù)據(jù)導(dǎo)出

EXEC master..xp_cmdshell 'bcp [db_study].[dbo].[Inventory] out D:\test.txt -S . -U sa -P sa -t "\t" -w 'EXEC master..xp_cmdshell 'bcp [db_study].[dbo].[Inventory] out D:\test.csv -S . -U sa -P sa -t "," -w '


三,將數(shù)據(jù)導(dǎo)入到SQL Server

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

CREATE TABLE [dbo].[Inventory_LoadIn](    [Store] [nvarchar](2) NULL,    [Item] [varchar](20) NULL,    [Color] [varchar](10) NULL,    [Quantity] [int] NULL)

BCP 數(shù)據(jù)的導(dǎo)入和導(dǎo)出

1,使用BCP,將txt文檔中的數(shù)據(jù)導(dǎo)入到table [dbo].[Inventory_LoadIn] 中

bcp [db_study].[dbo].[Inventory_LoadIn] in D:\test.txt -S . -U sa -P sa -t "\t" -w 

bcp [db_study].[dbo].[Inventory_LoadIn] in D:\test.csv -S . -U sa -P sa -t "," -w

2,使用xp_cmdshell 命令執(zhí)行bcp,將數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫table中

EXEC master..xp_cmdshell 'bcp [db_study].[dbo].[Inventory_LoadIn] in D:\test.txt -S . -U sa -P sa -t "\t" -w 'EXEC master..xp_cmdshell 'bcp [db_study].[dbo].[Inventory_LoadIn] in D:\test.csv -S . -U sa -P sa -t "," -w '

網(wǎng)站欄目:BCP數(shù)據(jù)的導(dǎo)入和導(dǎo)出
網(wǎng)站URL:http://weahome.cn/article/jspgid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部