Create procedure [dbo].[sp_who_lock] ( @bKillPID Bit=0 -- 0: 查询 1: 结束掉相对应的死锁ID (可能导致数据异常)) as begin declare @spid int declare @blk int declare @count ...
分类:
数据库 时间:
2020-01-09 10:33:42
阅读次数:
368
procedure TForm1.FormCreate(Sender: TObject); var s:string; a:integer; b:Single; begin a:=3; b:=108.4; s:= Format('xx is %.*f',[a,b]); self.Caption:=s ...
分类:
其他好文 时间:
2020-01-08 14:52:09
阅读次数:
107
资源 格式 示例 表 DatabaseID:ObjectID:IndexID 选项卡上: 5:261575970:1 在这种情况下,数据库 ID 5 是pubs示例数据库对象 ID 261575970 是titles表和 1 是聚集的索引。 页面 DatabaseID:FileID:PageID 网 ...
分类:
其他好文 时间:
2020-01-08 12:13:35
阅读次数:
85
一、AOP统一处理请求日志 也谈AOP 1、AOP是一种编程范式 2、与语言无关,是一种程序设计思想 面向切面(AOP)Aspect Oriented Programming 面向对象(OOP)Object Oriented Programming 面向过程(POP) Procedure Orien ...
分类:
编程语言 时间:
2020-01-08 00:24:30
阅读次数:
83
//服务器端unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Fo ...
分类:
Web程序 时间:
2020-01-07 16:06:24
阅读次数:
105
存储过程(stored procedure)类似于C语言中的函数 用来执行管理任务或应用复杂的业务规则 存储过程可以带参数,也可以返回结果 视图封装的是select语句 存储过程封装的是tsql语句 常用的系统存储过程 系统存储过程 说明 sp_databases 列出服务器上的所有数据库 sp_h ...
分类:
其他好文 时间:
2020-01-06 19:39:17
阅读次数:
102
begin dbms_scheduler.create_job(job_name => 'JOB_BASIC_STATISTIC', job_type => 'STORED_PROCEDURE', job_action => 'PROC_BASIC_STATISTIC', --存储过程名 start ...
分类:
数据库 时间:
2020-01-03 21:03:57
阅读次数:
395
题目描述 Shuffling is a procedure used to randomize da deck of playing cards. Because standard shuffling techniques are seen as weak, and in order to avoi ...
分类:
系统相关 时间:
2020-01-01 12:04:39
阅读次数:
115
过程包即Package,它是存储过程的延伸,包的实现主要包括包头和包体,其中包头主要用于定义接口,包体主要用以实现包体中声明的存储过程、函数等。如果业务中需要用到大量的存储过程,则需要用过程包对存储过程进行进一步的包装,Package 分为Package声明以及Packge body,需要先声明存储过程,存储过程中相关的数据,在Package body中实现声明中的存储过程。
分类:
数据库 时间:
2020-01-01 09:23:46
阅读次数:
287
在使用cxGrid时,由于设置了所有单元格都能编辑, 但在特定的情况下,让某些行,根据一些列值条件,让该行整行锁定,不能编辑。 研究了很久,在DevExpress官网上找到了相关的资料,因此,分享给大家。 Dev官网的列子是这样的 // DISABLE A ROW 整行禁止编辑 procedure ...
分类:
其他好文 时间:
2019-12-31 14:28:11
阅读次数:
231