摘要:
SQL中declare变量的作用域 declare变量的作用域是所在的批处理,if阻断不了它的作用域 阅读全文
摘要:
SQL SERVER 查看所有存储过程或视图里包含某个关键字的查询语句 select [name] ,[xtype] from sysobjects o ,syscomments s where o.id = s.id and text LIKE '关键字' order by name asc 阅读全文
摘要:
sp_executesql的用法 sp_executesql介绍和使用 示例 create proc [dbo].[usp_Test] @StartTime datetime ,@EndTime datetime ,@TestOutput int output as begin --定义动态SQL和 阅读全文
摘要:
请问能否检索所有存储过程中是否存在指定的关键字 select * from sysobjects o ,syscomments s where o.id = s.id and text like '%Key Word%' 阅读全文
摘要:
SQL FORMAT() 函数 阅读全文
摘要:
Windows 下 exe 服务注册到 service 服务中 添加服务 sc create "Service name" binpath="D:\vv_test.exe" start=auto 删除服务 sc delete "Service name" 开启服务 sc start "Service 阅读全文
摘要:
The transaction log for database 'DBName' is full due to 'LOG_BACKUP'. 查看log使用空间 dbcc sqlperf(logspace) 收缩日志 USE[master] ALTER DATABASE 数据库名 SET RECOV 阅读全文
摘要:
从此不再惧怕URI编码:JavaScript及C# URI编码详解 #encodeURI-->Uri.EscapeUriString 阅读全文
摘要:
替换SQL字段中的换行符,回车符 select char(9) --Tab select char(10) --换行符 select char(13) --回车键 阅读全文
摘要:
经典模式 .tox-tinymce-aux { z-index: 709826033 !important; } 内联模式 .tox-tinymce-aux { z-index: 709826033 !important; } .tox-tinymce-inline { z-index: 70982 阅读全文