三個資料庫維度查詢資料庫
dba_tables資料庫所有表相關資料
dba_tab_columns表字段資料(不同角色會重複統計)
user_tables 表的使用情況,統計資料量
最常用的資料庫統計資料sql
一、查詢表名、字段數
select dtc.table_name 表名, count(*) 字段數
from dba_tab_columns dtc, dba_tables dt
where dtc.table_name = dt.table_name
and dtc.owner = 'cms'
and dt.owner = 'cms'
group by dtc.table_name;
二、查詢表名、資料量(數量大於100w)
select t.table_name,t.num_rows from user_tables t
where t.num_rows > 1000000
資料庫修改表名,欄位名 字段型別
修改表 1 修改表的名稱呢 alter table 表名 rename to 新的名字 demo alter table ta1 rename to ta0 2 新增乙個新字段 alter table 表名 add 新字段 欄位的型別 demo alter table ta0 add unames ...
ASP獲取資料庫表名,欄位名
在asp論壇上看到很多問怎麼獲取資料庫表名,欄位名以及如何對欄位進行刪除,增添的操作故寫此文。本人對sqlserver比較熟一些,故以sqlserver為列 set conn server.createobject adodb.connection conn.open server ip位址 pro...
2 0中獲取資料庫連線統計資料
import namespace system.data import namespace system.data.sqlclient page language c script runat server void page load object sender,eventargs e scrip...