- 首页 > 数据库 > ORACLE > 列表
- 有很多种方法可以用来找出哪些SQL语句需要优化,但是很久以来,最简单的方法都是分析保存在V$SQL视图中的缓存的SQL信息。通过V$SQL视图,可以确定具有高消耗时间、CUP和IO读取的SQL语句。1.查看总消耗时间最多的前 2013-12-13
- orale 已存在的表和 SEQUENCE 查询和删除 declare num number; begin select count(1) into num from all_tables where TABLE_NAME = #39;TU_DIS_ES_COMMISSION_HIST #39; ; if num=1 t 2013-12-13
- 一. AWR 概述之前整理过一篇AWR 的说明的文档:Oracle AWR(Automatic Workload Repository) 说明http://blog.csdn.net/tianlesoftware/article/details/4682300从Oracle 10g 开始,Oracle 推出一个工具:AWR(Au 2013-12-13
- 所谓集合是一种类似于列表或者一维数组的数据结构。PL/SQL提供了三种集合类型:关联数据组(索引表),嵌套表和VARRAY(可变长数组)。 1.集合类型1.1关联数组关联数组(也称为索引表)是一组键值对。每个密钥都是 2013-12-13
- DRM 分析及案例讲解什么是DRMDRM(Dynamic Resource management)是oracle10.10.2里面推出来的一个新特性,一直到现在最新的12cR1,都存在,且bug非常多而著称。在10gR1 RAC是每个实例都有其自己的SGA和buffer cac 2013-12-12
- 141. View the Exhibitand examine the structure of CUSTOMERS and GRADES tables.You need to displaynames and grades of customers who have the highest credit limit.Which two SQL statementswould accomp 2013-12-12
- 631.View the Exhibit and examine the output of the query in different times when the following command runs in an RMAN sessions:RMAN> BACKUP DATABASE FILESPERSET 2;The database has seven data files. 2013-12-12
- 1.rank函数rank计算一组值的排名,返回数字类型。排名可能是不连续。如果有5人,其中有2个人排名第一,则rank返回的排名结果为:1 1 3 4 5。作为一个聚合函数,返回虚拟行在样表中的排名。作为一个解析函数,返回每 2013-12-12
- 从oracle 11.2.0.2开始提供了用户重命名的新特性,在以前的版本中,如果需要rename username我们一般使用imp的fromuser、touser,数据泵impdp的remap_schemas。如果说我们要导入一个schema数据替代以前的schema,并 2013-12-12
- ORACLE没有自增数据类型,如需生成业务无关的主键列或惟一约束列,可以用sequence序列实现。CREATE SEQUENCE语句及参数介绍:详见官方文档:http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_60 2013-12-12
- 11gR2修改index状态为unusable,则相应的segment将会被删除,测试如需:SQL> create table MY_OBJECTS as select * from dba_objects;Table created.SQL> create index ind_object_id on my_objects(objec 2013-12-12
- DECLARE sqlStr VARCHAR2(2000); --拼写sql flag int; --判断是否存在 col_name VARCHAR2(100); --字段名字 tab_name VARCHAR2(100); --表名 col_type VARCHAR2(100); - 2013-12-12
- 环境:OS:Linux AS 5DB:11.2.0.1 下面介绍如何在11GR2下创建Dataguard. --------------------------------------主库上的操作---------------------------------------------------1.设置主库为force logging模式SQ 2013-12-12
- Oracle instr函数 INSTR (源字符串, 目标字符串, 起始位置, 匹配序号) 在Oracle/PLSQL中,instr函数返回要截取的字符串在源字符串中的位置。只检索一次,就是说从字符的开始 到字符的结尾就结束。 语 2013-12-12
- create or replace procedure "CREAR_PF_VIEW" is pragma AUTONOMOUS_TRANSACTION; cursor cur is --定义游标 SELECT SPBLX FROM YDS_SHBPDY; sqlstr varchar2(32767); sql_ls varchar2(3276 2013-12-12
- 632.Note the following parameter settings: Which setting is NOT allowed?A. ALTER SYSTEM SET DB_CACHE_SIZE=50M;B. ALTER SYSTEM SET DB_8K_CACHE_SIZE=10M;C. ALTER SYSTEM SET DB_4K_CACHE_SIZE=10M;D. ALT 2013-12-12
- 位图索引的一大优势便是可以对索引使用逻辑操作,如 and or等。Bitmap Minus Operation 是位图索引逻辑操作的一种,在类似 where c1 = :v1 and not c2 = :v2 的情况下,有可能会发生Bitmap Minus Operation。 SQL> 2013-12-12
- 635.While Monitoring the space usage in your database that is in ARCHIVELOG mode you observed thatthe flash recovery area does not have enough free space to accommodate any more files and you do not 2013-12-12
- Oracle Database 11gR1 故障管理 Oracle Database 11gR1 故障管理故障可诊断性基础结构的目标如下: ? 预防性地检测问题 ? 检测到问题后,限制损坏和中断 ? 减少问题诊断时间 ? 减少问题解决时间 ? 简化客户与Ora 2013-12-12
- 数据拆分迁移后,在逻辑备份方面保留使用就的备份策略。由于新库为11g,老版本的10g exp客户端无法导出新库数据,故升级客户端到11g,测试中又遇到ORA-00904: "POLTYP": 标识符无效错误。查阅资料如下:This error 2013-12-12