Error ORA-01408 when creating index
摘要:Cause: index 已存在 Resolution 1. 查找index select owner, index_name from dba_indexes where table_name='<table_name>'; 2. 查找index的列名 select index_owner, in
阅读全文
posted @
2021-04-09 09:59
InnoLeo
阅读(294)
推荐(0) 编辑
ORA-27302: failure occurred at: sskgpsemsper
摘要:oracle 起动错误 SQL> startup; ORA-27154: post/wait create failed ORA-27300: OS system dependent operation:semget failed with status: 28 ORA-27301: OS fail
阅读全文
posted @
2020-10-23 19:23
InnoLeo
阅读(293)
推荐(0) 编辑
静默安装ORACLE数据库软件
摘要:用响应文件,加快安装oracleDB 软件 1.指定DBNAME和版本号 ORACLE_BASE=/oracle/DBNAME ORACLE_HOME=/oracle/DBNAME/版本号 2.响应文件手动生成 3.oracle的安装目录指定为/oracle/database/ 以下是脚本 #!/b
阅读全文
posted @
2020-10-21 23:38
InnoLeo
阅读(195)
推荐(0) 编辑
启动服务器上的所有oracle数据库
摘要:当服务器上有多台数据库时,如何管理: 思路通过 找文件"/bin/oracle" 确定oracle实例,列出本台服务器上所有的"/bin/oracle "文件,然后再根据此文件所有者(DB OWNER),通过sqlplus 脚本关闭和开起 以下是代码 #!/bin/bash #+++++++++++
阅读全文
posted @
2020-10-21 23:17
InnoLeo
阅读(284)
推荐(0) 编辑
脚本 起动本机数据库存所有的oralce监听
摘要:当一台服务器上有很多侦听时,如何用脚本一次起动 #!/bin/bash #+++++++++++++++++++++++++++++++++++++++++++++ # stop and start all oracle database listener in a server # # Param
阅读全文
posted @
2020-10-17 01:53
InnoLeo
阅读(90)
推荐(0) 编辑
都是逗号惹的祸 ORA-01017: invalid username/password; logon denied
摘要:在做SAP系统迁移的时间发现一个问题 ORA-01017: invalid username/password; logon denied root@test:> brconnect -u // -c -f check BR0801I BRCONNECT 7.40 (36) BR0805I Star
阅读全文
posted @
2020-07-03 23:55
InnoLeo
阅读(596)
推荐(0) 编辑
Physical Standby Switchover_status Showing Not Allowed
摘要:状态列表: In Oracle documentation explain SWITCHOVER_STATUS column of v$database can have the following values: NOT ALLOWED – Either this is a standby dat
阅读全文
posted @
2020-07-01 13:47
InnoLeo
阅读(1018)
推荐(0) 编辑
REHL8 ORACLE 19c DATAGUARD配置
摘要:1.oracle 用户环境: 主库: [oracle@hzmtx admin]$ cat ~/.bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi
阅读全文
posted @
2020-06-27 23:45
InnoLeo
阅读(897)
推荐(0) 编辑
oracle 19c 主备切换
摘要:主库: SQL> alter database commit to switchover to physical standby with session shutdown; Database altered. SQL> startup ORACLE instance started. Total
阅读全文
posted @
2020-06-27 23:21
InnoLeo
阅读(805)
推荐(0) 编辑
sqlplus 带特殊字符的密码输入
摘要:总结oracle sqlplus 带特殊字符密码输入方法,推荐使用最后一种.
阅读全文
posted @
2020-06-20 00:44
InnoLeo
阅读(1210)
推荐(0) 编辑
ORA-01017:invalid username/password;Logon denied
摘要:错误信息:ORA-01017:invalid username/password;Logon denied 检查本地登录成功 [oralu8@lu8db dbs]$ sqlplus SQL*Plus: Release 12.2.0.1.0 Production on Tue Jun 16 16:33
阅读全文
posted @
2020-06-16 16:43
InnoLeo
阅读(2141)
推荐(0) 编辑
oracle hint 知多少
摘要:oracle hint 可以用V$sql_hint 来查询,比如有多少个INDEX相关的hint >set pagesize 500>set linesize 300>select NAME,CLASS,VERSION,PROPERTY from v$sql_hint where name like
阅读全文
posted @
2020-06-03 23:42
InnoLeo
阅读(251)
推荐(0) 编辑
[ORACLE] SNC 学习
摘要:SCN SCN(System Change Number),也就是通常所说的系统改变号或者系统提交号,是数据库中非常重要的一个数据结构。 SCN用以标识数据库在某个确切时刻提交的版本。在事务提交时,它被赋予一个唯一的标识事务的SCN。SCN同时被作为Oracle数据库的内部时钟机制,可被看做逻辑时钟
阅读全文
posted @
2020-05-15 22:54
InnoLeo
阅读(359)
推荐(0) 编辑
[oracle]sqlplus 输出格式化print_table学习
摘要:经典的print_table学习 存储过程接受两个参数:SQL语句和日期,还使存储过程可以使用role 权限 create or replace procedure print_table(p_query in varchar2,p_date_fmt in varchar2 default 'DD-
阅读全文
posted @
2020-05-15 21:35
InnoLeo
阅读(764)
推荐(0) 编辑
[ORACLE]ORA-03113: end-of-file on communication channel
摘要:Issue: SYS @ D4C>startup ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance ORACLE instance started. Total System Global Area
阅读全文
posted @
2020-05-15 11:48
InnoLeo
阅读(269)
推荐(0) 编辑
cx_Oracle.DatabaseError: Error while trying to retrieve text for error ORA-01804
摘要:环境: Win10 +pycharm+cx_oracle 都是64位 错误信息: cx_Oracle.DatabaseError: Error while trying to retrieve text for error ORA-01804 解决步骤: 1. ORACLE_HOME and PAT
阅读全文
posted @
2020-05-12 22:19
InnoLeo
阅读(5972)
推荐(0) 编辑
[oracle]Buffer Cache 原理
摘要:Buffer Cache 通常的数据访问和修改都需要通过 Buffer Cache 来完成。当一个进程需要访问数据时,首先需要确定数据在内存中是否存在,如果数据在 Buffer 中存在,则需要根据数据的状态来判断是否可以直接访问还是需要构造一致性读取; 如果数据在 Buffer 中不存在,则需要在
阅读全文
posted @
2020-05-05 10:39
InnoLeo
阅读(827)
推荐(0) 编辑
[oracle]Oracle查询表空间的每日增长量
摘要:SELECT a.snap_id, a.con_id, e.name pdbname, c.tablespace_name ts_name, to_char(to_date(a.rtime, 'mm/dd/yyyy hh24:mi:ss'), 'yyyy-mm-dd hh24:mi') rtime,
阅读全文
posted @
2020-05-03 23:28
InnoLeo
阅读(2619)
推荐(0) 编辑
[ORACLE] DB 表锁定问题
摘要:问题出现ORACLE表锁定 SQL> select object_name,session_id,os_user_name,oracle_username,process,locked_mode,status from v$locked_object l, all_objects a where l
阅读全文
posted @
2020-04-28 20:09
InnoLeo
阅读(165)
推荐(0) 编辑
[ORACLE]ORA-03113: end-of-file on communication channel
摘要:数据库启动失败 ORA-03113: end-of-file on communication channel SQL> startup ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance ORACL
阅读全文
posted @
2020-04-26 22:39
InnoLeo
阅读(588)
推荐(0) 编辑