摘要:
众所周知随着表的数据量不断增长,会产生很多索引的碎片。这时候需要重建索引来提高查询性能。 USE [DBName] DECLARE @name varchar(100) DECLARE authors_cursor CURSOR FOR Select [name] from sysobjects w 阅读全文
摘要:
using System; using System.Diagnostics; using Microsoft.International.Converters.PinYinConverter; namespace TestPinYin { namespace NPinyinTest { class 阅读全文
摘要:
-- 创建临时表存储查询出的数据 drop temporary table if exists childtable; create temporary table childtable (select * from tb_child a where (a.patriarch_id,a.studen 阅读全文
摘要:
-- UpdateUserData是同步数据需要具体执行的步骤,AsyncUserData是控制UpdateUserData的条件。 DROP PROCEDURE IF EXISTS UpdateUserData; DROP PROCEDURE IF EXISTS AsyncUserData; DE 阅读全文
摘要:
//首先startup注入 services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo() { Title = "App", Version = "v1" }); var xmlF 阅读全文