上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 104 下一页
摘要: 主库和备库之间的redo log传递,可以通过如下方式实现:在主库端:log_archive_dest_1='主库本地路径'log_archive_dest_2='备库的net service名'特此备忘! 阅读全文
posted @ 2014-03-21 17:41 健哥的数据花园 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 当机器的IP地址改变了,或者机器名改变后,动态注册可能会失败。运行 lsnrctl status时,无论等待多久,都会发生:no services 这样的信息。此时,最好的解决方法,就是删除原有listener,通过netca重新建立 listener,其实质是重新建立listener.ora。可以发现原来的 host部分为 127.0.0.1,重新建立listener后,变成实际的IP地址。此时,再启动 listener,看 lsnrctl status ,可以看到数据库可以动态注册到此listener上。 阅读全文
posted @ 2014-03-21 17:35 健哥的数据花园 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 如果出现 ORA-01499,说明 table 和 index之间的相互参照出了错: http://iderror.com/errors/oracle/oracle-db/ora-00900-to-ora-01499/ora-01499-tableindex-cross-reference-fail 阅读全文
posted @ 2014-03-21 17:03 健哥的数据花园 阅读(1902) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# lsb_release -aLSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarchDistributor ID: EnterpriseEnterpriseServerDescription: Enterprise Linux Enterprise Linux Serve 阅读全文
posted @ 2014-03-20 12:48 健哥的数据花园 阅读(808) 评论(0) 推荐(0) 编辑
摘要: 首先看状况:SQL> select file_id,file_name,tablespace_name,autoextensible from dba_data_files;FILE_ID FILE_NAME TABLESPACE AUTOEXTENS------- -------------------------------------------------- ---------- ---------- 4 /u01/app/oracle/oradata/orcl/users01.dbf USERS YES 3 /u01/app/oracle/oradata/orcl/undotb 阅读全文
posted @ 2014-03-20 09:22 健哥的数据花园 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 开始 SQL> col file_id format 99SQL> col file_name format a50SQL> col tablespace_name format a10SQL> col autoextensible format a10SQL> select file_id,fil 阅读全文
posted @ 2014-03-20 08:58 健哥的数据花园 阅读(4828) 评论(0) 推荐(0) 编辑
摘要: 返回 Oracle 索引页 创建时出错: SQL> create tablespace gaotbs logging datafile '/u01/app/datafiles/gaodata1.dbf' 2 size 50M autoextend on next 50M maxsize 2048M 阅读全文
posted @ 2014-03-20 08:48 健哥的数据花园 阅读(30986) 评论(0) 推荐(0) 编辑
摘要: 对字符型,用axx格式,对数字型,用9999 格式(999表示占用3列)SQL> col 'ts#' format 999SQL> col 'file#' format 999SQL> col 'name' format a50SQL> select ts#,file#,name from v$datafile;TS# FILE# NAME---- ----- -------------------------------------------------- 0 1 /u01/app/oracle/oradata/orc 阅读全文
posted @ 2014-03-20 08:25 健哥的数据花园 阅读(1443) 评论(0) 推荐(0) 编辑
摘要: 先观察当前的状态:[root@o_target ~]# su - oracle [oracle@o_target ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Wed Mar 19 12:38:24 2014 Copyright (c) 1982, 2009, Oracle. All rights reserved. Connected to an idle instance. SQL> startup; ORACLE instance started. Total System Global A.. 阅读全文
posted @ 2014-03-20 08:03 健哥的数据花园 阅读(3662) 评论(0) 推荐(0) 编辑
摘要: 模式1:最大可保护模式: 必须同步。模式2:最大可用性模式: 能同步就同步,不能同步就不同步。模式3:最大性能模式: 异步模式。 阅读全文
posted @ 2014-03-18 08:07 健哥的数据花园 阅读(221) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 104 下一页