SQL xp_cmdshell
程序员文章站
2022-05-01 12:53:28
...
GO ---打开xp_cmdshell EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE GO ---创建文件夹 declare @shellCommand nvarchar(1024) Set @shellCommand='"mkdir C:\sqlcreatefold"' exec xp_cmdshell @shellCommand GO --复制文件--准备一个空的文本文件在C盘 declare @shellCommand nvarchar(1024) Set @shellCommand='Copy "C:\1.txt'+'" "C:\sqlcreatefold\1.txt'+'"' exec xp_cmdshell @shellCommand GO --导出数据到TXT Create table ##temp(line varchar(100)) Insert into ##temp(line)values('asdfghjklasdfghjkl') Insert into ##temp(line)values('一二三四五六七') declare @shellCommand nvarchar(1024) Set @shellCommand='bcp "Select line From ##temp" queryout C:\sqlcreatefold\1.txt'+' -S"." -U"sa" -P"123456" -c -T' exec xp_cmdshell @shellCommand drop table ##temp GO --读取TXT文件 Create table ##temp(line varchar(100)) exec(N'bulk insert ##temp from N''C:\sqlcreatefold\1.txt''') select * From ##temp drop table ##temp GO --调用RAR--压缩文件夹 declare @shellCommand nvarchar(1024) declare @WinRar varchar(128) set @WinRar='C:\Program Files\WinRAR\WinRAR.exe' Set @shellCommand='""'+@WinRar+'" a -ep1 -afzip -df -ibck C:\sqlcreatefold\Package.zip C:\sqlcreatefold"' exec xp_cmdshell @shellCommand set @shellCommand='" dir C:\sqlcreatefold"' exec xp_cmdshell @shellCommand
推荐阅读
-
网站漏洞检测 泛微OA系统sql注入攻击检测与修复
-
SQL Server数据库中的表和视图怎么导出?
-
windows mobile+webservice+sql server 2005配置方法
-
将.sql文件的数据库结构导入powerdesigner 的方法
-
C#使用SqlConnection连接到SQL Server的代码示例
-
asp.net 分页sql语句(结合aspnetpager)
-
asp.net Parameters.AddWithValue方法在SQL语句的 Where 字句中的用法
-
Oracle中简单查询、限定查询、数据排序SQL语句范例和详细注解
-
Oracle实现动态SQL的拼装要领
-
SQL SERVER 2014 安装图解教程(含SQL SERVER 2014下载)