上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 81 下一页
摘要: 一.简要介绍:系统存储过程sp_MSforeachtable和sp_MSforeachdb,是微软提供的两个不公开的存储过程。从mssql6.5开始,存放在SQL Server的MASTER数据库中。可以用来对某个数据库的所有表或某个SQL服务器上的所有数据库进行管理,下面将对此进行详细介绍。作为数据库管理者或开发者等经常会检查整个数据库或用户表。如:检查整个数据库的容量,看指定数据库所有用户表的容量,所有表的记录数等等,我们一般处理这样的问题都是通过游标来达到要求。如果我们用sp_MSforeachtable就可以非常方便的达到相同的目的,如:sql查询所有用户表的列表,详细信息,如:记录数 阅读全文
posted @ 2012-11-12 21:16 星火卓越 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 本文分为以下六个部分:基础部分提升部分技巧部分数据开发-经典部分SQL Server基本函数部分常识部分一、基础1、说明:创建数据库CREATE DATABASE database-name 2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testBack', 'c:\mssql7backup\MyNwind_1.dat'--- 开始备份BACKUP DATABASE pubs TO t 阅读全文
posted @ 2012-11-12 21:11 星火卓越 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 背景在web2.0中,页面弹窗是一个很常见的交互方式,这样既可以避免不必要的页面跳转,也可以改进界面的布局和可交互性。但是,浏览器原生的弹窗函数(alert, confirm, prompt)有着很大的局限性,主要是它们的展现UI一来很不美观,二来也不够灵活,因此,我们经常需要自行定义弹窗函数。当我们要实现一个模式弹窗时(模式弹窗,即是说出现弹窗时,页面其它地方不可点击),通常的做法是用一个div将整个页面窗口遮挡住。实现下面,我们一步步地实现一种较为简洁有效的遮罩层:Step 1:首先我们要考虑定义一个遮挡浏览器窗口的div,考虑下面一段html+css代码:<div unselect 阅读全文
posted @ 2012-11-12 12:41 星火卓越 阅读(478) 评论(0) 推荐(0) 编辑
摘要: create function fun(@child varchar(20)) returns varchar(20) as begin declare @s varchar(20) select @s= ' ' while exists(select 1 from test where id=@child and parentid <> 0) begin select @child=parentid from test where id=@child select @s=@s+ '- '+cName from test where @child=p 阅读全文
posted @ 2012-11-11 22:19 星火卓越 阅读(578) 评论(0) 推荐(0) 编辑
摘要: select len('中英文abc') ---结果是6select datalength('中英文abc') ---结果是9select cast('中英文abc' as char(5)) ---结果是“中英”,会自动避免半个汉字出现select cast('中英文abc' as char(7)) ---结果是“中英文a”,可有效的截取中英文 阅读全文
posted @ 2012-11-11 14:01 星火卓越 阅读(395) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Data;using System.IO;using System.Runtime.Serialization;using System.Runtime.Serialization.Formatters.Binary;namespace BaseClientClass{ public class XMLClass { /**/ /// <summary> /// 此方法实现对Dataset... 阅读全文
posted @ 2012-11-06 21:54 星火卓越 阅读(1734) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.Data;using System.Data.Common;using System.Web.Script.Serialization;using System.IO;using System.Security.Cryptography;namespace Pub.Class{ public static class EncryptExtensions ... 阅读全文
posted @ 2012-11-06 21:42 星火卓越 阅读(629) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Text;using System.IO;using System.Security;using System.Security.Cryptography;namespace Tgnet.Base.Security{ /**//// <summary> /// 有关Base64编码算法的相关操作 /// </summary> /// <example>如下的示例为对一个字符串进行Base64编码,并返回编码后的字符串: /// <code> /// public string ToBase64. 阅读全文
posted @ 2012-11-06 21:39 星火卓越 阅读(3375) 评论(0) 推荐(0) 编辑
摘要: 1 、方法一 (不可逆加密) public string EncryptPassword( string PasswordString, string PasswordFormat ) { string encryptPassword = null ; if (PasswordFormat = " SHA1 " ) { encryptPassword = FormsAuthortication.HashPasswordForStoringInConfigFile(PasswordString , " SHA1 " ); ... 阅读全文
posted @ 2012-11-06 20:59 星火卓越 阅读(234) 评论(0) 推荐(0) 编辑
摘要: //名称空间 using System; using System.Security.Cryptography; using System.IO; using System.Text; /**/ /// /// DES算法描述简介: /// DES是Data Encryption Standard(数据加密标准)的缩写。它是由IBM公司研制的一种加密算法, /// 美国国家标准局于1977年公布把它作为非机要部门使用的数据加密标准; /// 它是一个分组加密算法,他以64位为分组对数据加密。 /// 同时DES也是一个对称算法:加... 阅读全文
posted @ 2012-11-06 20:57 星火卓越 阅读(586) 评论(0) 推荐(0) 编辑
上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 81 下一页