游标定义 sql语言按照标准处理对象是集合,但有时候也需要针对单行的处理,所以就有了游标,类似C语言的指针一样。 使用方法 创建游标 declare cursor_name --游标名称,唯一标识 [insensitive] [scroll] cursor for select_statement ...
分类:
数据库 时间:
2020-08-05 00:09:52
阅读次数:
127
@Database是需要备份的数据库名,@Path是备份目录注意最后一个"/" [vb] view plaincopy use master go declare @Database nvarchar(256),@Path nvarchar(2048) select @Database=N'Adve ...
分类:
数据库 时间:
2020-08-03 12:18:33
阅读次数:
97
问题解决:1)查看被锁表:select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableNamefrom sys.dm_tran_locks where resource_type='OBJECT'2)解 ...
分类:
数据库 时间:
2020-07-31 19:24:53
阅读次数:
227
--每次删多少 DECLARE @BatchSize INT = 100 WHILE 1 = 1 BEGIN DELETE TOP (@BatchSize) FROM tb WHERE id>30 IF @@ROWCOUNT < @BatchSize BREAK END ...
分类:
数据库 时间:
2020-07-29 15:33:08
阅读次数:
69
--第一步:查看是否需要维护,查看扫描密度/Scan Density是否为100%declare @table_id intset @table_id=object_id('ICMO')dbcc showcontig(@table_id) --第二步:重构表索引dbcc dbreindex('t_S ...
分类:
其他好文 时间:
2020-07-29 10:37:38
阅读次数:
81
转至:https://blog.csdn.net/dj0379/article/details/50946398/ declare -i iv=$svnvlet iv+=1shell中变量自增的实现方法Linux Shell中写循环时,常常要用到变量的自增,现在总结一下整型变量自增的方法。我所知道的 ...
分类:
系统相关 时间:
2020-07-28 14:23:57
阅读次数:
91
DECLARE @TotalCount INT = 0, @NowCount INT = 0, @v_Name NVARCHAR(300) = N''; --创建临时表 CREATE TABLE #Refresh_View ( ID INT IDENTITY(1, 1), v_Name NVARCH ...
分类:
数据库 时间:
2020-07-24 15:31:08
阅读次数:
84
1. TabLayout 设置 指示条 颜色、高度,字体颜色大小等 <android.support.design.widget.TabLayout android:id="@+id/tab_layout" android:layout_width="wrap_content" android:la ...
分类:
移动开发 时间:
2020-07-23 22:43:50
阅读次数:
86
目录 一、SHELL介绍 ㈠ 什么是shell脚本? ㈡ 什么时候用到脚本? ㈢ shell脚本能干啥? ㈣ 如何学习shell脚本? ㈤ 学习shell脚本的秘诀 ㈥ shell脚本的基本写法 ㈦ shell脚本的执行方法 二、变量的定义 变量是什么? 什么时候需要定义变量? 3.变量如何定义? ...
分类:
系统相关 时间:
2020-07-22 20:23:46
阅读次数:
87
之前一直以为while 语句只能在函数中执行,今天算是涨知识了. DO $$ DECLARE i INTEGER := 1; identityId BIGINT := 200000000001; BEGIN WHILE i < 100 LOOP identityId = identityId + 1 ...
分类:
其他好文 时间:
2020-07-17 19:32:52
阅读次数:
70