上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 54 下一页
摘要: SQL Server 2000订阅与发布的具体操作同步过程 一、准备工作,如果完成则可跳过。 1、内网DB服务器作为发布服务器,外网DB服务器作为订阅服务器。 发布服务器和订阅服务器上分别创建Windows用户jl,密码jl,隶属于administrators,注意要保持一致。 2、发布服务器上创建一个共享目录,作为发布快照文件的存放目录。例如:在D盘根目录下建文件夹名为SqlCopy,设置用户jl,权限为完全控制。 3、确定发布服务器和订阅服务器的数据库autoweb保持一致。 4、在发布服务器和订阅服务器的SQL Server中创建用户登陆名jl,作为发布数据库autoweb的拥有者(设置 阅读全文
posted @ 2010-12-14 11:13 小锋神 阅读(939) 评论(0) 推荐(0) 编辑
摘要: int GetAppearTimes(string str1,string str2){ int i=0; while(str1.IndexOf(str2)>=0){ str1=str1.Substring(str1.IndexOf(str2)+str2.Length); i++; } return i; } int GetAppearTimes(string str1,string str2){ Regex ex=new Regex(str2); return ex.Matches(str1).Count; } Regex.Matches(str1,str2).Count;本文来自CS 阅读全文
posted @ 2010-12-09 17:11 小锋神 阅读(6892) 评论(0) 推荐(1) 编辑
摘要: if (drt.HasRows) { while (drt.Read()) { ddl_color.Items.Add(drt.GetString(0));//绑定第一个字段 } Label68.Visible = false; } 阅读全文
posted @ 2010-11-26 15:18 小锋神 阅读(1217) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->一、基础1、说明:创建数据库CREATE DATABASE database-name 2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testBack', 'c:\mssql7backup\M 阅读全文
posted @ 2010-11-25 22:38 小锋神 阅读(432) 评论(0) 推荐(0) 编辑
摘要: --定时同步服务器上的数据--例子:--测试环境,SQL Server2000,远程服务器名:xz,用户名为:sa,无密码,测试数据库:test--服务器上的表(查询分析器连接到服务器上创建)create table [user](id int primary key,number varchar(4),name varchar(10))go--以下在局域网(本机操作)--本机的表,state说明:null 表示新增记录,1 表示修改过的记录,0 表示无变化的记录if exists (select * from dbo.sysobjects where id = object_id(N' 阅读全文
posted @ 2010-11-25 22:29 小锋神 阅读(8354) 评论(0) 推荐(0) 编辑
摘要: SQL2000我有表tb1,tb2,tb3tb1的字段product_no,color,product_size,orderno,tb2字段joinno,orderno,product_infotb3字段,product_no,product_type那么我想更新表tb2的字段product_info是根据orderno字段去查询tb1表的product_no,color,product_size,再根据tb1的product_no去查询tb3的product_type,最后后成product_info字段内容为product_no-color-product_size-product_typ 阅读全文
posted @ 2010-11-23 23:41 小锋神 阅读(2728) 评论(0) 推荐(0) 编辑
摘要: select * from t1 where id in(select min(id) from t1 group by name)SELECT * FROM t1 a WHERE [time]= ( SELECT TOP 1 [time] FROM t1 WHERE name=a.name ORDER BY [Time] DESC )Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--按某一字段分组取最大(小)值所在行的数据/*数据如下:n 阅读全文
posted @ 2010-11-22 11:14 小锋神 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 1. 打开新的窗口并传送参数: 传送参数: response.write("<script>window.open('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')</script>") 接收参数: string a = Request.QueryString("id"); string b = Request.QueryString("id1"); 2.为按钮添加对话框 Button1.Attribu 阅读全文
posted @ 2010-11-21 21:48 小锋神 阅读(248) 评论(0) 推荐(0) 编辑
摘要: //光棒效果 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#FFFDD7'"); e.Row.Attributes.A 阅读全文
posted @ 2010-11-21 21:29 小锋神 阅读(567) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 遍历 rootdir目录下的所有文件 /// </summary> /// <param name="rootdir">目录名称</param> /// <returns>该目录下的所有文件</returns> public StringCollection GetAllFiles(string rootdir) { StringCollection result = new StringCollection(); GetAllFiles(rootdir, resul 阅读全文
posted @ 2010-11-21 21:20 小锋神 阅读(16996) 评论(1) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 54 下一页