09 2016 档案

摘要:有时候程序会莫名其妙的弹出 " 尝试读取或写入受保护的内存。这通常指示其他内存已损坏”OR “Attempted to read or write protected memory. This is often an indication that other memory is corrupt.” 阅读全文
posted @ 2016-09-14 16:48 情难舍,人难留 阅读(11485) 评论(0) 推荐(1)
摘要:set transaction isolation level repeatable readBEGIN TRAN Tran_Money select * from CodeType rowlock where CodeTypeID = 'AcceptmentState' UPDATE CodeTy 阅读全文
posted @ 2016-09-09 17:59 情难舍,人难留 阅读(146) 评论(0) 推荐(0)
摘要:1:Oracel 不区分大小写 2:对于数值类型的字段,可以进行相应的四目运算 3:别名 as ,如果含有特殊字符串,加引号 4:连接列的值,用 || 5:处理NULL ,用NVL() NVL(字段,值1),如果一段的值是NULL,则返回值1,也可以升级为NVL(表达式1,表达式2) 6:order 阅读全文
posted @ 2016-09-08 16:50 情难舍,人难留 阅读(225) 评论(0) 推荐(0)