热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SQLSERVER导入\导出sql文件

1.EXECmaster..xp_cmdshellbcptest.dbo.P_Aspectinc:\temp1.txt-c-q-Sservername-Usa-P导入

1.EXEC master..xp_cmdshell 'bcp test.dbo.P_Aspect in c:\temp1.txt -c -q -S"servername" -U"sa" -P""'
//导入 

EXEC master..xp_cmdshell 'bcp test.dbo.P_Aspect out c:\temp1.txt -c -q -S"servername" -U"sa" -P""'
//导出

在导出时如果报错:SQL Server阻止了对组件‘xp_cmdshell’的过程‘sys.xp_cmdshell’的访问
解决办法:
要想以文本的方式输出查询结果,首先需要:
通过查询分析器,选择Master数据库,然后执行以下SQL内容:
sp_configure 'show advanced options',1      --1代表允许,0代表阻止
reconfigure
go
sp_configure 'xp_cmdshell',1
reconfigure
go

然后再执行上面的导出语句

2.执行sql文件
C:\>sqlcmd -i  test.sql -d databasename -s 127.0.0.1
注意:这个test.sql文件要放到对应的盘符中去(这里就是放入C盘)


推荐阅读
author-avatar
醉苏芳华
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有