码迷,mamicode.com
首页 >  
搜索关键字:0 rows    ( 2525个结果
OpenCV改变像素颜色
Mat src=imread("image/color.jpg"); imshow("a",src); int i,j; int cPointR,cPointG,cPointB,cPoint;//currentPoint; for(i=1;i<src.rows;i++) for(j=1;j<src. ...
分类:其他好文   时间:2018-12-01 22:12:46    阅读次数:440
VBA 学习第一课
Sub gzt() Dim i As Integer For i = 1 To 10 Selection.Copy ActiveCell.Offset(2, 0).Rows("1:1").EntireRow.Select Selection.Insert Shift:=xlDown Next End... ...
分类:编程语言   时间:2018-11-30 00:38:13    阅读次数:172
螺旋矩阵的获取,原型在https://leetcode.com/articles/spiral-matrix/
今天看了个题目很有意思,原型在https://leetcode.com/articles/spiral-matrix/ 摘要如下: Given a matrix of m x n elements (m rows, n columns), return all elements of the mat ...
分类:Web程序   时间:2018-11-28 20:32:58    阅读次数:184
MySQL主从切换
主备切换:1、主库停止应用,确认主库不再有数据生成将主库改为read_only模式 mysql> set global super_read_only=on;Query OK, 0 rows affected (0.00 sec) mysql> set global read_only=on;Que ...
分类:数据库   时间:2018-11-26 13:52:09    阅读次数:208
《Pro SQL Server Internals》之Data Pages Data Rows
本文选自《Pro SQL Server Internals》 作者: Dmitri Korotkevitch 出版社: Apress 出版年: 2016-12-29 页数: 804 作者简介:Dmitri Korotkevitchis是微软SQL Server MVP和微软认证大师。作为应用程序和数 ...
分类:数据库   时间:2018-11-25 11:57:30    阅读次数:207
翻译:Data Pages and Data Rows
原文出自:《Pro SQL Server Internals, 2nd edition》CHAPTER 1 Data Storage Internals中的Data Pages and Data Rows一节(即P8~P14),Dmitri Korotkevitch,侵删 数据库中的空间分为逻辑8K ...
分类:其他好文   时间:2018-11-25 11:39:54    阅读次数:212
《Pro SQL Server Internals, 2nd edition》的CHAPTER 1 Data Storage Internals中的Data Pages and Data Rows(翻译)
数据页和数据行 数据库中的空间被划分为逻辑8KB的页面。这些页面是以0开始的连续编号,并且可以通过指定文件ID和页号来引用它们。页面编号都是连续的,这样当SQL Server增长数据库文件时,从文件中的最高页面编号+1开始对新页面进行编号。类似地,当SQL Server收缩文件时,它将从文件中删除最 ...
分类:数据库   时间:2018-11-25 01:22:49    阅读次数:211
翻译:《Pro SQL Server Internals, 2nd edition》CHAPTER 1 Data Storage Internals中的Data Pages and Data Rows一节
原文链接:file:///E:/%E2%80%9C%E6%B2%BB%E6%9C%AA%E7%97%85%E2%80%9D%E5%81%A5%E5%BA%B7%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F/Pro%20SQL%20Server%20Internals,%20 ...
分类:数据库   时间:2018-11-24 21:32:32    阅读次数:234
pandas中关于DataFrame 去除省略号
#显示所有列 pd.set_option('display.max_columns', None) #显示所有行 pd.set_option('display.max_rows', None) #设置value的显示长度为100,默认为50 pd.set_option('max_colwidth',... ...
分类:其他好文   时间:2018-11-23 16:11:10    阅读次数:438
MariaDB:开启日志记录SQL
1.开启日志红色是命令,之下是回显。MariaDB [jksfrz]> SET GLOBAL log_output = 'TABLE';Query OK, 0 rows affected (0.000 sec)MariaDB [jksfrz]> SET GLOBAL general_log = 'O... ...
分类:数据库   时间:2018-11-23 14:10:26    阅读次数:328
2525条   上一页 1 ... 41 42 43 44 45 ... 253 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!