摘要:
NGINX于1.9.0版本开始支持stream模块来代理tcp连接。在Centos操作系统若前期以YUM方式安装了nginx,后期想要添加stream模块。 1.首先需要检查nginx版本是否支持这一特性,若已支持可直接安装模块,否则重装。2.其次按照如下步骤(部分步骤仅做参考,未必需要执行)2.1 阅读全文
摘要:
SELECT request_session_id as spid, OBJECT_NAME(resource_associated_entity_id) AS tableNameFROM sys.dm_tran_locks WHERE resource_type = 'OBJECT' DECLAR 阅读全文
摘要:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i IISREST 阅读全文
摘要:
SELECT * FROM sys.servers 阅读全文
摘要:
https://github.com/hey-hoho/ScheduleMasterCore/tree/master 阅读全文
摘要:
use <database_name> select top 500 * into #tb from Sys_LoggerOperate where CreateTime > dateadd(day, -1, getdate()) order by time desc select action 接 阅读全文
摘要:
bp_sys_DatabaseBackup USE [database_name] GO /****** Object: StoredProcedure [dbo].[bp_sys_DatabaseBackup] Script Date: 08/12/2024 16:21:38 ******/ SE 阅读全文
摘要:
https://blog.csdn.net/shellching/article/details/126546114 regedit - 注册表编辑器 - 计算机 - HKEY_LOCAL_MACHINE - SYSTEM - CurrentControlSet - services - Tcpip 阅读全文
摘要:
https://www.cnblogs.com/starm/archive/2010/06/24/1764435.html 阅读全文
摘要:
USE <database_name>GO -- Truncate the log by changing the database recovery model to SIMPLE.ALTER DATABASE <database_name>SET RECOVERY SIMPLE;GO-- Shr 阅读全文