码迷,mamicode.com
首页 >  
搜索关键字:tran    ( 4370个结果
MsSqlserver 查看锁表与解锁
查看被锁表: select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT' spid 锁表
分类:数据库   时间:2016-03-11 19:02:18    阅读次数:266
sql 事务
SET NOCOUNT ON BEGIN TRY BEGIN TRANSACTION --your logic COMMIT TRANSACTION END TRY BEGIN CATCH IF XACT_STATE() <> 0 --当前请求有活动的用户事务 BEGIN ROLLBACK TRAN
分类:数据库   时间:2016-03-04 14:35:56    阅读次数:195
递归练习
递归练习-进制转换 AYYZOJ p1414 1 var 2 m:integer; 3 procedure tran(n:integer); 4 var k:integer; 5 begin 6 k:=n mod 8; 7 n:=n div 8; 8 if n<>0 then tran(n); 9
分类:其他好文   时间:2016-02-02 14:59:25    阅读次数:149
Odoo 仓库调拨移动过程中 单位不允许错误的分析及解决方案
Odoo 仓库调拨过程中,有时候会碰见一下错误内容:The roundings of your Unit of Measures on the move vs. on the product don't allow to do these operations or you are not tran...
分类:移动开发   时间:2016-01-22 14:06:49    阅读次数:141
java读写文件及保留指定位小数
1)先上代码: 1 public static void main(String[] args)throws IOException{ 2 3 4 double[][] B=new double[1043][21025]; 5 double[][] tran...
分类:编程语言   时间:2016-01-19 12:46:55    阅读次数:255
sql server查询在线用户
select request_session_id spid,object_name(resource_associated_entity_id) tableNamefrom sys.dm_tran_locks where resource_type='OBJECT'
分类:数据库   时间:2016-01-04 13:02:28    阅读次数:163
1203 有穷自动机
include#define MAX 100typedef struct //构造一个邻接表 用于存储NFA{char name;char line[MAX]; }node; void tran(){ //专门做语句的转换操作 } void automata(char R[],in...
分类:其他好文   时间:2015-12-30 17:06:58    阅读次数:153
存储过程的常见结构
Oracle:create or replace procedure get_needQuery_Balance(v_num in number,v_result out number) is--declare veriables--declare cursor--begin begin--tran...
分类:其他好文   时间:2015-12-18 13:12:04    阅读次数:113
Heterogeneous Multi-task Learning for Human Pose Estimation with Deep Convolutional Neural Network
论文题目Heterogeneous Multi-task Learning for Human Pose Estimation with Deep Convolutional Neural Network, 链接该篇论文是IJCV 2014的, 文章的核心multi-tasks的joint tran...
分类:Web程序   时间:2015-12-14 15:57:53    阅读次数:316
MSSQL Tran 数据库事务回滚的用法
使用的表结构如下:USE[TestDB]GO/****** 对象: Table [dbo].[Person] 脚本日期: 11/23/2008 13:37:48 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATETABLE[dbo]....
分类:数据库   时间:2015-12-09 19:24:40    阅读次数:226
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!