码迷,mamicode.com
首页 >  
搜索关键字:stored procedure    ( 4618个结果
java调用存储过程
这段时间开始学习写存储过程,主要原因还是因为工作需要吧,本来以为很简单的,但几经挫折,豪气消磨殆尽,但总算搞通了,为了避免后来者少走弯路,特记述与此,同时亦对自己进行鼓励。一:无返回值的存储过程存储过程为:CREATE OR REPLACE PROCEDURE TESTA(PARA1 IN VARC...
分类:编程语言   时间:2014-05-19 22:24:42    阅读次数:445
sqlce中不支持sp_rename修改表名
The sp_rename procedure is not avialable in SQL CE!In Sql Server 2005 Management Studio you have to create a new column with the new name, then you ha...
分类:数据库   时间:2014-05-19 17:13:55    阅读次数:342
LeetCode:Add Two Numbers
题目链接 You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a si...
分类:其他好文   时间:2014-05-19 13:53:32    阅读次数:296
PL/SQL(Procedure Language & Structured Query Language)
目前的PL/SQL包括两部分,一部分是数据库引擎部分;另一部分是可嵌入到许多产品(如C语言,JAVA语言等)工具中的独立引擎。可以将这两部分称为:数据库PL/SQL和工具PL/SQL。PL/SQL中的基本单位是块(Block),所有PL/SQL程序都是由块组成的。PL/SQL中的块由3部分组成:声明...
分类:数据库   时间:2014-05-17 18:00:09    阅读次数:436
SQL存储过程笔记
一、概述 存储过程(Stored Procedure)是一组为了完成特定功能的SQL语句集,经编译后存储在数据库。用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它。 优点: ...
分类:数据库   时间:2014-05-17 17:54:57    阅读次数:434
LeetCode-004 Add Two Numbers
【题目】 You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list. Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) Out...
分类:其他好文   时间:2014-05-15 05:13:49    阅读次数:306
【LeetCode】Plus One
题目 Given a non-negative number represented as an array of digits, plus one to the number. The digits are stored such that the most significant digit is at the head of the list. 解答 本题考察进位问题,注...
分类:其他好文   时间:2014-05-15 04:16:56    阅读次数:245
[Erl_Question04]为什么有了rpc还有net_kernel:connect/1?
问题描述:RPC(Remote Procedure Call)远程程序调用:如果要给另一个节点发信息:可以简单写成:call(Msg,Node) -> {server,Node}!{self(),Msg}, receive {ok,Res} -> Resend.ser...
分类:Web程序   时间:2014-05-14 13:24:12    阅读次数:450
T-SQL利用Row_Number函数实现分页
SQL:CREATE PROCEDURE PagingViewTest( @currentPageIndex INT, --页序号 @pageSize INT, --页大小 @pageCount INT OUTPUT --返回值,总记录数)ASBEGIN--取总记录数SELECT @p...
分类:数据库   时间:2014-05-14 13:15:07    阅读次数:473
SQL Server 多实例下的复制
原文:SQL Server 多实例下的复制一.本文所涉及的内容(Contents)本文所涉及的内容(Contents)背景(Contexts)搭建步骤(Procedure)注意事项(Attention)二.背景(Contexts) 在服务器A有一个数据库Task,需要把部分表部分字段发布订阅到服务器...
分类:数据库   时间:2014-05-14 10:34:57    阅读次数:555
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!