上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: SQL FORMAT() 函数 阅读全文
posted @ 2021-12-24 16:38 vvull 阅读(50) 评论(0) 推荐(0) 编辑
摘要: Windows 下 exe 服务注册到 service 服务中 添加服务 sc create "Service name" binpath="D:\vv_test.exe" start=auto 删除服务 sc delete "Service name" 开启服务 sc start "Service 阅读全文
posted @ 2021-12-13 16:24 vvull 阅读(47) 评论(0) 推荐(0) 编辑
摘要: The transaction log for database 'DBName' is full due to 'LOG_BACKUP'. 查看log使用空间 dbcc sqlperf(logspace) 收缩日志 USE[master] ALTER DATABASE 数据库名 SET RECOV 阅读全文
posted @ 2021-11-04 16:09 vvull 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 从此不再惧怕URI编码:JavaScript及C# URI编码详解 #encodeURI-->Uri.EscapeUriString 阅读全文
posted @ 2021-10-19 11:40 vvull 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 替换SQL字段中的换行符,回车符 select char(9) --Tab select char(10) --换行符 select char(13) --回车键 阅读全文
posted @ 2021-10-14 17:06 vvull 阅读(2856) 评论(0) 推荐(0) 编辑
摘要: 经典模式 .tox-tinymce-aux { z-index: 709826033 !important; } 内联模式 .tox-tinymce-aux { z-index: 709826033 !important; } .tox-tinymce-inline { z-index: 70982 阅读全文
posted @ 2021-09-29 10:32 vvull 阅读(910) 评论(0) 推荐(0) 编辑
摘要: 创建Function Create FUNCTION [dbo].[SplitStr] (@List nvarchar(max) ,@Delim varchar(255)) RETURNS TABLE AS RETURN ( SELECT [Value] FROM ( SELECT [Value] 阅读全文
posted @ 2021-09-17 08:45 vvull 阅读(37) 评论(0) 推荐(0) 编辑
摘要: SQL Server中调用C#类中的方法实例(使用.NET程序集) SQL Server: Could not find type in the assembly 服务器可能资源不足,或者不信任该程序集,因为它的 PERMISSION_SET 设置为 EXTERNAL_ACCESS 或 UNSAFE 阅读全文
posted @ 2021-09-15 13:58 vvull 阅读(291) 评论(0) 推荐(0) 编辑
摘要: declare @allName varchar(max) = '' select @allName = @allName + [Name] from TB_User select @allName 阅读全文
posted @ 2021-09-07 15:05 vvull 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Flex布局 阅读全文
posted @ 2021-09-06 10:06 vvull 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页