zoukankan      html  css  js  c++  java
  • 大容量数据导入导出工具BCP

    bcp工具的参数帮忙请查看联机丛书.
    主要讲四个示例的使用:导出(out),导入(in),查询导出(queryout),导出格式化(-f)文件。

    示例1:导出示例数据库AdventureWorks整个表currency 或视图,使用SQL连接 bcp AdventureWorks.sales.currency out c:currency1.txt  -c  -U"sa" -P"password" --使用SQL连接示例2:同上,使用信任连接
    bcp AdventureWorks.sales.currency out c:currency1.txt   -c  -T --使用信任连接示例3:导入数据
    bcp AdventureWorks.sales.currency1 in c:currency1.txt   -c  -T或导入指定数据行10-13行
    bcp AdventureWorks.sales.currency1 in c:currency1.txt   -c -F 10  -L 13 -T
    示例4:使用查询导出
    bcp "SELECT TOP 20 * FROM AdventureWorks.sales.currency" queryout c:currency2.txt  -F 10  -L 13  -c  -U"sa" -P"password" -S"IP"或
    bcp "SELECT TOP 4 * FROM AdventureWorks.sales.currency where id not in (select top 9 id FROM AdventureWorks.sales.currency "  queryout c:currency2.txt  -c  -U"sa" -P"password" -S"IP"
    示例5:导出格式化文件:
    EXEC master..xp_cmdshell 'bcp AdventureWorks.sales.currency format nul -f c:currency_format1.fmt  -c -T
    最后:以上是使用客户端的BCP工具,也可以从客户端使用服务器端的BCP
    EXEC master..xp_cmdshell 'bcp "SELECT TOP 20 * FROM AdventureWorks.sales.currency" queryout c:cur.txt  -F 10  -L 13  -c  -T


    本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/zhou__zhou/archive/2007/08/10/1736310.aspx

  • 相关阅读:
    JavaScript打印99乘法表
    Python列表推导式玩法
    Python错误重试方法
    pandas + jupyter进行数据处理
    新手小白的爬虫神器-无代码高效爬取数据
    Adb连接模拟器出现版本错误
    Python发送多人邮件报错
    Django入门
    git clone 下载速度解决办法
    Python实现自动刷抖音
  • 原文地址:https://www.cnblogs.com/0000/p/1516286.html
Copyright © 2011-2022 走看看