E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
user_tables
数据字典概念
它提供了数据库一下系统信息动态性能视图记载了例程启动过后的相关信息数据字典,它是只读表和视图的集合,数据字典的所有为sys用户用户只能在数据字典中执行查询操作,而维护和修改是由系统完成.数据字典视图:user_xxx,all_xxx,dba_xxx三种类型
user_tables
bsbforever
·
2012-10-09 10:46
oracle
数据
字典
获取ORACLE 表字段,表名,以及主键之类等等的信息。
select * from
user_tables
获取某个表的字段: USER_TAB_COLS中记录了用户表的列信息。
fxz_2008
·
2012-09-29 09:00
获取ORACLE主键
获取ORACLE 表字段
获取ORACLE表名
获取ORACLE 表字段,表名,以及主键之类等等的信息。
select * from
user_tables
获取某个表的字段: USER_TAB_COLS中记录了用户表的列信息。
fxz_2008
·
2012-09-29 09:00
获取ORACLE主键
获取ORACLE 表字段
获取ORACLE表名
ORACLE 创建新表空间,建立用户
select table_name from
user_tables
; 4、Oracle新建表空间,建立用户的步骤? A,创建表空间 create tab
yanpingli
·
2012-09-18 15:00
oracle
查询oracle数据库中所有的的分区表
怎样查询出oracle数据库中所有的的分区表 select * from
user_tables
a where a.partitioned='YES' 删除一个表的数据 truncate
peijunlin2008
·
2012-08-24 15:00
oracle数据库
Oracle常用查看表结构命令
切记 获取表: select table_name from
user_tables
; //当前用户的表
libinchinabj
·
2012-08-23 12:00
oracle
oracle点知识——HWM(高水位线) 下
1、在HWM之上的空闲block:运行analyzetable后,在HWM之上的空心啊block会在
user_tables
的empty_blocks中被统计,这些空闲的blocks实际上是从来没有存储过数据的
changyanmanman
·
2012-08-23 11:00
Oracle查看用户、用户权限、用户表空间、用户默认表空间
nbsp; from dba_users; 1.查看表结构:desc表名 2.查看当前用户的表: select table_name from
user_tables
langzhiwang888
·
2012-08-15 16:00
oracle
Oracle删除当前用户下的所有表、视图、序列、函数、存储过程、包
--delete tables Sql代码 select 'drop table ' || table_name ||';'||chr(13)||chr(10) from
user_tables
uu011
·
2012-08-09 23:00
oracle
oracle 查询用户表名 与描述
查义表名与comments select distinct a.table_name, b.comments from
user_tables
awaitdeng
·
2012-08-07 16:00
oracle
ORACLE学习(五)
1.oracle字典表常用查询 --查询当前用户拥有的所有表 select * from
user_tables
--查询当前用户可以访问的所有表 select * from all_tables
mylava
·
2012-08-03 18:00
表空间
移动数据文件
oracle字典
oracle行转列(动态行转不定列)
-------建表 ----------------判断表是否存在 declare num number; begin select count(1) into num from
user_tables
minxinxin2010
·
2012-07-06 16:00
oracle
ORACLE
查看数据库表、列(2).sql---------------- //查询 数据库 中 是否 有指定 表 select table_name,tablespace_name,temporary from
user_tables
coolhappiness_rgb
·
2012-07-06 10:00
oracle
oracle 查询表名以及表的列名
1.查询表名: 复制代码代码如下: select table_name,tablespace_name,temporary from
user_tables
[where table_name
langzhiwang888
·
2012-07-05 17:00
oracle
Oracle查看所有表和字段
selecttable_namefromall_tables;//所有用户的表selecttable_namefromdba_tables;//包括系统表selecttable_namefromdba_tableswhereowner='用户名'
user_tables
lanpy88
·
2012-05-18 16:29
数据库
Oracle查看所有表和字段
Oracle查看所有表和字段获取表:selecttable_namefrom
user_tables
;//当前用户的表 selecttable_namefrom all_tables;//所有用户的表
lanpy88
·
2012-05-18 16:00
oracle
object
user
table
360
Comments
drop_table_if_exists.sql
VARCHAR2)IS table_nums NUMBER(2);BEGIN SELECT COUNT(1) INTO table_nums FROM
user_tables
<苍狼>
·
2012-05-15 17:00
exists
Oracle 查看用户,用户权限,用户表空间,用户默认表空间
username,default_tablespace from dba_users; 1.查看表结构:desc表名 2.查看当前用户的表: select table_name from
user_tables
fgh2011
·
2012-05-08 17:00
用户权限
oracle_杂乱
DBA_TABLES >= ALL_TABLES >=
USER_TABLES
oracle官方文档的说明 1.DBA_ALL_TABLES describes all object
TheKingHenry
·
2012-05-03 23:00
oracle
删除数据库中全部表、视图、序列、函数、存储过程、包的脚本
select 'drop table ' || table_name ||';'||chr(13)||chr(10) from
user_tables
--delete tables union
aniyo
·
2012-05-02 09:00
删除数据库
Oracle查询某用户下的表,创建时间
ALL_OBJECTS WHERE OBJECT_TYPE='TABLE' AND OWNER='TEST' ORDER BY CREATED DESC; 查询当前用户下的所有表 SELECT * FROM
USER_TABLES
IThead
·
2012-04-26 11:00
oracle
创建时间
用户创建表
oracle11G新特性导致数据库导出时,部分表不能导出
于是将注意力放到系统视图
user_tables
上,查询后比较了那些可以导出的和不能导出的表的差异,发现那些不能导出
gyd1
·
2012-04-25 14:49
数据库
oracle11g
table
user
服务器
oracle
物化视图两个库中表同步
物化视图虽然听着只是个视图,但是它确实是一个表格,通过
USER_TABLES
查询物化视图确实是一个真实存在的表。 下面讲讲我怎么通过物化视图做数据
vfast_chenxy
·
2012-04-19 16:39
同步
物化视图
转:Oracle查询库表列的信息
/2007/05/22/755465.html -- 查看ORACLE 数据库中本用户下的所有表 SELECT table_name FROM
user_tables
liuqiang5151
·
2012-04-18 11:00
oracle
查询某个用户的表信息
查询oracle表的信息(表,字段,约束,索引)1、查询出所有的用户表select * from
user_tables
可以查询出所有的用户表2、查询出用户所有表的索引select * from
xiaoliuliu2050
·
2012-04-15 11:00
oracle 数据库判断指定表中是否有指定列
select * from
user_tables
a,DBA_TAB_COLUMNS bwhere a.TABLE_NAME=b.TABLE_NAMEand b.column_name
downloadsunlight2009
·
2012-04-14 12:00
oracle
数据库
user
table
Oracle存储过程-删除所有的表
--删除所有表的存储过程; create or replace procedure PROC_DROPTABLE_All as --引用
user_tables
表中的tableName
zhou363667565
·
2012-04-13 08:00
oracle存储过程
Oracle存储过程-删除所有的表
--删除所有表的存储过程; create or replace procedure PROC_DROPTABLE_All as --引用
user_tables
表中的tableName
zhou363667565
·
2012-04-13 08:00
oracle存储过程
Oracle数据字典:user_视图
以下查询返回用户模式下包含的所有对象:SQL>SELECTobject_name,object_typeFROMuser_objects;USER_视图中的各种表如下:表说明
USER_TABLES
包含有关所有表的名称
jason5186
·
2012-04-11 10:00
oracle
object
user
constraints
dependencies
triggers
Oracle数据字典:常用字典
1、user_source 当前用户的过程代码2、user_objects 包含用户拥有的所有数据库对象 3、user_segments4、
user_tables
表空间、
jason5186
·
2012-04-11 10:00
oracle
数据库
user
数据字典表——索引——序列——视图
数据字典表(oracle dictionaries) 1 如 desc
user_tables
select table_name from
user_tables
小小程序猿
·
2012-04-08 20:00
数据字典
Oracle常用查看表结构命令
获取表名称: select table_name from
user_tables
; //获取当前用户的表 select
dongmingzhaifang
·
2012-03-31 15:00
oracle 表结构查询
oracle常用系统表
1.查看oracle中有哪些表:(通过查询语句对系统表
user_tables
进行查询) 列出用户表中都存在那些表,它们所使用的表空间是那个,可以用下面的语句进行查询select table_name
Hollboy
·
2012-03-29 22:00
oracle 数据库中 drop table 与purge
实际示例:CREATE OR REPLACE PROCEDURE pro_droptable IS cursor cur is select table_name from
user_tables
Fire870923chen
·
2012-03-21 14:00
oracle
sql
数据库
user
table
oracle游标循环的嵌套
完成批量修改
user_tables
中的所有表的栏位名(从MS SQL导入过来,发现大小写问题,造成很多麻烦) 存储过程见下: -- Created on 2012/3/14 by FREE declare
aloneworld
·
2012-03-15 00:00
oracle
Oracle数据字典和动态视图小结
表名注解备注
User_tables
当前用户表 All_tables当前用户可以访问的表 Dba_tables所有方案的表需要dba角色selectanytable权限Dba_user库中所有的用户 Dba_sys_privs
joker_zhou
·
2012-03-07 19:00
查询所有表,所有列
--当前用户select * from
user_tables
; select * from USER_TAB_COLUMNS where table_name='CT_SENDMAILLISTCSV
thinktothings
·
2012-03-05 15:00
所有列
查询所有表
oracle 启动与关闭
数据字典:属于sys用户 数据字典表 动态性能视图(内存和控制文件) desc dict(dictionary) select * from
user_tables
inotgaoshou
·
2012-02-26 23:00
oracle
Oracle中查看系统所有的表和所有的字段
selecttable_namefromall_tables;//所有用户的表 selecttable_namefromdba_tables;//包括系统表selecttable_namefromdba_tableswhereowner='用户名'
user_tables
huzia
·
2012-02-22 09:00
oracle
object
user
table
Comments
Oracle查询表结构的常用语句
查询表结构基本信息 select * from
user_tables
t,user_tab_comments c
kobe学java
·
2012-02-22 08:00
oracle
Oracle查询表结构的常用语句
查询表结构基本信息 select * from
user_tables
t,user_tab_comments c where
chenjc_it
·
2012-02-14 21:00
oracle
表结构
Oracle查询表结构的常用语句
查询表结构基本信息 select * from
user_tables
t,user_tab_comments c where
chenjc_it
·
2012-02-14 21:00
oracle
表结构
Oracle统计时用全局临时表,新建oracle作业
1.新建Oracle全局临时表,代码如下: DECLARE cnt int; begin --如果存在该临时表,则删除 SELECT count(1) into cnt from
user_tables
Ajita
·
2012-02-13 13:00
oracle
临时表
job
Oracle中查看所有表和字段
Oracle中查看所有表和字段 2010-03-0910:10:20| 分类: 数据库 | 标签:table 表 oracle |字号 订阅 获取表:selecttable_namefrom
user_tables
qyweiyy
·
2012-01-29 15:21
oracle
职场
休闲
Oracle中查看所有表和字段
Oracle中查看所有表和字段
selecttable_namefromall_tables;//所有用户的表 selecttable_namefromdba_tables;//包括系统表selecttable_namefromdba_tableswhereowner='用户名'
user_tables
icooke
·
2012-01-22 10:21
oracle
职场
休闲
oracle查看所有表
Oracle数据库字典表优化小技巧
调用存储过程: dbms_stats.gather_schema_stats(ownname=>'Schema名称') 计算一下所需的空间: select sum(blocks)*8 from
user_tables
wallimn
·
2012-01-04 18:00
oracle
Oracle数据库字典表优化小技巧
调用存储过程: dbms_stats.gather_schema_stats(ownname=>'Schema名称') 计算一下所需的空间: select sum(blocks)*8 from
user_tables
wallimn
·
2012-01-04 18:00
oracle
Oracle数据库字典表优化小技巧
调用存储过程: dbms_stats.gather_schema_stats(ownname=>'Schema名称') 计算一下所需的空间: select sum(blocks)*8 from
user_tables
wallimn
·
2012-01-04 18:00
oracle
oracle 查看用户,用户权限,用户表空间,用户默认表空间
username,default_tablespace from dba_users; 1.查看表结构:desc表名 2.查看当前用户的表: select table_name from
user_tables
shuishiwo
·
2011-12-16 22:00
oracle
删除所有外键,删除所有表
create or replace procedure pro_droptable is cursor cur is select table_name from
user_tables
; drop_sql
wujt
·
2011-12-16 09:00
删除
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他