码迷,mamicode.com
首页 >  
搜索关键字:procedures    ( 129个结果
Oracle数据库零散知识02
15,函数的创建,要求必须有返回值,必须在语句中调用,需要多个返回值时,使用out参数类型,在user_procedures表中查询属性,在user_source表中查询源代码,创建示例:CREATE OR REPLACE FUNCTION my_function_01--创建函数(v_01 IN ...
分类:数据库   时间:2015-10-27 13:10:59    阅读次数:204
IbatisNet的介绍和使用
IBATISNet是一个使得SQL 语句或者 stored procedures与实体对象容易映射起来、简洁完整的框架,iBATIS framework将是你用更少的代码获得更多的数据库访问功能。在http://shanyou.cnblogs.com/archive/2006/04/29/38861...
分类:Web程序   时间:2015-09-21 17:20:22    阅读次数:337
SSMS For Beginner Part 18 to 21
Part 18 Stored procedures in sql serverPart 19 Stored procedures with output parametersPart 20 Stored procedure output parameters or return valuesPart...
分类:其他好文   时间:2015-09-14 01:51:19    阅读次数:175
【SQLServer】Microsoft SQL Baseline Checklist
今天调查了Microsoft SQL Baseline Checklist中的下面几个问题。 1.Hide Instances 2.Extended Store Procedures 3.Maximum Number Of Error Log Files 4.Remote Access
分类:数据库   时间:2015-09-10 12:52:52    阅读次数:220
VBA 操作 VBE
IntroductionYou can write code in VBA that reads or modifies other VBA projects, modules, or procedures. This is called extensibility because extends ...
分类:编程语言   时间:2015-09-06 12:47:41    阅读次数:357
SQL Procedure Operations
This Class is used to handle SQL procedures, including Verify SP exist or not, Create SP into DB and Execute SP via C#.using System;using System.Data....
分类:数据库   时间:2015-08-07 12:45:20    阅读次数:124
The return types for the following stored procedures could not be detected
1、使用dbml映射数据库,添加存储过程到dbml文件时报错。2、原因:存储过程中使用了临时表3、解决方案3.1通过自定义表值变量实现Ex:DECLARE @TempTable TABLE(AttributeID INT,Value NVARCHAR(200))INSERT INTO @TempTa...
分类:Windows程序   时间:2015-07-31 12:04:12    阅读次数:556
SQL Server 数据库优化剖析
一、SQL Profiler事件类 Stored Procedures\RPC:Completed TSQL\SQL:BatchCompleted事件关键字段 EventSequence、EventClass、SPID、DatabaseName、Error、StartTime、TextData、 H...
分类:数据库   时间:2015-07-22 22:35:14    阅读次数:160
查询存储过程信息
解决方法:借助sys.proceduresselect * fromsys.procedures字段说明:name存储过程名称object_id存储过程对象编号create_date 创建日期modify_date 修改日期
分类:其他好文   时间:2015-07-20 19:08:26    阅读次数:86
129条   上一页 1 ... 7 8 9 10 11 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!