1.查看mysql数据库大小 SELECT sum(DATA_LENGTH)+sum(INDEX_LENGTH) FROM information_schema.TABLES where TABLE_SCHEMA=‘数据库名‘; 得到的结果是以字节为单位,除1024为K,除1048576(=1024*1024)为M。 2.查看表...
分类:
数据库 时间:
2014-09-06 12:32:53
阅读次数:
228
--声明变量declare @IMType varchar(10),@IMResourceID varchar(10)--定义游标declare information_cursor cursor forselect [IMType],[IMResourceID] FROM [BJYX].[dbo]...
分类:
数据库 时间:
2014-09-04 01:23:17
阅读次数:
211
统计一张表中条目的个通常的SQL语句是:
select count(*) from tableName;
#or
select count(1) from tableName;
#or 统计一个列项,如ID
select count(ID)
另外,可通过使用information_schema统计个数
MySQL中有一个名为 information_schema 的数据库,...
分类:
数据库 时间:
2014-09-03 19:55:17
阅读次数:
231
10.1 `ls': List directory contents==================================The `ls' program lists information about files (of any type, includingdirectories)...
分类:
系统相关 时间:
2014-09-03 19:44:07
阅读次数:
450
These two terms in the Predicate Information section indicate when the data source is reduced. Simply, access means only retrieve those records meetin...
分类:
数据库 时间:
2014-09-03 19:37:37
阅读次数:
351
统计一张表中条目的个通常的SQL语句是:select count(*) from tableName;#orselect count(1) from tableName;#or 统计一个列项,如IDselect count(ID)另外,可通过使用information_schema统计个数MySQL...
分类:
数据库 时间:
2014-09-03 19:34:47
阅读次数:
270
目前计算机中用得最广泛的字符集及其编码,是由美国国家标准局(ANSI)制定的ASCII码(American Standard Code for Information Interchange,美国标准信息交换码),它已被国际标准化组织(ISO)定为国际标准,称为ISO 646标准。适用于所有拉丁文字...
分类:
其他好文 时间:
2014-09-03 16:24:16
阅读次数:
245
FINGER(1) BSD General Commands Manual FINGER(1)NAME finger — user information lookup programSYNOPSIS finger [-lmsp] [user ...] [user@host ...]DESCRIPT...
分类:
系统相关 时间:
2014-09-03 16:17:57
阅读次数:
409
** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/namespace Symfony\Compon...
分类:
其他好文 时间:
2014-09-03 14:33:16
阅读次数:
192