日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Simple way to export SQL Server data to Text

系統 1998 0

Simple way to export SQL Server data to Text Files

?

























Simple way to export SQL Server data to Text Files
??? By: Ken Simmons?? |?? Read Comments (7)?? |?? Related Tips: More
Win an eBook - select from over 1,000 titles!

Problem
Since the transition from DTS to SSIS, I have found myself looking for alternative ways to do simple tasks such as exporting data from SQL Server into text files. SSIS is a far more powerful tool than DTS, but I generally try to stay away from it for simple operations.? With the combination of a few T-SQL commands this tip shows you a simple way to export data to text files.

Solution
One of the ways I have worked around this is by using bcp with xp_cmdshell. It's fast, easy and I can integrate it right into my code.

The first thing you have to do is make sure xp_cmdshell is enabled. You can do this in one of two ways.

1. You can use sp_configure and execute the following script.
EXEC master.dbo.sp_configure 'show advanced options', 1
RECONFIGURE
EXEC master.dbo.sp_configure 'xp_cmdshell', 1
RECONFIGURE

2. You can use the Surface Area Configuration Tool.

Select Surface Area Configuration for Features and check the Enable xp_cmdshell checkbox.

Now that you have xp_cmdshell enabled you are ready to export your files.

Here is a sample command that will export the results of the sysfiles table to a comma delimited file called bcptest.txt. Just copy and paste this into a query window and execute the query.
EXEC xp_cmdshell 'bcp "SELECT * FROM sysfiles" queryout "C:\bcptest.txt" -T -c -t,'

Note: BCP is a command line utility and xp_cmdshell is only required to use it within a SQL Batch.

This is the output for the above command when run in the "master" database.

The parameters that were used are:

??? The queryout option allows you to specify a query to export. This could be as simple as the query we have are as complicated as you want.? You can also create a view and select the data from a view.
??? The file name where the results will be stored is placed after the queryout option.
??? The -T parameter specifies that the bcp utility connects to SQL Server with a trusted connection using integrated security. You could use -P (password) and -U (user) if you want to use a SQL Server login.
??? The -c specifies the character dataype will be used for each field.
??? The -t parameter allows you to specify a field delimiter. The character after -t will be used to separate the data fields. If -t is removed, tab will be used as the default delimiter.

Another parameter you may need to use is -S to specify the server name.? If you have a named instance, you will need to use this parameter.? Here is an example connecting to server "DEVELOP" and instance "DEV1".
EXEC xp_cmdshell 'bcp "select name, type_desc, create_date from sys.objects" queryout "C:\bcptest2.txt" -T -SDEVELOP\DEV1 -c -t,'

Also be aware that the case of the parameter such as -t and-T makes a difference, so make sure you have correct case for the parameter you are using.? You can find more options for BCP here:? http://msdn.microsoft.com/en-us/library/ms162802.aspx

Next Steps

SQL Server DBA Tips SQL Server Developer Tips SQL Server Business Intelligence Tips SQL Server Tip Categories SQL Server Career Tips SQL Server Jobs SQL Server Tutorials SQL Server Webcasts SQL Server Whitepapers SQL Server Tools SQL Server Questions and Answers MSSQLTips Authors About MSSQLTips SQL Server User Groups SQL Server Events MSSLQTips Giveaways MSSQLTips Advertising Options

Simple way to export SQL Server data to Text Files


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 古丈县| 五河县| 古田县| 商南县| 韶山市| 铁岭县| 新沂市| 开鲁县| 仁怀市| 长武县| 长寿区| 汝阳县| 山西省| 英德市| 新巴尔虎右旗| 邓州市| 海淀区| 望江县| 保山市| 武汉市| 中阳县| 湘潭县| 怀化市| 香格里拉县| 偃师市| 贡嘎县| 六盘水市| 邵东县| 当阳市| 龙井市| 盐源县| 鄂尔多斯市| 盐亭县| 金坛市| 杭锦旗| 白水县| 原阳县| 共和县| 楚雄市| 丹东市| 比如县|