- 浏览: 196475 次
- 性别:
- 来自: 长沙
文章分类
最新评论
-
chmadmin:
求源码,参考下
Extjs做的一个图书管理系统(详细解析) -
wilddonkey:
lz,我现在自定义了转换器,但是如果输入为空,则自动跳过,虽然 ...
struts2-ognl.MethodFailedException: Method "setId" failed for object -
accpchf:
/** * 懒汉式, * 既有延迟加载功能又能保证线程安全, ...
J2EE面试题集锦(附答案) -
accpchf:
java编程第三题明显错误 A ab = new B(); ...
J2EE面试题集锦(附答案) -
风雨故都:
求源码。参考一下
Extjs做的一个图书管理系统(详细解析)
第一章:日志管理
1.forcing log switches
sql> alter system switch logfile;
2.forcing checkpoints
sql> alter system checkpoint;
3.adding online redo log groups
sql> alter database add logfile [group 4]
sql> ('/disk3/log4a.rdo','/disk4/log4b.rdo') size 1m;
4.adding online redo log members
sql> alter database add logfile member
sql> '/disk3/log1b.rdo' to group 1,
sql> '/disk4/log2b.rdo' to group 2;
5.changes the name of the online redo logfile
sql> alter database rename file 'c:/oracle/oradata/oradb/redo01.log'
sql> to 'c:/oracle/oradata/redo01.log';
6.drop online redo log groups
sql> alter database drop logfile group 3;
7.drop online redo log members
sql> alter database drop logfile member 'c:/oracle/oradata/redo01.log';
8.clearing online redo log files
sql> alter database clear [unarchived] logfile 'c:/oracle/log2a.rdo';
9.using logminer analyzing redo logfiles
a. in the init.ora specify utl_file_dir = ' '
b. sql> execute dbms_logmnr_d.build('oradb.ora','c:oracleoradblog');
c. sql> execute dbms_logmnr_add_logfile('c:oracleoradataoradbredo01.log',
sql> dbms_logmnr.new);
d. sql> execute dbms_logmnr.add_logfile('c:oracleoradataoradbredo02.log',
sql> dbms_logmnr.addfile);
e. sql> execute dbms_logmnr.start_logmnr(dictfilename=>'c:oracleoradblogoradb.ora');
f. sql> select * from v$logmnr_contents(v$logmnr_dictionary,v$logmnr_parameters
sql> v$logmnr_logs);
g. sql> execute dbms_logmnr.end_logmnr;
第二章:表空间管理
1.create tablespaces
sql> create tablespace tablespace_name datafile 'c:oracleoradatafile1.dbf' size 100m,
sql> 'c:oracleoradatafile2.dbf' size 100m minimum extent 550k [logging/nologging]
sql> default storage (initial 500k next 500k maxextents 500 pctinccease 0)
sql> [online/offline] [permanent/temporary] [extent_management_clause]
2.locally managed tablespace
sql> create tablespace user_data datafile 'c:oracleoradatauser_data01.dbf'
sql> size 500m extent management local uniform size 10m;
3.temporary tablespace
sql> create temporary tablespace temp tempfile 'c:oracleoradatatemp01.dbf'
sql> size 500m extent management local uniform size 10m;
4.change the storage setting
sql> alter tablespace app_data minimum extent 2m;
sql> alter tablespace app_data default storage(initial 2m next 2m maxextents 999);
5.taking tablespace offline or online
sql> alter tablespace app_data offline;
sql> alter tablespace app_data online;
6.read_only tablespace
sql> alter tablespace app_data read only|write;
7.droping tablespace
sql> drop tablespace app_data including contents;
8.enableing automatic extension of data files
sql> alter tablespace app_data add datafile 'c:oracleoradataapp_data01.dbf' size 200m
sql> autoextend on next 10m maxsize 500m;
9.change the size fo data files manually
sql> alter database datafile 'c:oracleoradataapp_data.dbf' resize 200m;
10.Moving data files: alter tablespace
sql> alter tablespace app_data rename datafile 'c:oracleoradataapp_data.dbf'
sql> to 'c:oracleapp_data.dbf';
11.moving data files:alter database
sql> alter database rename file 'c:oracleoradataapp_data.dbf'
sql> to 'c:oracleapp_data.dbf';
第三章:表
1.create a table
sql> create table table_name (column datatype,column datatype]....)
sql> tablespace tablespace_name [pctfree integer] [pctused integer]
sql> [initrans integer] [maxtrans integer]
sql> storage(initial 200k next 200k pctincrease 0 maxextents 50)
sql> [logging|nologging] [cache|nocache]
2.copy an existing table
sql> create table table_name [logging|nologging] as subquery
3.create temporary table
sql> create global temporary table xay_temp as select * from xay;
on commit preserve rows/on commit delete rows
4.pctfree = (average row size - initial row size) *100 /average row size
pctused = 100-pctfree- (average row size*100/available data space)
5.change storage and block utilization parameter
sql> alter table table_name pctfree=30 pctused=50 storage(next 500k
sql> minextents 2 maxextents 100);
6.manually allocating extents
sql> alter table table_name allocate extent(size 500k datafile 'c:/oracle/data.dbf');
7.move tablespace
sql> alter table employee move tablespace users;
8.deallocate of unused space
sql> alter table table_name deallocate unused [keep integer]
9.truncate a table
sql> truncate table table_name;
10.drop a table
sql> drop table table_name [cascade constraints];
11.drop a column
sql> alter table table_name drop column comments cascade constraints checkpoint 1000;
alter table table_name drop columns continue;
12.mark a column as unused
sql> alter table table_name set unused column comments cascade constraints;
alter table table_name drop unused columns checkpoint 1000;
alter table orders drop columns continue checkpoint 1000
data_dictionary : dba_unused_col_tabs
第四章:索引
1.creating function-based indexes
sql> create index summit.item_quantity on summit.item(quantity-quantity_shipped);
2.create a B-tree index
sql> create [unique] index index_name on table_name(column,.. asc/desc) tablespace
sql> tablespace_name [pctfree integer] [initrans integer] [maxtrans integer]
sql> [logging | nologging] [nosort] storage(initial 200k next 200k pctincrease 0
sql> maxextents 50);
3.pctfree(index)=(maximum number of rows-initial number of rows)*100/maximum number of rows
4.creating reverse key indexes
sql> create unique index xay_id on xay(a) reverse pctfree 30 storage(initial 200k
sql> next 200k pctincrease 0 maxextents 50) tablespace indx;
5.create bitmap index
sql> create bitmap index xay_id on xay(a) pctfree 30 storage( initial 200k next 200k
sql> pctincrease 0 maxextents 50) tablespace indx;
6.change storage parameter of index
sql> alter index xay_id storage (next 400k maxextents 100);
7.allocating index space
sql> alter index xay_id allocate extent(size 200k datafile 'c:/oracle/index.dbf');
8.alter index xay_id deallocate unused;
第五章:约束
1.define constraints as immediate or deferred
sql> alter session set constraint[s] = immediate/deferred/default;
set constraint[s] constraint_name/all immediate/deferred;
2. sql> drop table table_name cascade constraints
sql> drop tablespace tablespace_name including contents cascade constraints
3. define constraints while create a table
sql> create table xay(id number(7) constraint xay_id primary key deferrable
sql> using index storage(initial 100k next 100k) tablespace indx);
primary key/unique/references table(column)/check
4.enable constraints
sql> alter table xay enable novalidate constraint xay_id;
5.enable constraints
sql> alter table xay enable validate constraint xay_id;
第六章:LOAD数据
1.loading data using direct_load insert
sql> insert /*+append */ into emp nologging
sql> select * from emp_old;
2.parallel direct-load insert
sql> alter session enable parallel dml;
sql> insert /*+parallel(emp,2) */ into emp nologging
sql> select * from emp_old;
3.using sql*loader
sql> sqlldr scott/tiger
sql> control = ulcase6.ctl
sql> log = ulcase6.log direct=true
第七章:数据整理
1.using expoty
$exp scott/tiger tables(dept,emp) file=c:emp.dmp log=exp.log compress=n direct=y
2.using import
$imp scott/tiger tables(dept,emp) file=emp.dmp log=imp.log ignore=y
3.transporting a tablespace
sql>alter tablespace sales_ts read only;
$exp sys/.. file=xay.dmp transport_tablespace=y tablespace=sales_ts
triggers=n constraints=n
$copy datafile
$imp sys/.. file=xay.dmp transport_tablespace=y datafiles=(/disk1/sles01.dbf,/disk2
/sles02.dbf)
sql> alter tablespace sales_ts read write;
4.checking transport set
sql> DBMS_tts.transport_set_check(ts_list =>'sales_ts' ..,incl_constraints=>true);
在表transport_set_violations 中查看
sql> dbms_tts.isselfcontained 为true 是, 表示自包含
第八章: 密码安全与资源管理
1.controlling account lock and password
sql> alter user juncky identified by oracle account unlock;
2.user_provided password function
sql> function_name(userid in varchar2(30),password in varchar2(30),
old_password in varchar2(30)) return boolean
3.create a profile : password setting
sql> create profile grace_5 limit failed_login_attempts 3
sql> password_lock_time unlimited password_life_time 30
sql>password_reuse_time 30 password_verify_function verify_function
sql> password_grace_time 5;
4.altering a profile
sql> alter profile default failed_login_attempts 3
sql> password_life_time 60 password_grace_time 10;
5.drop a profile
sql> drop profile grace_5 [cascade];
6.create a profile : resource limit
sql> create profile developer_prof limit sessions_per_user 2
sql> cpu_per_session 10000 idle_time 60 connect_time 480;
7. view => resource_cost : alter resource cost
dba_Users,dba_profiles
8. enable resource limits
sql> alter system set resource_limit=true;
第九章:用户管理
1.create a user: database authentication
sql> create user juncky identified by oracle default tablespace users
sql> temporary tablespace temp quota 10m on data password expire
sql> [account lock|unlock] [profile profilename|default];
2.change user quota on tablespace
sql> alter user juncky quota 0 on users;
3.drop a user
sql> drop user juncky [cascade];
4. monitor user
view: dba_users , dba_ts_quotas
第十章:特权管理
1.system privileges: view => system_privilege_map ,dba_sys_privs,session_privs
2.grant system privilege
sql> grant create session,create table to managers;
sql> grant create session to scott with admin option;
with admin option can grant or revoke privilege from any user or role;
3.sysdba and sysoper privileges:
sysoper: startup,shutdown,alter database open|mount,alter database backup controlfile,
alter tablespace begin/end backup,recover database
alter database archivelog,restricted session
sysdba: sysoper privileges with admin option,create database,recover database until
4.password file members: view:=> v$pwfile_users
5.O7_dictionary_accessibility =true restriction access to view or tables in other schema
6.revoke system privil
企业、个人免费注册,获取想要的 深圳 软件工程师招聘信息 月薪最低3000-8000,更有高端猎头职位!
发表评论
-
oracle join 连接查询
2010-10-07 12:37 1353... -
Oracle性能优化技巧
2010-09-28 13:27 1024今天没事来说说oracle性能优化的技巧。。 1.选用适合的 ... -
Oracle、DB2、SQLSERVER、Mysql、Access分页SQL语句
2010-09-27 08:51 1328最近把平时在项目中常用到的数据库分 ... -
出现mysql max-connections问题解决解决办法
2010-09-26 17:19 1489查看变量:mysql -pshow variables;或者m ... -
Oracle触发器语法及实例
2010-09-26 10:22 2649一 Oracle触发器语法 触发器是特定事件出现的 ... -
数据库设计中的14个技巧
2010-09-25 13:21 8941. 原始单据与实体之间的关系 可以是一对一、一对多、多 ... -
存储过程编写经验和优化措施
2010-09-25 13:18 780在网友的博客中看到这 ... -
数据库查询优化让sql执行更快
2010-09-25 13:17 869人们在使用SQL时往往会陷入一个误区,即太关注于所得的结 ... -
解决SQL数据库日志已满的问题
2010-09-24 09:05 1687一、简单方法1、右键数据库→属性→选项→故障还原模型 ... -
mysql数据库与win7兼容问题解决办法
2010-09-17 08:51 2845有的win7版本可以和mysql兼容,可以很容易安装上 ...
相关推荐
本文将详细介绍《oracle_DBA常用命令》文档中提及的关键知识点及其应用场景,帮助读者深入理解并掌握这些实用技巧。 #### 1. 显示所有参数及其设置值 **命令:** `SELECT * FROM v$parameter;` - **作用:** 此命令...
DBA 常用命令集锦 DBA(Database Administrator)是数据库管理员的简称,负责数据库的日常管理、维护和优化。DBA 需要掌握大量的命令和技术来完成日常工作。下面是 DBA 常用的命令集锦,包括连接数据库、查看用户...
"DBA常用命令270条" DBA(Database Administrator)是管理和维护数据库的专业人员,需要掌握丰富的数据库管理命令。 Oracle 是一种流行的关系数据库管理系统, DBA 需要熟悉 Oracle 的管理命令来高效管理数据库。 ...
Oracle DBA在日常工作中经常会与UNIX/Linux操作系统打交道,掌握一些常用的UNIX命令对于高效管理Oracle数据库至关重要。以下是一些Oracle DBA在UNIX环境下常用的命令及其详细解释: 1. **删除Oracle进程**: - `ps...
以下是一些常用的Oracle DBA命令,它们涵盖了连接数据库、查看用户信息、表结构、系统资源状态等多个方面: 1. **连接数据库**: - `sqlplus /nolog`:启动SQL*Plus工具,不自动连接到任何数据库。 - `conn / as ...
### Linux 下 Oracle 启动关闭及常用命令 #### 一、概述 在 Linux 系统中管理和操作 Oracle 数据库是一项常见的任务。对于数据库管理员(DBA)而言,掌握如何在 Linux 环境下启动、关闭 Oracle 数据库以及常用的...
为了高效地管理Oracle数据库,DBA需要熟练掌握一系列的命令与工具。 #### 二、SQL*Plus工具入门 SQL*Plus是Oracle提供的一个命令行工具,用于执行SQL语句和PL/SQL块。它是Oracle DBA最常用的工具之一。 - **启动SQL...
以上命令是 Oracle DBA 必须掌握的基本操作之一,熟练掌握这些命令对于日常管理和维护 Oracle 数据库至关重要。通过实践这些命令,DBA 可以更有效地监控和调整数据库性能,确保系统的稳定性和安全性。
Oracle DBA在日常工作中需要掌握一系列的SQL命令来监控、维护和优化Oracle数据库系统。这些SQL命令不仅能够帮助DBA了解数据库的状态,还能有效地解决出现的问题。下面将详细介绍一些重要的SQL命令及其用途。 #### 1...
了解Unix的基本架构、目录结构(如/、/bin、/usr等)、Shell脚本编写和常用命令是每个Oracle DBA必备的基础。 2. **进程管理**:Unix系统中的进程是执行中的程序实例。DBA需要熟悉`ps`、`kill`、`nice`和`renice`等...
了解并掌握RAC的常用管理命令对于DBA来说至关重要,这有助于确保系统的稳定运行和高效管理。下面将详细介绍一些关键的Oracle 12c RAC管理命令。 1. **crsctl**: Oracle Clusterware 的控制工具,用于管理集群资源和...
Oracle DBA常用指令详解 一、SQLPLUS工具与基本连接操作 1. **启动SQLPLUS工具**:`sqlplus` - SQLPLUS是Oracle数据库的标准客户端工具,用于执行SQL语句和PL/SQL块。 2. **以操作系统默认身份连接数据库**:`/as...
### Oracle DBA基础知识 #### 一、Oracle体系结构 ##### 1.1 Oracle Server Oracle Server 是Oracle数据库的核心组件,负责处理用户请求并提供数据库服务。...希望本文能够帮助读者更好地掌握Oracle DBA的基础知识。
以下是一些常见的Oracle DBA SQL命令,它们涵盖了表空间、数据文件、回滚段、控制文件、日志文件、会话信息、字符集、SQL优化方式以及系统状态等多个方面的内容。 1. **查看表空间及大小**: 使用`SELECT`语句从`...
### DBA常用SQL总结 #### 一、DBA的基本职责与技能要求 作为一个数据库管理员(DBA),除了具备一定的技术背景之外,还需要深入了解业务流程以及业务对于数据库的具体操作需求。这意味着DBA不仅要能够确保数据库...
标题中的"oracle, dba, shell, c"代表了四个主要的技术领域,分别是Oracle数据库、DBA(数据库管理员)、Shell脚本以及C语言。这些知识点是IT行业中的基础且重要的部分,尤其对于数据库管理和运维人员来说,掌握这些...
以下是一些DBA必须了解和掌握的知识点: 1. 数据恢复技术: - **误删数据恢复**:在Oracle数据库中,如果意外删除了表或数据,可以通过“闪回”功能进行恢复。例如,可以使用`FLASHBACK TABLE`语句恢复已删除的表...
由于其复杂性和特定的技术架构,对于Oracle DBA而言,掌握如何高效管理和维护PeopleSoft环境下的数据库至关重要。 ### 描述:“对于学习Oracle的人来说,帮助会很多。” 这表明本书不仅适用于已经在Oracle环境下...
本文将详细介绍Oracle的一些常用命令,以及如何有效地利用数据字典。 首先,让我们关注Oracle的启动和关闭过程。在单机环境中,启动Oracle系统通常需要以Oracle用户身份登录,然后使用`sqlplus /nolog`进入SQL*Plus...