由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - dummy question
相关主题
A wield thing in Oracle DBProblems to define database object in Access2000
how to list all tables in my account?请教一个sql server的问题
object-oriented database设计咋样?[转载] Where to find "Business Objects" to download?
数据库入门知识之5(数据库软件开发)[转载] 急问大峡:怎么把email存进数据库?
who's using object oriented database?(MSSQL) How to handle parallel processing --Copying objects to the same dbs from different source
what's the error msg of .pc fileStored Procedure的Is和As有什么区别,还有 ······
怎样从WEB上执行调用DTS TASK?[合集] Stored Procedure的Is和As有什么区别,还有 ······
Help!-VB-Addnew?有很多fields但是稀疏的数据库会占很多内存么?
相关话题的讨论汇总
话题: object话题: sql话题: dummy话题: possibel话题: many
进入Database版参与讨论
1 (共1页)
w*****t
发帖数: 300
1
In oracle, how to get information such as hwo many table I have, what the
names are, how many users are in the server? Is it possibel to querry these
by SQL?
Thanks!
x********o
发帖数: 31
2

absolutely. to the tables you owned, u can easily attain it by a query.
but to the server users, you need administrator's privilege.
the sql should be:
ttitle left 'OBJECTS OWNED BY 'sql.user
column object_name format a64 heading 'Object Name'
column object_type format a15 heading 'Type'
select object_type, object_name
from user_objects
order by object_type desc, object_name;
ttitle off

【在 w*****t 的大作中提到】
: In oracle, how to get information such as hwo many table I have, what the
: names are, how many users are in the server? Is it possibel to querry these
: by SQL?
: Thanks!

1 (共1页)
进入Database版参与讨论
相关主题
有很多fields但是稀疏的数据库会占很多内存么?who's using object oriented database?
请教dev&test 和 production environment sync的问题what's the error msg of .pc file
SQL SERVER 面试题, find the objects怎样从WEB上执行调用DTS TASK?
database theory questionHelp!-VB-Addnew?
A wield thing in Oracle DBProblems to define database object in Access2000
how to list all tables in my account?请教一个sql server的问题
object-oriented database设计咋样?[转载] Where to find "Business Objects" to download?
数据库入门知识之5(数据库软件开发)[转载] 急问大峡:怎么把email存进数据库?
相关话题的讨论汇总
话题: object话题: sql话题: dummy话题: possibel话题: many