365key.com
发现·保存·分享@天天网摘

Q版365key  设为首页 加为收藏 帮助

 首页  网址  添加  我的网摘  我的订阅  最新网摘  收录榜  点击榜  同好  配置  工具箱  标签  兴趣小组 
  IT168 |  华军下载 |  猫扑 |  VeryCD |  CSDN技术 |  DoNews |  9Flash |  中金 |  游侠 |  股票天下 |  游戏公会 |  电子工程 |  白银时代 |  和365Key合作

speedman的网摘列表 RSS格式输出  365Key邮件订阅,每天可以定期收到邮件通知  使用 POTU 订阅
搜索词: 时间:
分类:     排序:
 
刷新列表 共1页、25项网摘
邹建大哥救救我吧~!!动态列转行的问题!急救~!!!高手请快进!在线等点击:43
 分类:SQL 时间:2006-11-29 16:41:53 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/5043/5043193.xml?temp=.7309076
oracle字符集问题,时间格式错误点击:27
 分类:SQL 时间:2006-11-8 14:24:48 speedman收录 复制到我的网摘
http://www.chinahtml.com/databases/4/2006/11617461757578.shtml
计算机世界日报: 影响ORACLE汉字显示的字符集问题点击:23
 分类:SQL 时间:2006-10-30 2:04:51 speedman收录 (还有1人收录) 复制到我的网摘
http://www2.ccw.com.cn/tips/9906/062804_04.asp
C#调用ORACLE存储过程返回结果集及函数 - 中国剑客技术联盟,剑盟,CSTA,jianmeng,JM,Chinese Swordsman Technique Alliance,广东剑盟网络科技有限公司,网络,安全,杀毒,升级,讨论,交流,论坛,BBS,绿色精品软件,剑盟资源下载站,点击:26
 分类:SQL 时间:2006-10-15 16:48:32 speedman收录 复制到我的网摘
http://2dai.com/article/40/42/2006/200610101857.html
四裤全输的小窝~~--关于ORA-00020: maximum number of processes (%s) exceeded 的解决方法点击:49
 分类:SQL 时间:2006-10-11 14:18:31 speedman收录 复制到我的网摘
http://blogger.org.cn/blog/more.asp?name=RandomRen&id=18470
ORACLE10G ORA-00020: maximum number of processes (%s) exceeded点击:32
 分类:SQL 时间:2006-10-11 14:12:12 speedman收录 复制到我的网摘
http://gladness.itpub.net/post/6254/34573
清楚理解限制(limit)系列1-Oracle线程数点击:15
 分类:SQL 时间:2006-10-10 17:20:01 speedman收录 复制到我的网摘
ORA-00020: maximum number of processes (%s) exceeded
http://www.chinaitpower.com/2006Aug/2006-10-07/216974.html
用一条SQL完成数据表的行统计 - Powerlc的BLog - 博客园点击:38
 分类:SQL 时间:2006-10-9 10:41:59 speedman收录 复制到我的网摘
http://www.cnblogs.com/powerlc/archive/2005/09/08/232279.html
zhouweifeng | oracle case点击:24
 分类:SQL 时间:2006-10-8 19:24:13 speedman收录 复制到我的网摘
http://zhouwf0726.itpub.net/post/9689/198091
ORACLE 8i,9i 表连接方法全介绍点击:20
 分类:SQL 时间:2006-9-27 16:54:51 speedman收录 复制到我的网摘
(+)
http://www.tech521.com/autoGenFile/techData/23/2308.htm
使用Lion.Web.UpLoadModule上传大文件心得 - 完美主义的程序设计 - 博客园点击:30
 分类:SQL; 控件 时间:2006-9-16 10:06:29 speedman收录 复制到我的网摘
http://www.cnblogs.com/pblee/archive/2005/11/29/285929.html
Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication (.NET Framework Security)点击:13
 分类:SQL 时间:2006-8-28 11:09:54 speedman收录 (还有1人收录) 复制到我的网摘
ms pattern and pratices
http://msdn.microsoft.com/library/en-us/dnnetsec/html/secnetlpmsdn.asp?frame=true
有关SQL数据库的连接问题点击:29
 分类:SQL 时间:2005-5-31 9:00:58 speedman收录 复制到我的网摘
断开数据库
--断开指定库的所有用户连接(在master数据库中进行)
use master
go

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[sp_KillSpid]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[sp_KillSpid]
GO

create proc sp_KillSpid
@dbname sysname --要断开连接的数据库名
as
declare @s nvarchar(1000)
declare tb cursor local
for
select N'kill '+cast(spid as varchar)
from master..sysprocesses
where dbid=db_id(@dbname)

open tb
fetch next from tb into @s
while @@fetch_status=0
begin
exec(@s)
fetch next from tb into @s
end
close tb
deallocate tb
go

--调用
exec sp_KillSpid 'aa'
http://community.csdn.net/Expert/topic/4033/4033489.xml?temp=.7274286
存储过程不能返回值,帮忙看一下,谢谢点击:33
 分类:SQL 时间:2005-5-31 8:51:17 speedman收录 复制到我的网摘
如果变量没有初始化,那么它的值为NULL,NULL 任何值均为NULL

所以楼主的问题出在没有初始化变量上.
修改存储过程,或者修改调用主要均可以解决问题.
http://community.csdn.net/Expert/topic/4047/4047393.xml?temp=.3474237
一个面试难题点击:53
 分类:SQL 时间:2005-5-30 9:47:21 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/4044/4044456.xml?temp=.4132349
asp sql server2000还原数据库备份时,如何取得排他访问权点击:46
 分类:SQL 时间:2005-5-30 8:30:20 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/4043/4043909.xml?temp=.4152185
求一导入数据的存储过程??点击:31
 分类:SQL 时间:2005-5-27 14:41:21 speedman收录 复制到我的网摘
--在目标服务器上执行语句:

insert 目标库.dbo.目标表 select * from openrowset('sqloledb','源服务器';'sa';'密码',源库.dbo.源表) a
where not exists( select * from 目标库.dbo.目标表 where 主键=a.主键)
http://community.csdn.net/Expert/topic/4039/4039655.xml?temp=3.612918E-02
求高手指点,关于改善SQL代码的速度点击:30
 分类:SQL 时间:2005-5-27 8:58:49 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/4038/4038830.xml?temp=.843548
████ 看了大家的分页存储过程,一句话:不算优秀,算是作为我对.net版块的一点支持吧!效率极高,只有五句话的分页存储过程!████点击:36
 分类:SQL 时间:2005-5-24 14:19:17 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/3292/3292678.xml?temp=.6307947
求一考勤的存储过程(100分)点击:29
 分类:SQL 时间:2005-5-24 11:22:05 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/4026/4026774.xml?temp=.5740015
绝对高分,挑战高手!!!如何将WORD等文件像邮件的附件一样上传,下载,打开呢???点击:43
 分类:SQL 时间:2005-5-19 14:03:16 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/4011/4011982.xml?temp=7.300967E-02
请问,这种情况需要触发器吗?点击:38
 分类:SQL 时间:2005-5-11 8:57:15 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/3996/3996437.xml?temp=.2875635
有两个数据库,一个为a库,一个为b库,怎么实现b数据库每隔10分钟自动从a数据库更新新加入的数据,保持b库与a库的数据一致?点击:38
 分类:SQL 时间:2005-5-11 8:52:17 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/3996/3996181.xml?temp=.7713739
中国房地产不存在泡沫?中国人都疯了吗?(zt)点击:38
 分类:SQL 时间:2005-4-4 17:56:54 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/3892/3892744.xml?temp=.8592188
帮我看看这个存储过程点击:31
 分类:SQL 时间:2005-3-30 14:06:30 speedman收录 复制到我的网摘
http://community.csdn.net/Expert/topic/3892/3892714.xml?temp=.2432367
页码: [1 共1页、25项网摘

使用帮助 |  如何保存网摘 |  给365Key提建议 |  媒体报道 |  站长推广须知
Copyright (C) 2004 365Key.com--天天网摘 All Rights Reserved