Oracle
文章平均质量分 54
lucy_liu2014
成长不止,善良依旧
展开
-
DBA 面试题
-------数据库基本概念----------1. pctused and pctfree表示什么含义,有什么作用?2. 简单描述 table/segment/extent/block 之间的关系3. 描述tablespace 和 datafile 的关系4. 本地管理表空间和字典管理表空间的特点,ASSM 有什么特点?5. 回滚段的作用是什么?6. 日志的作用是什么?7. S...原创 2018-07-24 14:13:30 · 5366 阅读 · 1 评论 -
oracle主键和索引
Case 1: 先创建主键,再级联删除key,索引级联删除;STEP 1. SQL >create table t1(x int, y int);STEP 2. SQL >alter table t1 add (constraint pk_t1 primary key(x));STEP 3. SQL >select INDEX_NAME,INDEX_TY...原创 2017-10-13 21:48:17 · 2581 阅读 · 0 评论 -
Oracle Database Daily Check
---------------host check----------------------------1.check disk usage of db server #df -h-----2.check memory info of db server #free -m--------------database check--------------...原创 2017-10-13 21:50:25 · 500 阅读 · 0 评论 -
DG 搭建
-- 1. check file list-- 1.1 on primary server, check files which are needed to be restore on standbyselect name from v$datafile;-- 1.2 on primary server, check init.ora and standby controle fi...原创 2017-10-13 22:08:57 · 362 阅读 · 0 评论 -
oracle禁用外键关联约束
declare v_sql varchar2(4000);begin for item in (select 'alter table ' || t.table_name || ' disable constraint ' || t.constraint_name as sql_text from user_...原创 2017-10-13 22:12:09 · 890 阅读 · 0 评论 -
举例如何使用bulk collect into , extend(), multiset union,dbms_metadata.get ddl?
----BULK COLLECT INTODECLARE TYPE REC_NORMAL IS RECORD( COLUMN_NAME USER_IND_COLUMNS.COLUMN_NAME%TYPE, COLUMN_POSITION USER_IND_COLUMNS.COLUMN_POSITION%TYPE); TYPE NNT_NORMAL IS TA...原创 2017-10-20 15:38:22 · 441 阅读 · 0 评论 -
自动化创建物化视图V1
需求背景: app 数据库类型OLTP 主要是数据仓库纬度数据表;pos数据库类型是OLAT 做数据分析用,大量门店销售数据,进行物流仓库货物调拨,通过系统进行分获配货调拨;step 1. 删除所有pos 数据库正在进行的job任务 BEGIN FOR ITEM IN (SELECT * FROM (select o.* from USE...原创 2017-10-20 15:43:58 · 641 阅读 · 0 评论 -
自动化创建物化视图升级V2
-- Keep the structure of materialized view in the existing environment and reconstruct the-- materialized view without any difference to the environment.Script File Name--------------------------...原创 2018-07-16 18:39:45 · 160 阅读 · 0 评论 -
Database Migration
Contents1. Database Migration. 1.1 New DB Creation. We create the new database MAP7APP, MAP7POS via Automation scripts1. Create database MAP7APP, run automation scripts (The Script i...原创 2018-07-16 18:49:22 · 1404 阅读 · 0 评论 -
Oracle 11g启动数据库报错ora-00845
操作系统版本:CentOS 5.4数据库版本:11.2.0.2SQL> startupORA-00845: MEMORY_TARGET not supported on this system内存自动管理的参数MEMORY_TARGET,它能自动调整SGA和PGA,这个特性需要用到/dev/shm共享文件系统,而且要求/dev/shm必须大于MEMORY_TARGET,...原创 2017-03-17 10:26:55 · 1447 阅读 · 0 评论