Oracle学习笔记(六)

一、oracle
oracle服务器有oracle instace 和oracle database

instance有memory structure 和 background process 组成。

memory structure包括shared pool、 sga(system global area).

sga包括:database buffer cache 和 redo log buffer cache.

show sga;

show parameter shared;

show parameter db_cache;

show parameter log;

alter system set shared_pool_size=65m;

process 包括user process、server process、background process;

databasey有data file 和 log file 和 control file组成。

database逻辑结构:表空间(tablespaces)、段(segments)、分区(extents)、块(blocks)

odca(oracle database configuration assistant)

:创建数据库

:配置数据库选项

:删除数据库

:管理数据库模板

二、管理数据库实例
1、创建和管理初始参数文件initialization parameter files

系统参数文件system parameter file——spfilesid,spfile

初始参数文件init parameter file——initsid.ora

放置位置在oracle安装目录下database文件下

参数分:显示参数explicit、隐式参数implicit、动态、静态

2、configure omf

v$system_parameter动态性能表

创建spfile

create spfile from pfile

create spfile=’d:\spfile.ora’ from pfile;

创建表空间

create tablespace test1 datafile=’d:\12.dbf’ size 3m;

3、开启和关闭数据库

开启数据库starting up a database

shutdown、nomount、mount、open

nomount——startup instance

used to create db,create controlfile

mount——open controlfile

used to change log mode,rename file,db recovery…

startup [nomount|mount|open]

pfile=

restrict

recovery

force

修改数据库指令( alter database command)

1、改变数据库从nomount状态为mount;

alter database db_01 mount;

2、打开一个只读的数据库

alter database db_01 open read only;

关闭数据库shutting down the database

shutdown mode:normal、transactional、immediate、abort

4、监视和使用diagnostic files

alter log file——alertsid.log

background tace file、use trace files

三、创建一个oracle数据库

1、使用odca(oracle database configuration assistant)创建数据库

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐