Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1984680
  • 博文数量: 148
  • 博客积分: 7697
  • 博客等级: 少将
  • 技术积分: 3071
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-10 23:04
个人简介

MiBDP,数据开发、项目团队、数据应用和产品在路上,金融保险、互联网网游、电商、新零售行业、大数据和AI在路上。对数仓、模型、ETL、数据产品应用了解。DTCC 2013演讲嘉宾,曾做过两款大获好评的数据产品平台。知识星球ID:35863277

文章分类
文章存档

2020年(1)

2019年(2)

2017年(2)

2016年(5)

2015年(1)

2014年(1)

2013年(6)

2012年(5)

2011年(24)

2010年(28)

2009年(1)

2008年(6)

2007年(30)

2006年(36)

分类: Oracle

2006-12-22 09:03:14

1220-1. Views with the Prefix DBA

Views with the prefix DBA show a global view of the entire database. Synonyms are

not created for these views, because DBA views should be queried only by

administrators.

DBA开头的视图是实体数据库的一个全面的展示。不能为这些视图创建同义词,因为这些视图只有管理员有权访问。

1221-1. SYS owns the dynamic performance tables; their names all begin with V_$. Views

are created on these tables, and then public synonyms are created for the views. The

synonym names begin with V$. For example, the V$DATAFILE view contains

information about the database’s datafiles, and the V$FIXED_TABLE view contains

information about all of the dynamic performance tables and views in the database.

SYS是动态性能表的所有者,这些表的名字都以V_$开头。可以在这些表上建立视图并为这些视图创建公共同义词。这些同义词都以V$开头。)

-2.Database Object Metadata

The DBMS_METADATA package provides interfaces for extracting complete

definitions of database objects. The definitions can be expressed either as XML or as

SQL DDL. Two styles of interface are provided:

_ A flexible, sophisticated interface for programmatic control

_ A simplified interface for ad hoc querying

这里提到关于DBMS_METADATA这样一个包,可以显示数据库对象的完整的定义语句。于是专门针对这个包查了下关于它的使用的一些资料,下面是EYGLE大师关于使用这个包的一个介绍:

自己也动手测试了一下

Set desc depth 1(设置desc的显示深度为1)

Desc dbms_metadata;

其中有下面一个函数:

FUNCTION GET_DDL RETURNS CLOB

参数名称                       类型                    输入/输出默认值?

------------------------------ ----------------------- ------ --------

 OBJECT_TYPE                    VARCHAR2                IN

 NAME                           VARCHAR2                IN

 SCHEMA                         VARCHAR2                IN     DEFAULT

 VERSION                        VARCHAR2                IN     DEFAULT

 MODEL                          VARCHAR2                IN     DEFAULT

 TRANSFORM                      VARCHAR2                IN     DEFAULT

了解了这个函数后下面就可以测试了

Set long 5000(注意这个参数得设置下如果不设置的话可能下面显示的DDL语句信息会不完全)

SQL> desc test;

 名称                                      是否为空? 类型

 ----------------------------------------- -------- ----------------

 AAA                                                VARCHAR2(50)

 BBB                                       NOT NULL NUMBER(5)

 

SQL> select dbms_metadata.get_ddl('TABLE','TEST') from dual;

 

DBMS_METADATA.GET_DDL('TABLE','TEST')

--------------------------------------------------------------------

 

  CREATE TABLE "HANGAN"."TEST"

   (    "AAA" VARCHAR2(50),

        "BBB" NUMBER(5,0) NO

上面是没设置long长度,所以没有显示完全,以下是set long 5000

SQL> select dbms_metadata.get_ddl('TABLE','TEST') FROM DUAL;

 

DBMS_METADATA.GET_DDL('TABLE','TEST')

------------------------------------------------------------------------

 

  CREATE TABLE "HANGAN"."TEST"

   (    "AAA" VARCHAR2(50),

        "BBB" NUMBER(5,0) NOT NULL ENABLE,

         CONSTRAINT "AAA" PRIMARY KEY ("BBB")

  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255

  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645

  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)

  TABLESPACE "USERS"  ENABLE

   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING

  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645

 

DBMS_METADATA.GET_DDL('TABLE','TEST')

------------------------------------------------------------------------

  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)

  TABLESPACE "USERS"

-3.Introduction to an Oracle Instance

 这里有个图没贴上

Every running Oracle database is associated with an Oracle instance. When a

database is started on a database server (regardless of the type of computer), Oracle

allocates a memory area called the System Global Area (SGA) and starts one or

more Oracle processes. This combination of the SGA and the Oracle processes is

called an Oracle instance.

SGA和一组后台进程组成一个ORACLE INSTANCE

After starting an instance, Oracle associates the instance with the specified database.

This is called mounting the database. The database is then ready to be opened,

which makes it accessible to authorized users.

(例程启动后,ORACLE会把这个例程和一个确定数据库结合。这就叫mount。然后数据库就准备打开,使通过验证的用户使用)

Multiple instances can run concurrently on the same computer, each accessing its

own physical database. In clustered and massively parallel systems (MPS), Real

Application Clusters enables multiple instances to mount a single database.

(多个例程能够在同一台机子上运行,没一个都访问它自己的物理数据库。在基群和MPSRAC能够在一台单独的数据库上运行多个例程。)

Instance and Database Startup

The three steps to starting an Oracle database and making it available for

systemwide use are:

1. Start an instance.

2. Mount the database.

3. Open the database.

How an Instance Is Started

When Oracle starts an instance, it reads the initialization parameter file to

determine the values of initialization parameters. Then, it allocates an SGA, which

is a shared area of memory used for database information, and creates background

processes. At this point, no database is associated with these memory structures and

processes.

(数据库启动例程时,它首先读取初始化参数文件确定初始值。然后为数据库配置SGA共享内存区域,并且创建后台进程。在这个时间点,没有数据库与内存体系和进程相连接。)

(注:昨天博客老是打不开,只能今天发了

 

 

 

 

 

 

 

  

  

  

  

阅读(2328) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~