码迷,mamicode.com
首页 >  
搜索关键字:objects    ( 3239个结果
生成视图重新编译的指令
当数据库表字段发生变更时,对应视图就会产生字段错位现象,这个时候需要对视图进行重新编译。 生成所有重新编译指令的方法 SELECT DISTINCT 'EXEC sp_refreshview ''' + name + '''' FROM sys.objects AS so INNER JOIN sy ...
分类:其他好文   时间:2020-02-05 16:23:10    阅读次数:100
工作单元(UnitOfWork) 模式 (2) .NET Core
1.工作单元(UnitOfWork)是什么? Maintains a list of objects affected by a business transaction and coordinates the writing out of changes and the resolution of ...
分类:Web程序   时间:2020-02-04 18:38:52    阅读次数:99
SYSAUX and purging big objects (segments) manually
Nov 15, 2017 1:58:00 PM by Damir Vadas Tweet Share If you find that SYSAUX is growing and its size is too big, besides figuring out why this has happe ...
分类:其他好文   时间:2020-02-04 10:42:17    阅读次数:66
对象/类
1. Objects&Class--对象&类 Object ? Objects have states and behaviors. An object is an instance of a class. Example: A dog has states - color, name, breed ...
分类:其他好文   时间:2020-02-02 23:47:07    阅读次数:100
sqlserver 多语句表值函数例子
多语句表值函数顾名思义是返回了一张表,可以传入多个参数 1.定义 1 Use AdventureWorks2014; 2 go 3 if exists(select * from sys.objects where name='udf_SEL_SalesQuota') 4 drop function ...
分类:数据库   时间:2020-02-02 19:37:49    阅读次数:267
sqlserver 标量函数例子
标量函数用于传入多个参数返回一个结果 1.定义 1 use AdventureWorks2014; 2 go 3 if exists(select * from sys.objects where name='udf_GET_AssignedEquipment') 4 drop function d ...
分类:数据库   时间:2020-02-02 15:55:54    阅读次数:94
实时边缘视频流人物检测(四)
五、 实验结果(★) We have tested the feasibility of the proposed human objects detection and tracking scheme by processing video steam on edge computing devi ...
分类:其他好文   时间:2020-02-02 13:43:22    阅读次数:95
msvcrt.dll 导出/导入函数列表
提示: 可以使用VS提供的 导出信息,使用方法: ...
分类:其他好文   时间:2020-02-01 22:55:35    阅读次数:56
django-model操作
1、创建类,继承Model 2、外键 3、多对多 4、Tb.objects.create(**{}) 5、Tb.objects.filter().update() 6、delete 7、Tb.objects.filter().first() 8、 -- .all [obj,obj,] -- .val ...
分类:其他好文   时间:2020-01-30 15:49:44    阅读次数:78
实时边缘视频流人物检测(一)
零、标题&摘要 1、标题: Real Time Human Objects Tracking for Smart Surveillance at the Edge 应用于边缘智能监控的实时人体目标跟踪 2、摘要: Abstract— Allowing computation to be perfor ...
分类:其他好文   时间:2020-01-30 12:53:05    阅读次数:181
3239条   上一页 1 ... 27 28 29 30 31 ... 324 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!