摘要:
SQLServer数据批量导入的几种方式 说到SQLServer 的数据批量导入,下面用常用的几种方式做下对比,后面详细介绍每种方式如何使用(本文的代码使用语言c ) | 导入方式 | 是否需写代码 | 导入过程能否对数据加工 | 插入数据的速度 | 多表数据导入 | 是否必需写SQL语句 | | 阅读全文
摘要:
``` c# using System; using System.Data; using System.Configuration; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.... 阅读全文
摘要:
``` c# using System; using System.Management; using System.Text.RegularExpressions; using System.Collections.Generic; namespace FstScandTest { /// /// 即插即用设备信息结构 /// public struct P... 阅读全文
摘要:
``` c#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices; namespace FormWindow... 阅读全文
摘要:
创建存储过程sp_who_lock,查询死锁的进程 create procedure sp_who_lock WITH ENCRYPTION as begin declare @spid int,@bl int, @intTransactionCountOnEntry int, @intRowcou 阅读全文
摘要:
<!doctype html>hMailServer 使用总结 hMailServer管理员设置使用总结 背景 由于公司企业邮箱需要监视到与外部邮箱的往来情况,以及对用户邮箱空间的爆满预警,经研究需要通过设置邮箱规则和脚本事件来实现这些需求。本文主要介绍了在hMailServer规则设置,脚本事件编 阅读全文
摘要:
公司企业邮箱需要使用hMailServer邮件服务,因需求需要有用户的添加、删除、密码重置接口,参考网上一些大神们的资料后,自己写了一个C#的api类 参考网上的一些资料: 源码地址 https://github.com/hmailserver/hmailserver/ https://blog.c 阅读全文