码迷,mamicode.com
首页 >  
搜索关键字:procedures    ( 129个结果
读书笔记-Autonomous Intelligent Vehicles(一)
Autonomous intelligent vehicles have to finish the basic procedures: perceiving and modeling environment localizing and building maps planning paths a... ...
分类:其他好文   时间:2016-05-23 10:25:05    阅读次数:272
高阶函数之函数作为参数
SICP 1.3.1  Procedures as Arguments,说明高阶函数之函数作为参数的原因:若干个函数拥有相似的算法或代码结构,对此加以抽象。 (define (sum-integers a b)   (if (> a b)       0       (+ a (sum-integers (+ a 1) b)))) (define (pi-sum a b)   (i...
分类:其他好文   时间:2016-05-13 00:56:23    阅读次数:197
LTE物理传输资源(1)-帧结构
参考文献: (1)3GPP TS 36.211 V9.1.0 (2010-03) Physical Channels and Modulation (2)《4G LTE/LTE-Advanced for Mobile Broadband》 (3)http://www.sharetechnote.com/ (4)3GPP TS 36.213 V9.3.0 (2010-09) Physical layer procedures...
分类:其他好文   时间:2016-05-06 15:50:25    阅读次数:746
RPD Volume 168 Issue 4 March 2016 评论4
Non-vascular interventional procedures: effective dose to patient and equivalent dose to abdominal organs by means of DICOM images and Monte Carlo sim ...
分类:其他好文   时间:2016-03-31 07:04:22    阅读次数:164
Fluent Nhibernate and Stored Procedures
sql:存储过程 参考:http://stackoverflow.com/questions/6373110/nhibernate-use-stored-procedure-or-mapping ...
分类:Web程序   时间:2016-03-30 01:24:43    阅读次数:211
sybaseIQ重命名列名
Warning! You must change appropriately the definition of any dependent object (procedures, functions, and views) on an object being renamed by sp_iqre...
分类:数据库   时间:2016-01-28 12:31:41    阅读次数:268
快速获取DB服务器当前 MEM CPU的资源消耗
USE DBA_Maintenance GO IF EXISTS (SELECT 1 FROM SYS.PROCEDURES WHERE type='p' AND NAME='SP_CheckMemAndCpu') BEGIN DROP PROCEDURE SP_CheckMemAndCpu END
分类:数据库   时间:2016-01-27 19:26:37    阅读次数:249
SQL Server中调用WebService的实例
1.Ole Automation Procedures 服务器配置选项 当启用 OLE Automation Procedures 时,对 sp_OACreate 的调用将会启动 OLE 共享执行环境。 可以使用 sp_configure 系统存储过程来查看和更改 Ole Automation P....
分类:数据库   时间:2016-01-16 16:26:35    阅读次数:187
SQL Server :Stored procedures存储过程初级篇
对于SQL Server,我是个拿来主义。很多底层的原理并不了解,就直接模仿拿着来用了,到了报错的时候,才去找原因进而逐步深入底层。我想,是每一次的报错,逼着我一点点进步的吧。近期由于项目的原因,我需要写一些存储过程。同时学校还开了一门《数据库系统》的课程。两者结合满足了我浓厚的兴趣。下面写写我对存...
分类:数据库   时间:2015-12-10 21:40:19    阅读次数:232
SQL: See the TSQL underneath the sp_execute calls
When use SQL Server Profiler, on the Events Selection tab, check Show all events; Find the Store Procedures event, checkSP:StmtStarting and/or SP:Stmt...
分类:数据库   时间:2015-12-04 12:44:56    阅读次数:167
129条   上一页 1 ... 6 7 8 9 10 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!