Database
bluestorm2007
这个作者很懒,什么都没留下…
展开
-
SQL Server中Replace()函数的使用
将值为“公共部门”的记录改为“公共事业”。 update enum_string set enum_value = Replace(enum_value, '公共部门', '公共事业') where enum_value like '公共部门%'2010-03-12 14:58:06 · 234 阅读 · 0 评论 -
在SQL Server中使用SQL命令删除文件
exec master.dbo.xp_cmdshell 'del D:\test.txt' 在SQL Server中,这个语句可以用来删除D盘下的test.txt文件。 如果'xp_cmdshell'没有启用,可以使用下列语句启用'xp_cmdshell': exec sp_configure 'show advanced options', 1; reconfigure; e...2009-12-08 14:58:25 · 1174 阅读 · 0 评论