Oracle数据库数据恢复、性能优化

找回密码
注册
搜索
热搜: 活动 交友 discuz
发新帖

2135

积分

502

好友

184

主题
1#
发表于 2011-12-29 23:16:51 | 查看: 17332| 回复: 6
I did as what I am writing here to replacate 2 oracle database exists on 2 different servers.

The problem is that when i write info all on source database its status is
Manager Running, Extract STOP


I did the following on the Source Side:
add extract ext1, tranlog, begin now
add exttrail /u01/app/oracle/product/gg/dirdat/lt, extract ext1
edit params ext1
--extract group--
extract ext1
--connection to database--
userid ggate, password qwerty
--hostname and port for trail--
rmthost etisalby.bss.com, mgrport 7809
--path and name for trail--
rmttrail /u01/app/oracle/product/gg/dirdat/lt
--DDL support
ddl include mapped objname sender.*;
--DML
table sender.*


This is what I did at the target dtabase
edit params ./GLOBAL
GGSCHEMA ggate
CHECKPOINTTABLE ggate.checkpoint
dblogin userid ggate
add checkpointtable ggate.checkpoint
add replicat rep1, exttrail /u01/app/oracle/product/gg/dirdat/lt,checkpointtable ggate.checkpoint
edit params rep1
--Replicat group --
replicat rep1
--source and target definitions
ASSUMETARGETDEFS
--target database login --
userid ggate, password qwerty
--file for dicarded transaction --
discardfile /u01/app/oracle/product/gg/discard/rep1_discard.txt, append, megabytes 10
--ddl support
DDL
--Specify table mapping ---
map sender.*, target receiver.*;


After these steps ON SOURCE I DID:
start extract ext1


and ON TARGET I DID:
start replicat rep1

Then this error came what i mentioned earlier
However rep1 is running on target site

After removing couple of errors, I am on a stage where the problem seems to be because of RAC:

These are the lines from log file: Will give you an idea where the problem is:

2011-12-25 15:19:22  INFO    OGG-00987  Oracle GoldenGate Command Interpreter for Oracle:  GGSCI command (oracle): edit param ext1.
2011-12-25 15:20:34  INFO    OGG-00987  Oracle GoldenGate Command Interpreter for Oracle:  GGSCI command (oracle): stop extract ext1.
2011-12-25 15:20:39  INFO    OGG-00987  Oracle GoldenGate Command Interpreter for Oracle:  GGSCI command (oracle): start extract ext1.
2011-12-25 15:20:39  INFO    OGG-00963  Oracle GoldenGate Manager for Oracle, mgr.prm:  Command received from GGSCI on host 10.168.20.31 (START EXTRACT EXT1 ).
2011-12-25 15:20:39  INFO    OGG-00975  Oracle GoldenGate Manager for Oracle, mgr.prm:  EXTRACT EXT1 starting.
2011-12-25 15:20:39  INFO    OGG-00992  Oracle GoldenGate Capture for Oracle, ext1.prm:  EXTRACT EXT1 starting.
2011-12-25 15:20:39  INFO    OGG-01635  Oracle GoldenGate Capture for Oracle, ext1.prm:  BOUNDED RECOVERY: reset to initial or altered checkpoint.
2011-12-25 15:20:41  WARNING OGG-01423  Oracle GoldenGate Capture for Oracle, ext1.prm:  No valid default archive log destination directory found for thread 1.
2011-12-25 15:20:41  WARNING OGG-01423  Oracle GoldenGate Capture for Oracle, ext1.prm:  No valid default archive log destination directory found for thread 2.
2011-12-25 15:20:42  INFO    OGG-00546  Oracle GoldenGate Capture for Oracle, ext1.prm:  Default thread stack size: 10485760.
2011-12-25 15:20:42  ERROR   OGG-00446  Oracle GoldenGate Capture for Oracle, ext1.prm:  The number of Oracle redo threads (2) is not the same as the number of checkpoint threads (1). EXTRACT groups on RAC systems should be created with the THREADS parameter (e.g., ADD EXT <group name>, TRANLOG, THREADS 2, BEGIN...).
2011-12-25 15:20:42  ERROR   OGG-01668  Oracle GoldenGate Capture for Oracle, ext1.prm:  PROCESS ABENDING.
下载专业ORACLE数据库恢复工具PRM-DUL  For Oracle http://www.parnassusdata.com/zh-hans/emergency-services

如果自己搞不定可以找诗檀软件专业ORACLE数据库修复团队成员帮您恢复!

诗檀软件专业数据库修复团队

服务热线 : 13764045638  QQ: 47079569   
2#
发表于 2011-12-29 23:17:36
Answer:


You see the below errors:


2011-12-25 15:20:42  ERROR   OGG-00446  Oracle GoldenGate Capture for Oracle, ext1.prm:  The number of Oracle redo threads (2) is not the same as the number of checkpoint threads (1). EXTRACT groups on RAC systems should be created with the THREADS parameter (e.g., ADD EXT <group name>, TRANLOG, THREADS 2, BEGIN...).
2011-12-25 15:20:42  ERROR   OGG-01668  Oracle GoldenGate Capture for Oracle, ext1.prm:  PROCESS ABENDING.


While you are using ogg in RAC env , you have to create the extract with THREADS parameter.

回复 只看该作者 道具 举报

3#
发表于 2011-12-29 23:17:58
Question:
Thanks you so much dear.

did it and came through the error.

Now extract is working fine on the source database.

But the replicat on the target database is not running.

The error I see in logs is:

2011-12-26 12:58:39 ERROR OGG-01296 Oracle GoldenGate Delivery for Oracle, rep1.prm: Error mapping from RADIUS_DSL.RADACCT to RADIUS_DSL.RADACCT.

And the status of replicat is ABENDED.

Even i tried exporting schema from source DB and import it into target, result was the same. I don't know why it it not ignoring constarints and object existence. Is there any parameter? It should only insert new records.

回复 只看该作者 道具 举报

4#
发表于 2011-12-29 23:18:10
Answer:

your replicat setting is ASSUMETARGETDEFS;

please desc this RADIUS_DSL.RADACCT on both sides ;


desc RADIUS_DSL.RADACCT;

or  dbms_metadata.get_ddl like

set serveroutput on ;

declare
  res varchar2(500);
begin
  res := dbms_metadata.get_ddl(object_type => 'TABLE',
                               name        => 'RADACCT',
                               schema      => 'RADIUS_DSL');
  dbms_output.put_line(res);
end;
/

回复 只看该作者 道具 举报

5#
发表于 2011-12-29 23:18:24
Question:

Description of the table is same.

This is from the target:

SQL> desc radius_dsl.radacct;
Name                                      Null?    Type
----------------------------------------- -------- ----------------------------
RADACCTID                                 NOT NULL NUMBER(38)
ACCTSESSIONID                             NOT NULL VARCHAR2(64)
ACCTUNIQUEID                                       VARCHAR2(32)
USERNAME                                  NOT NULL VARCHAR2(64)
GROUPNAME                                          VARCHAR2(32)
REALM                                              VARCHAR2(30)
NASIPADDRESS                              NOT NULL VARCHAR2(15)
NASPORTID                                          VARCHAR2(15)
NASPORTTYPE                                        VARCHAR2(32)
ACCTSTARTTIME                                      TIMESTAMP(6) WITH TIME ZONE
ACCTSTOPTIME                                       TIMESTAMP(6) WITH TIME ZONE
ACCTSESSIONTIME                                    NUMBER(19)
ACCTAUTHENTIC                                      VARCHAR2(32)
CONNECTINFO_START                                  VARCHAR2(50)
CONNECTINFO_STOP                                   VARCHAR2(50)
ACCTINPUTOCTETS                                    NUMBER(19)
ACCTOUTPUTOCTETS                                   NUMBER(19)
CALLEDSTATIONID                                    VARCHAR2(50)
CALLINGSTATIONID                                   VARCHAR2(50)
ACCTTERMINATECAUSE                                 VARCHAR2(32)
SERVICETYPE                                        VARCHAR2(32)
FRAMEDPROTOCOL                                     VARCHAR2(32)
FRAMEDIPADDRESS                                    VARCHAR2(15)
ACCTSTARTDELAY                                     NUMBER(12)
ACCTSTOPDELAY                                      NUMBER(12)
XASCENDSESSIONSVRKEY                               VARCHAR2(10)

And this is from the source:

SQL> connect radius_dsl/ets_dsl82
Connected.
SQL> desc radacct;
Name                                      Null?    Type
----------------------------------------- -------- ----------------------------
RADACCTID                                 NOT NULL NUMBER(38)
ACCTSESSIONID                             NOT NULL VARCHAR2(64)
ACCTUNIQUEID                                       VARCHAR2(32)
USERNAME                                  NOT NULL VARCHAR2(64)
GROUPNAME                                          VARCHAR2(32)
REALM                                              VARCHAR2(30)
NASIPADDRESS                              NOT NULL VARCHAR2(15)
NASPORTID                                          VARCHAR2(15)
NASPORTTYPE                                        VARCHAR2(32)
ACCTSTARTTIME                                      TIMESTAMP(6) WITH TIME ZONE
ACCTSTOPTIME                                       TIMESTAMP(6) WITH TIME ZONE
ACCTSESSIONTIME                                    NUMBER(19)
ACCTAUTHENTIC                                      VARCHAR2(32)
CONNECTINFO_START                                  VARCHAR2(50)
CONNECTINFO_STOP                                   VARCHAR2(50)
ACCTINPUTOCTETS                                    NUMBER(19)
ACCTOUTPUTOCTETS                                   NUMBER(19)
CALLEDSTATIONID                                    VARCHAR2(50)
CALLINGSTATIONID                                   VARCHAR2(50)
ACCTTERMINATECAUSE                                 VARCHAR2(32)
SERVICETYPE                                        VARCHAR2(32)
FRAMEDPROTOCOL                                     VARCHAR2(32)
FRAMEDIPADDRESS                                    VARCHAR2(15)
ACCTSTARTDELAY                                     NUMBER(12)
ACCTSTOPDELAY                                      NUMBER(12)
XASCENDSESSIONSVRKEY                               VARCHAR2(10)

Structure is the same.

Also please suggest this, if its correct, I import fresh copy of my schema from source to target. This approach is OK?


This is the view report rep1

***********************************************************************
                 Oracle GoldenGate Delivery for Oracle
     Version 11.1.1.1.2 OGGCORE_11.1.1.1.2_PLATFORMS_111004.2100
   Linux, x64, 64bit (optimized), Oracle 11g on Oct  7 2011 05:44:59


Copyright (C) 1995, 2011, Oracle and/or its affiliates. All rights reserved.


                    Starting at 2011-12-26 14:35:06
***********************************************************************

Operating System Version:
Linux
Version #1 SMP Tue May 31 13:22:04 EDT 2011, Release 2.6.18-238.12.1.el5
Node: standbydb.etisalcom.private
Machine: x86_64
                         soft limit   hard limit
Address Space Size   :    unlimited    unlimited
Heap Size            :    unlimited    unlimited
File Size            :    unlimited    unlimited
CPU Time             :    unlimited    unlimited

Process id: 1613

Description:

***********************************************************************
**            Running with the following parameters                  **
***********************************************************************
--Replicat group --
replicat rep1
--source and target definitions
ASSUMETARGETDEFS
--target database login --

userid ggs_owner, password ******
--file for dicarded transaction --

discardfile /u01/app/ggs/discard/rep1_discard.txt, append, megabytes 10
--ddl support
DDL
--Specify table mapping ---

map radius_dsl.*, target radius_dsl.*;


CACHEMGR virtual memory values (may have been adjusted)
CACHEBUFFERSIZE:                         64K
CACHESIZE:                              512M
CACHEBUFFERSIZE (soft max):               4M
CACHEPAGEOUTSIZE (normal):                4M
PROCESS VM AVAIL FROM OS (min):           1G
CACHESIZEMAX (strict force to disk):    881M

Database Version:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
PL/SQL Release 11.2.0.1.0 - Production
CORE    11.2.0.1.0      Production
TNS for Linux: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production

Database Language and Character Set:
NLS_LANG environment variable specified has invalid format, default value will b
e used.
NLS_LANG environment variable not set, using default value AMERICAN_AMERICA.US7A
SCII.
NLS_LANGUAGE     = "AMERICAN"
NLS_TERRITORY    = "AMERICA"
NLS_CHARACTERSET = "WE8MSWIN1252"

Warning: your NLS_LANG setting does not match database server language setting.
Please refer to user manual for more information.

***********************************************************************
**                     Run Time Messages                             **
***********************************************************************

Opened trail file /u01/app/ggs/dirdat/lt000003 at 2011-12-26 14:35:06

Wildcard MAP resolved (entry RADIUS_DSL.*):
  map RADIUS_DSL.RADTRAFFICMONITOR, target radius_dsl.RADTRAFFICMONITOR;

2011-12-26 14:35:06  WARNING OGG-00869  No unique key is defined for table RADTR
AFFICMONITOR. All viable columns will be used to represent the key, but may not
guarantee uniqueness.  KEYCOLS may be used to define the key.
Using following columns in default map by name:
  RADMONITORID, ACCTSESSIONID, ACCTUNIQUEID, USERNAME, ACCTSTARTTIME,
  ACCTINPUTOCTETS, ACCTOUTPUTOCTETS

Using the following key columns for target table RADIUS_DSL.RADTRAFFICMONITOR: R
ADMONITORID, ACCTSESSIONID, ACCTUNIQUEID, USERNAME, ACCTSTARTTIME, ACCTINPUTOCTE
TS, ACCTOUTPUTOCTETS.


Wildcard MAP resolved (entry RADIUS_DSL.*):
  map RADIUS_DSL.RADACCT, target radius_dsl.RADACCT;
Using following columns in default map by name:
  RADACCTID, ACCTSESSIONID, ACCTUNIQUEID, USERNAME, GROUPNAME, REALM,
  NASIPADDRESS, NASPORTID, NASPORTTYPE, ACCTSTARTTIME, ACCTSTOPTIME,
  ACCTSESSIONTIME, ACCTAUTHENTIC, CONNECTINFO_START, CONNECTINFO_STOP,
  ACCTINPUTOCTETS, ACCTOUTPUTOCTETS, CALLEDSTATIONID, CALLINGSTATIONID,
  ACCTTERMINATECAUSE, SERVICETYPE, FRAMEDPROTOCOL, FRAMEDIPADDRESS,
  ACCTSTARTDELAY, ACCTSTOPDELAY, XASCENDSESSIONSVRKEY

Using the following key columns for target table RADIUS_DSL.RADACCT: RADACCTID.


2011-12-26 14:35:06  WARNING OGG-01004  Aborted grouped transaction on 'RADIUS_D
SL.RADACCT', Database error 1403 ().

2011-12-26 14:35:06  WARNING OGG-01003  Repositioning to rba 1862 in seqno 3.

2011-12-26 14:35:06  WARNING OGG-01154  SQL error 1403 mapping RADIUS_DSL.RADACC
T to RADIUS_DSL.RADACCT.

2011-12-26 14:35:06  WARNING OGG-01003  Repositioning to rba 1862 in seqno 3.

Source Context :
  SourceModule            : [er.main]
  SourceID                : [/scratch/pradshar/view_storage/pradshar_bugdbrh40_1
2927937/oggcore/OpenSys/src/app/er/rep.c]
  SourceFunction          : [take_rep_err_action]
  SourceLine              : [16148]
  ThreadBacktrace         : [8] elements
                          : [/u01/app/ggs/replicat(CMessageContext::AddThreadCon
text()+0x26) [0x5f2ac6]]
                          : [/u01/app/ggs/replicat(CMessageFactory::CreateMessag
e(CSourceContext*, unsigned int, ...)+0x7b2) [0x5e9562]]
                          : [/u01/app/ggs/replicat(_MSG_ERR_MAP_TO_TANDEM_FAILED
(CSourceContext*, DBString<777> const&, DBString<777> const&, CMessageFactory::M
essageDisposition)+0x9b) [0x5c79bb]]
                          : [/u01/app/ggs/replicat [0x832a3a]]
                          : [/u01/app/ggs/replicat [0x910279]]
                          : [/u01/app/ggs/replicat(main+0x84b) [0x5081ab]]
                          : [/lib64/libc.so.6(__libc_start_main+0xf4) [0x332f81d
994]]
                          : [/u01/app/ggs/replicat(__gxx_personality_v0+0x1da) [
0x4e479a]]

2011-12-26 14:35:06  ERROR   OGG-01296  Error mapping from RADIUS_DSL.RADACCT to
RADIUS_DSL.RADACCT.

***********************************************************************
*                   ** Run Time Statistics **                         *
***********************************************************************

Last record for the last committed transaction is the following:
___________________________________________________________________
Trail name :  /u01/app/ggs/dirdat/lt000003
Hdr-Ind    :     E  (x45)     Partition  :     .  (x04)
UndoFlag   :     .  (x00)     BeforeAfter:     A  (x41)
RecLength  :   426 (x01aa)    IO Time    : 2011-12-26 12:36:03.212064  
IOType     :    15  (x0f)     OrigNode   :   255  (xff)
TransInd   :     .  (x02)     FormatType :     R  (x52)
SyskeyLen  :     0  (x00)     Incomplete :     .  (x00)
AuditRBA   :       7315       AuditPos   : 3370436
Continued  :     N  (x00)     RecCount   :     1  (x01)

2011-12-26 12:36:03.212064 FieldComp          Len   426 RBA 2145
Name: RADIUS_DSL.RADACCT
___________________________________________________________________

Reading /u01/app/ggs/dirdat/lt000003, current RBA 2145, 1 records

Report at 2011-12-26 14:35:06 (activity since 2011-12-26 14:35:06)

From Table RADIUS_DSL.RADTRAFFICMONITOR to RADIUS_DSL.RADTRAFFICMONITOR:
       #                   inserts:         0
       #                   updates:         0
       #                   deletes:         0
       #                  discards:         1
From Table RADIUS_DSL.RADACCT to RADIUS_DSL.RADACCT:
       #                   inserts:         0
       #                   updates:         0
       #                   deletes:         0
       #                  discards:         1


DDL replication statistics:

                    Operations:         0
             Mapped operations:         0
           Unmapped operations:         0
              Other operations:         0
           Excluded operations:         0
                        Errors:         0
                Retried errors:         0
              Discarded errors:         0
                Ignored errors:         0




Last log location read:
     FILE:      /u01/app/ggs/dirdat/lt000003
     SEQNO:     3
     RBA:       2145
     TIMESTAMP: 2011-12-26 12:36:03.212064
     EOF:       NO
     READERR:   0


2011-12-26 14:35:06  ERROR   OGG-01668  PROCESS ABENDING.

CACHE OBJECT MANAGER statistics

CACHE MANAGER VM USAGE
vm current     =      0    vm anon queues =      0
vm anon in use =      0    vm file        =      0
vm used max    =      0    ==> CACHE BALANCED

CACHE CONFIGURATION
cache size       = 512M   cache force paging = 881M
buffer min       =  64K   buffer highwater   =   4M
pageout eligible size =   4M

================================================================================
RUNTIME STATS FOR SUPERPOOL

CACHE Transaction Stats
trans active   =      0    max concurrent =      0
non-zero total =      0    trans total    =      0

CACHE File Caching
disk current   =      0    disk total  =      0
disk caching   =      0    file cached =      0
file retrieves =      0

CACHE MANAGEMENT
buffer links  =      0   anon gets   =      0
forced unmaps =      0   cnnbl try   =      0
cached out    =      0   force out   =      0

Allocation Request Distribution
< 128B:       0
128B:        0         0     | 512B:        0         0
   2K:        0         0     |   8K:        0         0
  32K:        0         0     | 128K:        0         0
512K:        0         0     |   2M:        0         0
   8M:        0         0     |  32M:        0         0
128M:        0         0     | 512M:        0         0
   2G:        0         0     |   8G:        0

Cached Transaction Size Distribution
    0:        0
< 4K:        0
   4K:        0         0     |  16K:        0         0
  64K:        0         0     | 256K:        0         0
   1M:        0         0     |   4M:        0         0
  16M:        0         0     |  64M:        0         0
256M:        0         0     |   1G:        0         0
   4G:        0         0     |  16G:        0         0
  64G:        0         0     | 256G:        0         0
   1T:        0         0     |   4T:        0         0
  16T:        0         0     |  64T:        0         0
256T:        0         0     |1024T:        0         0

================================================================================
CUMULATIVE STATS FOR SUPERPOOL

CACHE Transaction Stats
trans active   =      0    max concurrent =      0
non-zero total =      0    trans total    =      0

CACHE File Caching
disk current   =      0    disk total  =      0
disk caching   =      0    file cached =      0
file retrieves =      0

CACHE MANAGEMENT
buffer links  =      0   anon gets   =      0
forced unmaps =      0   cnnbl try   =      0
cached out    =      0   force out   =      0

Allocation Request Distribution
< 128B:       0
128B:        0         0     | 512B:        0         0
   2K:        0         0     |   8K:        0         0
  32K:        0         0     | 128K:        0         0
512K:        0         0     |   2M:        0         0
   8M:        0         0     |  32M:        0         0
128M:        0         0     | 512M:        0         0
   2G:        0         0     |   8G:        0

Cached Transaction Size Distribution
    0:        0
< 4K:        0
   4K:        0         0     |  16K:        0         0
  64K:        0         0     | 256K:        0         0
   1M:        0         0     |   4M:        0         0
  16M:        0         0     |  64M:        0         0
256M:        0         0     |   1G:        0         0
   4G:        0         0     |  16G:        0         0
  64G:        0         0     | 256G:        0         0
   1T:        0         0     |   4T:        0         0
  16T:        0         0     |  64T:        0         0
256T:        0         0     |1024T:        0         0


QUEUE Statistics:
num queues    =     15     default index =      0
cur len       =      0     max len       =      0
q vm current  =      0     vm max        =      0
q hits        =      0     q misses      =      0

queue size  q hits  curlen  maxlen     cannibalized
  0   64K      0       0       0       0
  1  128K      0       0       0       0
  2  256K      0       0       0       0
  3  512K      0       0       0       0
  4    1M      0       0       0       0
  5    2M      0       0       0       0
  6    4M      0       0       0       0
  7    8M      0       0       0       0
  8   16M      0       0       0       0
  9   32M      0       0       0       0
10   64M      0       0       0       0
11  128M      0       0       0       0
12  256M      0       0       0       0
13  512M      0       0       0       0
14    1G      0       0       0       0

================================================================================
RUNTIME STATS FOR CACHE POOL #0
POOL INFO   group: rep1  id: p1613_BLOB
trans active  =       0   trans concurrent (max) =     0
trans total   =       0   (0 )
flag          = 0x00000030
last error    = (0=<none>)

Allocation Request Distribution
< 128B:       0
128B:        0         0     | 512B:        0         0
   2K:        0         0     |   8K:        0         0
  32K:        0         0     | 128K:        0         0
512K:        0         0     |   2M:        0         0
   8M:        0         0     |  32M:        0         0
128M:        0         0     | 512M:        0         0
   2G:        0         0     |   8G:        0

================================================================================
CUMULATIVE STATS FOR CACHE POOL #0
POOL INFO   group: rep1  id: p1613_BLOB
trans active  =       0   trans concurrent (max) =     0
trans total   =       0   (0 )
flag          = 0x00000030
last error    = (0=<none>)

Allocation Request Distribution
< 128B:       0
128B:        0         0     | 512B:        0         0
   2K:        0         0     |   8K:        0         0
  32K:        0         0     | 128K:        0         0
512K:        0         0     |   2M:        0         0
   8M:        0         0     |  32M:        0         0
128M:        0         0     | 512M:        0         0
   2G:        0         0     |   8G:        0


QUEUE Statistics:
num queues    =     15     default index =      0
cur len       =      0     max len       =      0
q vm current  =      0     vm max        =      0
q hits        =      0     q misses      =      0

queue size  q hits  curlen  maxlen     cannibalized
  0   64K      0       0       0       0
  1  128K      0       0       0       0
  2  256K      0       0       0       0
  3  512K      0       0       0       0
  4    1M      0       0       0       0
  5    2M      0       0       0       0
  6    4M      0       0       0       0
  7    8M      0       0       0       0
  8   16M      0       0       0       0
  9   32M      0       0       0       0
10   64M      0       0       0       0
11  128M      0       0       0       0
12  256M      0       0       0       0
13  512M      0       0       0       0
14    1G      0       0       0       0

================================================================================
RUNTIME STATS FOR CACHE POOL #0
POOL INFO   group: rep1  id: p1613_BLOB
trans active  =       0   trans concurrent (max) =     0
trans total   =       0   (0 )
flag          = 0x00000030
last error    = (0=<none>)

Allocation Request Distribution
< 128B:       0
128B:        0         0     | 512B:        0         0
   2K:        0         0     |   8K:        0         0
  32K:        0         0     | 128K:        0         0
512K:        0         0     |   2M:        0         0
   8M:        0         0     |  32M:        0         0
128M:        0         0     | 512M:        0         0
   2G:        0         0     |   8G:        0

================================================================================
CUMULATIVE STATS FOR CACHE POOL #0
POOL INFO   group: rep1  id: p1613_BLOB
trans active  =       0   trans concurrent (max) =     0
trans total   =       0   (0 )
flag          = 0x00000030
last error    = (0=<none>)

Allocation Request Distribution
< 128B:       0
128B:        0         0     | 512B:        0         0
   2K:        0         0     |   8K:        0         0
  32K:        0         0     | 128K:        0         0
512K:        0         0     |   2M:        0         0
   8M:        0         0     |  32M:        0         0
128M:        0         0     | 512M:        0         0
   2G:        0         0     |   8G:        0

This is the edit params rep1

--Replicat group --
replicat rep1
--source and target definitions
ASSUMETARGETDEFS
--target database login --

userid ggs_owner, password bss
--file for dicarded transaction --

discardfile /u01/app/ggs/discard/rep1_discard.txt, append, megabytes 10
--ddl support
DDL
--Specify table mapping ---

map radius_dsl.*, target radius_dsl.*;

回复 只看该作者 道具 举报

6#
发表于 2011-12-29 23:18:58
Answer:

2011-12-26 14:35:06  WARNING OGG-01004  Aborted grouped transaction on 'RADIUS_D
SL.RADACCT', Database error 1403 ().



ORA-1403 can be caused by several reason:


Action Plan:

1.    INFO TRANDATA schema.table_name   -- check source table trandata
2.    try disable target table trigger or foreign key
3.    try add handlecollisions to rep

回复 只看该作者 道具 举报

7#
发表于 2012-2-27 17:07:43

ERROR OGG-00446

2011-12-25 15:20:42  ERROR   OGG-00446  Oracle GoldenGate Capture for Oracle, ext1.prm:  The number of Oracle redo threads (2) is not the same as the number of checkpoint threads (1). EXTRACT groups on RAC systems should be created with the THREADS parameter (e.g., ADD EXT <group name>, TRANLOG, THREADS 2, BEGIN...).
2011-12-25 15:20:42  ERROR   OGG-01668  Oracle GoldenGate Capture for Oracle, ext1.prm:  PROCESS ABENDING.

rac 环境 。
add extract ext1 ,tranlog,threads 2,begin now

回复 只看该作者 道具 举报

您需要登录后才可以回帖 登录 | 注册

QQ|手机版|Archiver|Oracle数据库数据恢复、性能优化

GMT+8, 2024-11-15 01:43 , Processed in 0.056694 second(s), 21 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

回顶部
TEL/電話+86 13764045638
Email service@parnassusdata.com
QQ 47079569