上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: SQL Server 2005 新增 cross apply 和 outer apply 联接语句,增加这两个东东有啥作用呢? 我们知道有个 SQL Server 2000 中有个 cross join 是用于交叉联接的。实际上增加 cross apply 和 outer apply 是用于交叉联接 阅读全文
posted @ 2017-07-12 11:37 chengeng 阅读(553) 评论(0) 推荐(0)
摘要: 1、装完读取插件才可以对EXCEL读取 Excel 2010 读取数据插件 https://www.microsoft.com/zh-CN/download/details.aspx?id=13255 2、ExcelHelper,需要引用Excel COM组件 using System;using 阅读全文
posted @ 2017-06-18 23:20 chengeng 阅读(204) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web; using System.Text;using System.IO;using System.Drawing;using System. 阅读全文
posted @ 2017-04-11 11:10 chengeng 阅读(339) 评论(0) 推荐(0)
摘要: -- 全数据库索引重建 DECLARE @name varchar(100)DECLARE authors_cursor CURSOR FOR Select [name] from sysobjects where xtype='u' order by idOPEN authors_cursorFE 阅读全文
posted @ 2017-02-21 10:03 chengeng 阅读(139) 评论(0) 推荐(0)
摘要: /*********完整备份作业*********/ –完整备份,每周一次 USE Master GO declare @str varchar(100) set @str='D:\DBtext\jgj\DBABak\FullBak'+replace(replace(replace(convert( 阅读全文
posted @ 2017-01-11 09:24 chengeng 阅读(1923) 评论(0) 推荐(0)
摘要: 1、C#调用斑马打印机打印条码标签(支持COM、LPT、USB、TCP连接方式和ZPL、EPL、CPCL指令) http://blog.csdn.net/ldljlq/article/details/7338772 2、C# 代码 阅读全文
posted @ 2016-12-06 08:51 chengeng 阅读(3800) 评论(0) 推荐(0)
摘要: 个人备忘: 1、装驱动,装驱动要装对应的ZPL或者EPL版本,目前发现GK888T无需选择,直接装GK888T即可,其他机型未知。 2、标签设计,文本部分用SimSun-ExtB字体,变量内容部分用ZEBAR 0字体,ZEBAR 0 中的0表示字体大小。 3、把命令打印到记事本。 /* ^XA ^X 阅读全文
posted @ 2016-12-05 14:16 chengeng 阅读(7524) 评论(0) 推荐(0)
摘要: 根据微软官方的解释,WCF(之前的版本名为“Indigo”)是使用托管代码建立和运行面向服务(Service Oriented)应用程序的统一框架。它使得开发者能够建立一个跨平台的安全、可信赖、事务性的解决方案,且能与已有系统兼容协作。 云平台框架。 上次在作业的时候遇到了一件蛋疼的事情。 根据要求 阅读全文
posted @ 2016-10-22 14:16 chengeng 阅读(418) 评论(0) 推荐(0)
摘要: if object_id('tb')is not null drop table tbGocreate table tb(姓名 varchar(10),课程 varchar(10),分数 int)insert into tb values('张三','语文',74)insert into tb va 阅读全文
posted @ 2016-10-19 08:47 chengeng 阅读(29189) 评论(3) 推荐(0)
摘要: 1.查看SQL语句IO消耗 set statistics io on sql 语句 set statistics io off 2.查看SQL语句时间消耗 set statistics time on sql 语句set statistics time off 3.查看SQL语句索引消耗 set s 阅读全文
posted @ 2016-09-27 11:00 chengeng 阅读(338) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页