SQL2000数据库表数据量大小查询方法详解

创始人
2024-12-16 20:29:01
0 次浏览
0 评论

如何查看SQL2000数据库中所有表的数据量大小

只需直接在查询分析器中运行即可:declare@idintdeclare@typecharacter(2)declare@pagesintdeclare@dbnamesysnamedeclare@dbsizeddec(15,0)declare@bytesperpagedec(15,0)declare@pagesperMBdec(15,0)createtable#spt_space(objidint_space)(objidint_space),行intnull,reserveddec(15)null,datadec(15)null,indexpdec(15)null,unseddec(15)null)setnocounton--通过usertablesdeclarec_tablescursorforselectidfromsysobjectswherextype='U'openc_tablesf创建cursorto循环etcnextfromc_tablesinto@idwhile@@fetch_status=0begin/*Codefromsp_spaceused*/insertinto#spt_space(objid,reserved)selectobjid=@id,sum(reserved)fromsysindexeswhereindidin(0,1,255)andid=@sumidselect@pagesges)fromsysindexeswhereindid

sql查询数据表后在统计某一列数据不重复的数量

1.r2(200),

Goodmodelvarchar2(200)、Workidvarchar2(200)、Goodnamevarchar2(200));

2.

insertintotest_SalesStatistics

select'name_'||(level/4),

level/4,

sysdate-level,

级别/10,

级别/100,

级别/8,

'好'||(级别/4

>来自dual

connectbylevel<10000>

,

Goodname,

Goodmodel,

SUM(Order_Quantity)ASOrder_Quantity,

Workid

FROM(selectGoods_Name,

Order_Quantity,

Delivery_Date,

Store_Abbreviation;

>

Goodmodel,

Workid,

Goodname

fromtest_SalesStatistics

quibus_char(Delivery_Date)在“19980810”和“20000810”之间

GROUPBYStore_Abbreviation、Goodmodel、Work、好名字

4.金额,

selectcount(distinctStore_Abbreviation)Store_Abbreviation,

计数(distinctGoodmodel)Goodmodel,

计数(distinctWorkid)工作,

计数(distinctGoodname)Goodname

fromTEST_MIDt;

热门文章
1
SQL2000数据库备份压缩技巧:优化空... 怎么将SQL2000中的较大的备份数据库压缩变小更改数据库属性-选项-恢复模型很...

2
高效掌握:CMD命令轻松启动、关闭及登录... 如何用cmd命令快速启动和关闭mysql数据库服务开发中经常使用MySQL数据库...

3
SQL字符串处理技巧:单引号使用与转义标... SQL语句中,字符串类型的值均使用什么符号标明?单引号如果字符串内有单引号,请小...

4
Windows环境下Redis安装指南与... redis安装windowsredis基本简介与安装安装Redis首先需要获取安...

5
深度解析:Redis性能优势与局限性,助... redis有哪些优缺点?Redis的全称是RemoteDictionary.Se...

6
深入解析:MySQL数据库的特性与应用 mysql是什么MySQL是一个关系数据库管理系统。MySQL是一个开源关系数据...

7
Linux Redis后台启动教程:配置... linux怎么启动redis1、首先,为了管理方便,将Redis文件中的conf...

8
MySQL浮点数与Decimal类型详解... MySQL中的float和decimal类型有什么区别小数类型可以准确地表示非常...

9
C语言实现输入10个整数并找出最大最小值... C语言从键盘输入任意的10个整数,从中找出最大值和最小值并输出代码:#inclu...

10
揭秘MySQL:为何将可重复读设为默认事... mysql默认的事务隔离级别是READUNCOMMITTED(未提交读)、REA...