Data Guard Error ORA-16796

I am trying to add standby database to the broker configuration and am getting this error
ORA-16796 : one or more properties could not be imported from the database
-- are there any specific checks I can do to locate the error ?
Thanks,
ramya

Hi..
What is the oracle version???
Refer to metalink Doc ID: 194529.1
From metalink for 10g
>
Error:     ORA-16796 (ORA-16796)
Text:     One or more properties could not be imported from the database.
Cause:     The broker was unable to import property values for the database
     being added to the broker configuration. This error indicates: -
     the net-service-name specified in DGMGRL's CREATE CONFIGURATION or
     ADD DATABASE command is not one that provides access to the
     database being added, or - there are no instances running for the
     database being added.
Action:     Remove the database from the configuration using the REMOVE
     CONFIGURATION or REMOVE DATABASE command. Make sure that the
     database to be added has at least one instance running and that
     the net-service-name provides access to the running instance. Then
     reissue the CREATE CONFIGURATION or ADD DATABASE command.
>
Anand
Edited by: Anand... on Mar 15, 2009 9:44 AM

Similar Messages

  • Data Guard Error ORA-16608

    Hi
    i am facing an error in dataguard, i am going to down standby DB with dataguard manager when i do this my Prod db status become warning (ORA-16608)"one or more sites have warning".
    Thanks

    *** Duplicate Post ***
    Ignore this posting.

  • Error: ORA-16796: one or more properties could not be imported from the dat

    DGMGRL> CREATE CONFIGURATION prod as
    PRIMARY DATABASE IS prod
    CONNECT IDENTIFIER IS prod;Configuration "prod" created with primary database "prod"
    DGMGRL> ADD DATABASE standby as
    CONNECT IDENTIFIER IS standby
    MAINTAINED AS PHYSICAL;Error: ORA-16796: one or more properties could not be imported from the database
    Failed.
    DGMGRL> ADD DATABASE standby as
    CONNECT IDENTIFIER IS standby
    MAINTAINED AS PHYSICAL;Error: ORA-16796: one or more properties could not be imported from the database
    Failed.
    can any one help me out , i am not sure what could be the problem.
    i checked the listner and tnsnames every thing looks good, if u want me to post any thing else plz do let me know
    thanks
    firdous

    16796, 0000, "one or more properties could not be imported from the database"
    // *Cause:  The broker was unable to import property values for the database
    //          being added to the broker configuration. This error indicates:
    //          - The Oracle Net service name specified in DGMGRL CREATE
    //            CONFIGURATION or ADD DATABASE command was not one that provides
    //            access to the database being added.
    //          - There were no instances running for the database being added.
    // *Action: Remove the database from the configuration using the REMOVE
    //          CONFIGURATION or REMOVE DATABASE command. Make sure that the
    //          database to be added has at least one instance running and that the
    //          Oracle Net service name provides access to the running instance.
    //          Also check the broker log file for additional information.
    //          Then, reissue the CREATE CONFIGURATION or ADD DATABASE command.

  • Error in .oci.GetQuery(conn, statement, ...) :    ORA-29400: data cartridge error ORA-24323: ????? ORA-06512: at "RQSYS.RQTABLEEVALIMPL", line 24 ORA-06512: at line 4

    Hi,everyone,
                I had  installed  R Enterprise in my Oracle 11.2.0.1 base on win7,using the R 2.13.2, ORE 1.1,  I can using the part function: like
    library(ORE)
    options(STERM='iESS', str.dendrogram.last="'", editor='emacsclient.exe', show.error.locations=TRUE)
    > ore.connect(user = "RQUSER",password = "RQUSERpsw",conn_string = "", all = TRUE)
    > ore.is.connected()
    [1] TRUE
    > ore.ls()
    [1] "IRIS_TABLE"
    > demo(package = "ORE")
    Demos in package 'ORE':
    aggregate               Aggregation
    analysis                Basic analysis & data processing operations
    basic                   Basic connectivity to database
    binning                 Binning logic
    columnfns               Column functions
    cor                     Correlation matrix
    crosstab                Frequency cross tabulations
    derived                 Handling of derived columns
    distributions           Distribution, density, and quantile functions
    do_eval                 Embedded R processing
    freqanalysis            Frequency cross tabulations
    graphics                Demonstrates visual analysis
    group_apply             Embedded R processing by group
    hypothesis              Hyphothesis testing functions
    matrix                  Matrix related operations
    nulls                   Handling of NULL in SQL vs. NA in R
    push_pull               RDBMS <-> R data transfer
    rank                    Attributed-based ranking of observations
    reg                     Ordinary least squares linear regression
    row_apply               Embedded R processing by row chunks
    sql_like                Mapping of R to SQL commands
    stepwise                Stepwise OLS linear regression
    summary                 Summary functionality
    table_apply             Embedded R processing of entire table
    > demo("aggregate",package = "ORE")
      demo(aggregate)
      ---- ~~~~~~~~~
    Type  <Return> to start : Return
    > #
    > #     O R A C L E  R  E N T E R P R I S E  S A M P L E   L I B R A R Y
    > #
    > #     Name: aggregate.R
    > #     Description: Demonstrates aggregations
    > #     See also summary.R
    > #
    > #
    > #
    >
    > ## Set page width
    > options(width = 80)
    > # List all accessible tables and views in the Oracle database
    > ore.ls()
    [1] "IRIS_TABLE"
    > # Create a new table called IRIS_TABLE in the Oracle database
    > # using the built-in iris data.frame
    >
    > # First remove previously created IRIS_TABLE objects from the
    > # global environment and the database
    > if (exists("IRIS_TABLE", globalenv(), inherits = FALSE))
    +     rm("IRIS_TABLE", envir = globalenv())
    > ore.drop(table = "IRIS_TABLE")
    > # Create the table
    > ore.create(iris, table = "IRIS_TABLE")
    > # Show the updated list of accessible table and views
    > ore.ls()
    [1] "IRIS_TABLE"
    > # Display the class of IRIS_TABLE and where it can be found in
    > # the search path
    > class(IRIS_TABLE)
    [1] "ore.frame"
    attr(,"package")
    [1] "OREbase"
    > search()
    [1] ".GlobalEnv"          "ore:RQUSER"          "ESSR"              
    [4] "package:ORE"         "package:ORExml"      "package:OREeda"    
    [7] "package:OREgraphics" "package:OREstats"    "package:MASS"      
    [10] "package:OREbase"     "package:ROracle"     "package:DBI"       
    [13] "package:stats"       "package:graphics"    "package:grDevices" 
    [16] "package:utils"       "package:datasets"    "package:methods"   
    [19] "Autoloads"           "package:base"      
    > find("IRIS_TABLE")
    [1] "ore:RQUSER"
    > # Select count(Petal.Length) group by species
    > x = aggregate(IRIS_TABLE$Petal.Length,
    +               by = list(species = IRIS_TABLE$Species),
    +               FUN = length)
    > class(x)
    [1] "ore.frame"
    attr(,"package")
    [1] "OREbase"
    > x
         species  x
    1     setosa 50
    2 versicolor 50
    3  virginica 50
    > # Repeat FUN = summary, mean, min, max, sd, median, IQR
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = summary)
         species Min. 1st Qu. Median  Mean 3rd Qu. Max. NA's
    1     setosa  1.0     1.4   1.50 1.462   1.575  1.9    0
    2 versicolor  3.0     4.0   4.35 4.260   4.600  5.1    0
    3  virginica  4.5     5.1   5.55 5.552   5.875  6.9    0
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = mean)
         species     x
    1     setosa 1.462
    2 versicolor 4.260
    3  virginica 5.552
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = min)
         species   x
    1     setosa 1.0
    2 versicolor 3.0
    3  virginica 4.5
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = max)
         species   x
    1     setosa 1.9
    2 versicolor 5.1
    3  virginica 6.9
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = sd)
         species         x
    1     setosa 0.1736640
    2 versicolor 0.4699110
    3  virginica 0.5518947
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = median)
         species    x
    1     setosa 1.50
    2 versicolor 4.35
    3  virginica 5.55
    > aggregate(IRIS_TABLE$Petal.Length, by = list(species = IRIS_TABLE$Species),
    +           FUN = IQR)
         species     x
    1     setosa 0.175
    2 versicolor 0.600
    3  virginica 0.775
    > # More than one grouping column
    > x = aggregate(IRIS_TABLE$Petal.Length,
    +               by = list(species = IRIS_TABLE$Species,
    +                         width = IRIS_TABLE$Petal.Width),
    +               FUN = length)
    > x
          species width  x
    1      setosa   0.1  5
    2      setosa   0.2 29
    3      setosa   0.3  7
    4      setosa   0.4  7
    5      setosa   0.5  1
    6      setosa   0.6  1
    7  versicolor   1.0  7
    8  versicolor   1.1  3
    9  versicolor   1.2  5
    10 versicolor   1.3 13
    11 versicolor   1.4  7
    12  virginica   1.4  1
    13 versicolor   1.5 10
    14  virginica   1.5  2
    15 versicolor   1.6  3
    16  virginica   1.6  1
    17 versicolor   1.7  1
    18  virginica   1.7  1
    19 versicolor   1.8  1
    20  virginica   1.8 11
    21  virginica   1.9  5
    22  virginica   2.0  6
    23  virginica   2.1  6
    24  virginica   2.2  3
    25  virginica   2.3  8
    26  virginica   2.4  3
    27  virginica   2.5  3
    > # Sort the result by ascending value of count
    > ore.sort(data = x, by = "x")
          species width  x
    1   virginica   1.4  1
    2   virginica   1.7  1
    3  versicolor   1.7  1
    4   virginica   1.6  1
    5      setosa   0.5  1
    6      setosa   0.6  1
    7  versicolor   1.8  1
    8   virginica   1.5  2
    9  versicolor   1.1  3
    10  virginica   2.4  3
    11  virginica   2.5  3
    12  virginica   2.2  3
    13 versicolor   1.6  3
    14     setosa   0.1  5
    15  virginica   1.9  5
    16 versicolor   1.2  5
    17  virginica   2.0  6
    18  virginica   2.1  6
    19     setosa   0.3  7
    20 versicolor   1.4  7
    21     setosa   0.4  7
    22 versicolor   1.0  7
    23  virginica   2.3  8
    24 versicolor   1.5 10
    25  virginica   1.8 11
    26 versicolor   1.3 13
    27     setosa   0.2 29
    > # by descending value
    > ore.sort(data = x, by = "x", reverse = TRUE)
          species width  x
    1      setosa   0.2 29
    2  versicolor   1.3 13
    3   virginica   1.8 11
    4  versicolor   1.5 10
    5   virginica   2.3  8
    6      setosa   0.4  7
    7      setosa   0.3  7
    8  versicolor   1.0  7
    9  versicolor   1.4  7
    10  virginica   2.1  6
    11  virginica   2.0  6
    12  virginica   1.9  5
    13 versicolor   1.2  5
    14     setosa   0.1  5
    15 versicolor   1.6  3
    16 versicolor   1.1  3
    17  virginica   2.4  3
    18  virginica   2.5  3
    19  virginica   2.2  3
    20  virginica   1.5  2
    21  virginica   1.6  1
    22  virginica   1.4  1
    23     setosa   0.6  1
    24     setosa   0.5  1
    25 versicolor   1.8  1
    26  virginica   1.7  1
    27 versicolor   1.7  1
    > # Preserve just 1 row for duplicate x's
    > ore.sort(data = x, by = "x", unique.keys = TRUE)
          species width  x
    1      setosa   0.5  1
    2   virginica   1.5  2
    3  versicolor   1.1  3
    4      setosa   0.1  5
    5   virginica   2.0  6
    6      setosa   0.3  7
    7   virginica   2.3  8
    8  versicolor   1.5 10
    9   virginica   1.8 11
    10 versicolor   1.3 13
    11     setosa   0.2 29
    > ore.sort(data = x, by = "x", unique.keys = TRUE, unique.data = TRUE)
          species width  x
    1      setosa   0.5  1
    2   virginica   1.5  2
    3  versicolor   1.1  3
    4      setosa   0.1  5
    5   virginica   2.0  6
    6      setosa   0.3  7
    7   virginica   2.3  8
    8  versicolor   1.5 10
    9   virginica   1.8 11
    10 versicolor   1.3 13
    11     setosa   0.2 29
    but    when I  use the following The ore.doEval command  get the errors,
    > ore.doEval(function() { 123 })
    Error in .oci.GetQuery(conn, statement, ...) :
      ORA-29400: data cartridge error
    ORA-24323: ?????
    ORA-06512: at "RQSYS.RQEVALIMPL", line 23
    ORA-06512: at line 4
    and  I  try to run the        demo("row_apply", package="ORE")  get the  same errors:
    demo("row_apply",package = "ORE")
      demo(row_apply)
      ---- ~~~~~~~~~
    Type  <Return> to start : Return
    > #
    > #     O R A C L E  R  E N T E R P R I S E  S A M P L E   L I B R A R Y
    > #
    > #     Name: row_apply.R
    > #     Description: Execute R code on each row
    > #
    > #
    >
    > ## Set page width
    > options(width = 80)
    > # List all accessible tables and views in the Oracle database
    > ore.ls()
    [1] "IRIS_TABLE"
    > # Create a new table called IRIS_TABLE in the Oracle database
    > # using the built-in iris data.frame
    >
    > # First remove previously created IRIS_TABLE objects from the
    > # global environment and the database
    > if (exists("IRIS_TABLE", globalenv(), inherits = FALSE))
    +     rm("IRIS_TABLE", envir = globalenv())
    > ore.drop(table = "IRIS_TABLE")
    > # Create the table
    > ore.create(iris, table = "IRIS_TABLE")
    > # Show the updated list of accessible table and views
    > ore.ls()
    [1] "IRIS_TABLE"
    > # Display the class of IRIS_TABLE and where it can be found in
    > # the search path
    > class(IRIS_TABLE)
    [1] "ore.frame"
    attr(,"package")
    [1] "OREbase"
    > search()
    [1] ".GlobalEnv"          "ore:RQUSER"          "ESSR"              
    [4] "package:ORE"         "package:ORExml"      "package:OREeda"    
    [7] "package:OREgraphics" "package:OREstats"    "package:MASS"      
    [10] "package:OREbase"     "package:ROracle"     "package:DBI"       
    [13] "package:stats"       "package:graphics"    "package:grDevices" 
    [16] "package:utils"       "package:datasets"    "package:methods"   
    [19] "Autoloads"           "package:base"      
    > find("IRIS_TABLE")
    [1] "ore:RQUSER"
    > # The table should now appear in your R environment automatically
    > # since you have access to the table now
    > ore.ls()
    [1] "IRIS_TABLE"
    > # This is a database resident table with just metadata on the R side.
    > # You will see this below
    > class(IRIS_TABLE)
    [1] "ore.frame"
    attr(,"package")
    [1] "OREbase"
    > # Apply given R function to each row
    > ore.rowApply(IRIS_TABLE,
    +              function(dat) {
    +                  # Any R code goes here. Operates on one row of IRIS_TABLE at
    +                  # a time
    +                  cbind(dat, dat$Petal.Length)
    +              })
    Error in .oci.GetQuery(conn, statement, ...) :
      ORA-29400: data cartridge error
    ORA-24323: ?????
    ORA-06512: at "RQSYS.RQROWEVALIMPL", line 26
    ORA-06512: at line 4
    >
    whether my oracle's version 11.2.0.1 has no the RDBMS bug fix, and other  problems? Thanks

    Oracle R Enterprise 1.1. requires Oracle Database 11.2.0.3, 11.2.0.4. On Linux and Windows.  Oracle R Enterprise can also work with an 11.2.0.1 or 11.2.0.2 database if it is properly patched.
    Embedded R execution will not work without a patched database.  Follow this procedure to patch the database:
    1. Go to My Oracle Support:http://support.oracle.com
    2. Log in and supply your Customer Support ID (CSI).
    3. Choose the Patches & Updates tab.
    4. In the Patch Search box, type 11678127
    and click Search
    5. Select the patch for your version of Oracle Database, 11.2.0.1.
    6. Click Download to download the patch.
    7. Install the patch using OPatch. Ensure that you are using the latest version of OPatch.
    Sherry

  • Data Guard Error

    Hi Guys,
    Can someone help me on this error? ORA-16057: DGID from server not in Data Guard configuration.
    Here are the configs of primary and standby. I just want to find out what was im missing.
    Primay config:
    **icts001.__db_cache_size=20250099712**
    **icts001.__java_pool_size=16777216**
    **icts001.__large_pool_size=16777216**
    **icts001.__shared_pool_size=1056964608**
    **icts001.__streams_pool_size=117440512**
    ***.aq_tm_processes=6**
    ***.archive_lag_target=0**
    ***.audit_file_dest='/data/oradata/admin/icts001/adump'**
    ***.audit_trail='DB'**
    ***.background_dump_dest='/data/oradata/admin/icts001/bbdump'**
    ***.compatible='10.2.0.1.0'**
    ***.control_file_record_keep_time=30**
    ***.control_files='/data/oradata/icts001/control01.ctl','/dbworkspc01/multiplex/control02.ctl','/dbworkspc02/multiplex/control03.ctl'**
    ***.core_dump_dest='/data/oradata/admin/icts001/cdump'**
    ***.cursor_sharing='SIMILAR'**
    ***.db_block_size=8192**
    ***.db_cache_size=4194304000**
    ***.db_domain=''**
    ***.db_file_multiblock_read_count=8**
    ***.db_name='icts001'**
    ***.db_recovery_file_dest='/dbworkspc02/flash_recovery_area'**
    ***.db_recovery_file_dest_size=16106127360**
    ***.db_unique_name='ICTS001'**
    ***.db_writer_processes=4**
    ***.dbwr_io_slaves=4**
    ***.dg_broker_start=FALSE**
    ***.dispatchers=''**
    ***.fal_client='icts001'**
    ***.fal_server='drs001','SMS'**
    ***.fast_start_mttr_target=30**
    ***.global_names=TRUE**
    ***.job_queue_processes=10**
    ***.log_archive_config='DG_CONFIG=(ICTS001,SMS,drcs001)'**
    **icts001.log_archive_dest_1='location="/EMC_HD/oradata/archlog"','valid_for=(ONLINE_LOGFILE,ALL_ROLES)'**
    ***.log_archive_dest_1='location=/EMC_HD/oradata/archlog valid_for=(ONLINE_LOGFILE,ALL_ROLES)'**
    ***.log_archive_dest_2='SERVICE=drcs001 LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=drcs001'**
    ***.log_archive_dest_3='SERVICE=ASM LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=SMS'**
    ***.log_archive_dest_state_10='DEFER'**
    **icts001.log_archive_dest_state_1='ENABLE'**
    ***.log_archive_dest_state_2='DEFER'**
    ***.log_archive_dest_state_3='ENABLE'**
    ***.log_archive_dest_state_4='DEFER'**
    ***.log_archive_dest_state_5='DEFER'**
    ***.log_archive_dest_state_6='DEFER'**
    ***.log_archive_dest_state_7='DEFER'**
    ***.log_archive_dest_state_8='DEFER'**
    ***.log_archive_dest_state_9='DEFER'**
    ***.log_archive_format='arch%t_%s_%r.arc'**
    **icts001.log_archive_format='arch%t_%s_%r.arc'**
    ***.log_archive_max_processes=15**
    ***.log_archive_min_succeed_dest=1**
    **icts001.log_archive_trace=0**
    ***.log_checkpoint_timeout=0**
    ***.log_checkpoints_to_alert=TRUE**
    ***.nls_date_format='YYYY-MM-DD HH24:MI:SS'**
    ***.open_cursors=8000**
    ***.parallel_max_servers=13**
    ***.parallel_min_servers=10**
    ***.parallel_threads_per_cpu=6**
    ***.pga_aggregate_target=15032385536**
    ***.processes=1500**
    ***.recovery_parallelism=6**
    ***.remote_login_passwordfile='EXCLUSIVE'**
    ***.resource_limit=FALSE**
    ***.service_names='icts001'**
    ***.session_cached_cursors=200**
    ***.sessions=1500**
    ***.sga_max_size=25769803776**
    ***.sga_target=21474836480**
    ***.shared_pool_size=1048576000**
    ***.shared_servers=0**
    **icts001.standby_archive_dest=''**
    ***.standby_file_management='AUTO'**
    ***.streams_pool_size=117440512**
    Standby Config:
    icts001.__db_cache_size=754974720
    icts001.__java_pool_size=16777216
    icts001.__large_pool_size=16777216
    icts001.__shared_pool_size=436207616
    icts001.__streams_pool_size=0
    *.audit_file_dest='/u01/app/oracle/product/10.2.0/db_1/admin/adump'
    *.background_dump_dest='/u01/app/oracle/product/10.2.0/db_1/admin/bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='/u02/oradata/controlfile/control01.ctl','/u02/flash_recovery_area/controlfile/control02.ctl','/u02/flash_recovery_area/controlfile/control03.ctl'
    *.core_dump_dest='/u01/app/oracle/product/10.2.0/db_1/admin/cdump'
    *.db_block_size=8192
    *.db_file_multiblock_read_count=16
    *.db_file_name_convert='/data/oradata/icts001','/u02/oradata','/data3/data2c/oradata/icts001','/u02/oradata','/data1/oradata/icts001','/u02/oradata'
    *.db_name='icts001'
    *.db_recovery_file_dest='/u02/flash_recovery_area'
    *.db_recovery_file_dest_size=47185920000
    *.db_unique_name='SMS'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=smsXDB)'
    *.fal_client='SMS'
    *.fal_server='PROD'
    *.instance_name='icts001'
    *.job_queue_processes=10
    *.log_archive_config='dg_config=(PROD,SMS)'
    *.log_archive_dest_1='LOCATION=use_db_recovery_file_dest VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=SMS'
    *.log_archive_dest_2='service=PROD valid_for=(online_logfiles,primary_role) db_unique_name=icts001'
    *.log_archive_dest_state_1='enable'
    *.log_archive_dest_state_2='ENABLE'
    *.log_file_name_convert='/data/oradata/icts001','/u02/flash_recovery_area/onlinelog','/dbworkspc01/multiplex','/u02/flash_recovery_area/onlinelog','/data3/data2c/oradata/icts001','/u02/flash_recovery_area/standbylog'
    *.open_cursors=300
    *.pga_aggregate_target=409993216
    *.processes=5000
    *.remote_login_passwordfile='exclusive'
    *.service_names='SMS'
    *.sessions=5505
    *.sga_target=1231028224
    *.standby_file_management='auto'
    *.thread=1
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='/u01/app/oracle/product/10.2.0/db_1/admin/udump'
    Regards,
    cmadiam

    The parameter log_archive_config is wrongly configured on the standby database.
    Add the database unique name (db_unique_name) of the primary database to the log_archive_config of the standby database
    On the standby, your log_archive_config should be something like
    log_archive_config='DG_CONFIG=(icts001,sms)';
    cmadiam82     
    Handle:  cmadiam82   
    Status Level:  Newbie 
    Registered:  Feb 28, 2010 
    Total Posts:  36 
    Total Questions:  13 (11 unresolved)  It is sad to see that forums is of no help to you. :(
    Please mark the threads as answered if you have got a solution and keep the forums clean. If not, then reply to your questions so that you would get back an answer rather than keeping it as unanswered.

  • Change Data Capture error ORA-31428 at the subscription step?

    I am following this cookbook; http://www.oracle.com/technology/products/bi/db/10g/pdf/twp_cdc_cookbook_0206.pdf it was very helpful for me but at the subscription step when I give the list of all columns that I provided at create_change_table step with column_type_list I recieve this error;
    ORA-31428 : No publication contains all of the specified columns. One or more of the specified columns cannot be found in a single publication. Consult the ALL_PUBLISHED_COLUMNS view to see the current publications and change the subscription request to select only the columns that are in the same publication.
    When I check the view mentioned ALL_PUBLISHED_COLUMNS my columns are listed, strange behaviour. I searched for any comments on forums.oracle.com and metalink.oracle.com and even google but nothing just the explaination above :(
    If you have any comments it would be great, thank you again.
    Best regards.
    Hotlog Source : 9iR2 Solaris
    Hotlog Target : 10gR2 Solaris
    begin
    dbms_cdc_publish.create_change_table(
    owner => ‘cdc_stg_pub’,
    change_table_name => ‘udb_tcon_ct’,
    change_set_name => ‘udb_tcon_set’,
    source_schema => ‘udb’,
    source_table => ‘tcon’,
    column_type_list => ‘ncon number(12), ncst number(12), dwhencon date, twhomcon varchar2(50), cchancon number(3), cacticon number(5), tdatacon varchar2(1000)’,
    capture_values => ‘both’,
    rs_id => ‘y’,
    row_id => ‘n’,
    user_id => ‘n’,
    timestamp => ‘y’,
    object_id => ‘n’,
    source_colmap => ‘n’,
    target_colmap => ‘y’,
    options_string => null) ;
    end ;
    select x.change_set_name, x.column_name from ALL_PUBLISHED_COLUMNS x ;
    begin
    dbms_cdc_subscribe.create_subscription(
    change_set_name => ‘udb_tcon_set’,
    description => ‘UDB TCON change subscription’,
    subscription_name => ‘udb_tcon_sub1′);
    end;
    begin
    dbms_cdc_subscribe.subscribe(
    subscription_name => ‘udb_tcon_sub1′,
    source_schema => ‘udb’,
    source_table => ‘tcon’,
    column_list => ‘ncon,ncst,dwhencon,twhomcon,cchancon,cacticon,tdatacon’,
    subscriber_view => ‘udb_tcon_chg_view’) ;
    end ;
    CHANGE_SET_NAME COLUMN_NAME
    UDB_TCON_SET NCON
    UDB_TCON_SET NCST
    UDB_TCON_SET DWHENCON
    UDB_TCON_SET TDATACON
    UDB_TCON_SET CCHANCON
    UDB_TCON_SET CACTICON
    UDB_TCON_SET TWHOMCON
    7 rows selected
    PL/SQL procedure successfully completed
    begin
    dbms_cdc_subscribe.subscribe(
    subscription_name => ‘udb_tcon_sub1′,
    source_schema => ‘udb’,
    source_table => ‘tcon’,
    column_list => ‘ncon,ncst,dwhencon,twhomcon,cchancon,cacticon,tdatacon’,
    subscriber_view => ‘udb_tcon_chg_view’) ;
    end ;
    ORA-31428: no publication contains all the specified columns
    ORA-06512: at “SYS.DBMS_CDC_SUBSCRIBE”, line 19
    ORA-06512: at line 2
    I added the OS and Oracle versions of source and target.
    Message was edited by:
    TongucY

    nice catch, the error changed but still strange;
    SQL> select upper('ncon,ncst,dwhencon,twhomcon,cchancon,cacticon,tdatacon') from dual ;
    UPPER('NCON,NCST,DWHENCON,TWHO
    NCON,NCST,DWHENCON,TWHOMCON,CCHANCON,CACTICON,TDATACON
    SQL> begin
    2 dbms_cdc_subscribe.subscribe(
    3 subscription_name => 'udb_tcon_sub1',
    4 source_schema => 'udb',
    5 source_table => 'tcon',
    6 column_list => 'NCON,NCST,DWHENCON,TWHOMCON,CCHANCON,CACTICON,TDATACON',
    7 subscriber_view => 'udb_tcon_chg_view') ;
    8 end ;
    9 /
    begin
    dbms_cdc_subscribe.subscribe(
    subscription_name => 'udb_tcon_sub1',
    source_schema => 'udb',
    source_table => 'tcon',
    column_list => 'NCON,NCST,DWHENCON,TWHOMCON,CCHANCON,CACTICON,TDATACON',
    subscriber_view => 'udb_tcon_chg_view') ;
    end ;
    ORA-31466: no publications found
    ORA-06512: at "SYS.DBMS_CDC_SUBSCRIBE", line 19
    ORA-06512: at line 2

  • Data Pump Error - ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has

    Hi All,
    I am getting the following errors when I am trying to connect with datapump.My db is 10g and os is linux.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORA-31626: job does not exist
    ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at "SYS.DBMS_LOGSTDBY", line 24
    ORA-06512: at "SYS.KUPV$FT", line 676
    ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    When I tried to compile this package I am getting the following error
    SQL> alter package DBMS_INTERNAL_LOGSTDBY compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY DBMS_INTERNAL_LOGSTDBY:
    LINE/COL ERROR
    1405/4 PL/SQL: SQL Statement ignored
    1412/38 PL/SQL: ORA-00904: "SQLTEXT": invalid identifier
    1486/4 PL/SQL: SQL Statement ignored
    1564/7 PL/SQL: ORA-00904: "DBID": invalid identifier
    1751/2 PL/SQL: SQL Statement ignored
    1870/7 PL/SQL: ORA-00904: "DBID": invalid identifier
    Can anyony suggest/guide me how to resolve the issue.
    Thanks in advance

    SQL> SELECT OBJECT_TYPE,OBJECT_NAME FROM DBA_OBJECTS
    2 WHERE OWNER='SYS' AND STATUS<>'VALID';
    OBJECT_TYPE OBJECT_NAME
    VIEW DBA_COMMON_AUDIT_TRAIL
    PACKAGE BODY DBMS_INTERNAL_LOGSTDBY
    PACKAGE BODY DBMS_REGISTRY_SYS
    Thanks

  • DATA-PUMP ERROR: ORA-39070 Database on Linux, Client on Win 2008

    Hi,
    i want to make a datapump export from client Windows 2008. I define dpdir as 'C:\DPDIR'.
    While making expdp
    expdp login\pass@ora directory=dpdir dumpfile=dump.dmp logfile=log.log full=y
    i get those errors
    ORA-39002:niepoprawna operacja
    ORA-39070:nie mozna otworzyc pliku dziennik
    ORA-29283:niepoprawna operacja na pliku
    ORA-06512:przy "sys.utl_file", linia 536
    ORA-29283:niepoprawna operacja na pliku
    (decriptions in polish)
    I found out, that datapump is saving files to the Linux Server (where database is). When i define 'C:\DPDIR' it doesn't recognize it because there is no such directory on Linux.
    How can I save datapump export dumpfile on Windows?

    tstefanski wrote:
    Hi,
    i want to make a datapump export from client Windows 2008. I define dpdir as 'C:\DPDIR'.
    While making expdp
    expdp login\pass@ora directory=dpdir dumpfile=dump.dmp logfile=log.log full=y
    i get those errors
    ORA-39002:niepoprawna operacja
    ORA-39070:nie mozna otworzyc pliku dziennik
    ORA-29283:niepoprawna operacja na pliku
    ORA-06512:przy "sys.utl_file", linia 536
    ORA-29283:niepoprawna operacja na pliku
    (decriptions in polish)
    I found out, that datapump is saving files to the Linux Server (where database is). When i define 'C:\DPDIR' it doesn't recognize it because there is no such directory on Linux.
    How can I save datapump export dumpfile on Windows?
    >Hi,
    i want to make a datapump export from client Windows 2008. I define dpdir as 'C:\DPDIR'.
    While making expdp
    expdp login\pass@ora directory=dpdir dumpfile=dump.dmp logfile=log.log full=y
    i get those errors
    ORA-39002:niepoprawna operacja
    ORA-39070:nie mozna otworzyc pliku dziennik
    ORA-29283:niepoprawna operacja na pliku
    ORA-06512:przy "sys.utl_file", linia 536
    ORA-29283:niepoprawna operacja na pliku
    (decriptions in polish)
    I found out, that datapump is saving files to the Linux Server (where database is). When i define 'C:\DPDIR' it doesn't recognize it because there is no such directory on Linux.
    How can I save datapump export dumpfile on Windows?
    expdp can only create dump file on DB Server system itself.

  • Data pump error ORA-39065, status undefined after restart

    Hi members,
    The data pump full import job hung, continue client also hung, all of a sudden the window exited.
    ;;; Import> status
    ;;; Import> help
    ;;; Import> status
    ;;; Import> continue_client
    ORA-39065: unexpected master process exception in RECEIVE
    ORA-39078: unable to dequeue message for agent MCP from queue "KUPC$C_1_20090923181336"
    Job "SYSTEM"."SYS_IMPORT_FULL_01" stopped due to fatal error at 18:48:03
    I increased the shared_pool to 100M and then restarted the job with attach=jobname. After restarting, I have queried the status and found that everything is undefined. It still says undefined now and the last log message says that it has been reopened. Thats the end of the log file and nothing else is being recorded. I am not sure what is happening now. Any ideas will be appreciated. This is 10.2.0.3 version on windows. Thanks ...
    Job SYS_IMPORT_FULL_01 has been reopened at Wednesday, 23 September, 2009 18:54
    Import> status
    Job: SYS_IMPORT_FULL_01
    Operation: IMPORT
    Mode: FULL
    State: IDLING
    Bytes Processed: 3,139,231,552
    Percent Done: 33
    Current Parallelism: 8
    Job Error Count: 0
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest%u.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest01.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest02.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest03.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest04.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest05.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest06.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest07.dmp
    Dump File: D:\oracle\product\10.2.0\admin\devdb\dpdump\devtest08.dmp
    Worker 1 Status:
    State: UNDEFINED
    Worker 2 Status:
    State: UNDEFINED
    Object Schema: trm
    Object Name: EVENT_DOCUMENT
    Object Type: DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA
    Completed Objects: 1
    Completed Rows: 78,026
    Completed Bytes: 4,752,331,264
    Percent Done: 100
    Worker Parallelism: 1
    Worker 3 Status:
    State: UNDEFINED
    Worker 4 Status:
    State: UNDEFINED
    Worker 5 Status:
    State: UNDEFINED
    Worker 6 Status:
    State: UNDEFINED
    Worker 7 Status:
    State: UNDEFINED
    Worker 8 Status:
    State: UNDEFINED

    39065, 00000, "unexpected master process exception in %s"
    // *Cause:  An unhandled exception was detected internally within the master
    //          control process for the Data Pump job.  This is an internal error.
    //          messages will detail the problems.
    // *Action: If problem persists, contact Oracle Customer Support.

  • Data guard error 12541

    Hi All
    Am gettiing following error when using dgmgrl
    DGMGRL> add database 'child' as
    connect identifier is 'child.gbwonw9bp21'
    maintained as physical;
    RACLE Instance PARENT - Archival Error. Archiver continuing.
    /export/data/db1/PARENT/bdump (PARENT)>tail -f alert_PARENT.log
    Errors in file /export/data/db1/PARENT/bdump/parent_arc1_1081416.trc:
    ORA-12541: Message 12541 not found; No message file for product=RDBMS, facility=ORA
    FAL[server, ARC1]: Error 12541 creating remote archivelog file '(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=gbwonw9bp21)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=child_XPT.GBWONW9BP21)(INSTANCE_NAME=CHILD)(SERVER=dedicated)))'
    FAL[server, ARC1]: FAL archive failed, see trace file.
    Sat Mar 5 23:48:28 2011
    Errors in file /export/data/db1/PARENT/bdump/parent_arc1_1081416.trc:
    ORA-16055: Message 16055 not found; No message file for product=RDBMS, facility=ORA
    ARCH: FAL archive failed. Archiver continuing
    Sat Mar 5 23:48:28 2011
    ORACLE Instance PARENT - Archival Error. Archiver continuing.
    DGMGRL> show configuration;
    Configuration
    Name: parent_config
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    parent - Primary database
    child - Physical standby database
    Current status for "parent_config":
    Warning: ORA-16607: one or more databases have failed
    the tnsnames.ora file is as below
    CHILD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = GBWONW9BP21)(PORT = 1528))
    (CONNECT_DATA =
    (SID = CHILD)
    CHILD.GBWONW9BP21 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = GBWONW9BP21)(PORT = 1528))
    (CONNECT_DATA =
    (SID = CHILD)
    PARENT =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = gbwonw9bp21)(PORT = 1528))
    (CONNECT_DATA =
    (SID = PARENT)
    (SERVER = DEDICATED)
    Kedar

    ORA-16055: Message 16055 not found; No message file for product=RDBMS, facility=ORAORACLE_HOME not set (correctly)!
    12541, 00000, "TNS:no listener"
    // *Cause: The connection request could not be completed because the listener
    // is not running.
    // *Action: Ensure that the supplied destination address matches one of
    // the addresses used by the listener - compare the TNSNAMES.ORA entry with
    // the appropriate LISTENER.ORA file (or TNSNAV.ORA if the connection is to
    // go by way of an Interchange). Start the listener on the remote machine.
    bcm@bcm-laptop:~$ oerr ora 16055
    16055, 0000, "FAL request rejected"
    // *Cause:  Fetch archive log (FAL) server rejected a redo gap fetch request
    //          from the client. This may have various causes.
    // *Action: Check the alert log on the primary database. Take the appropriate
    //          action to solve the problem. When was last thing worked without errors?
    What has changed since then?

  • ORA-29400: data cartridge error/IMG-00703: unable to read image data error

    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0
    ORA-29400: data cartridge error
    IMG-00703: unable to read image data
    ORA-06512: at "ORDSYS.ORDIMERRORCODES", line 75
    ORA-06512: at "ORDSYS.ORDIMERRORCODES", line 65
    ORA-06512: at "ORDSYS.ORDIMG_PKG", line 37
    ORA-06512: at "ORDSYS.ORDIMAGE", line 927
    is raised when the following trigger is processing certain JPGs (example). Other JPGs are handled as expected:
    create or replace trigger photo_size_trg
    before insert or update on photos
    for each row
    declare
      photo_width integer;
    begin
      -- Check to see if the new photograph is different from the old one...      --
      if dbms_lob.compare(:old.photo, :new.photo) != 0
      then
        -- ...if so, check to see if it's wider than the desired 250 pixel        --
        -- maximum...                                                             --
        photo_width := to_number(ordImage.getMetadata(:new.photo)(1).extract('/ordImageAttributes/width/text()').getStringVal());
        if photo_width > 250
        then
          -- ...and if so, apply an image transform that will resize to the photo --
          -- to a maximum of 250 pixels wide, keeping the original aspect ratio.  --
          -- There doesn't seem to be an elegant way of specifying a constraint   --
          -- in one dimension like this, so the height is specifed as a large     --
          -- enough value to cover all practical contingencies.                   --
          ordImage.process(:new.photo, 'maxScale=250 10000');
        end if;
      end if;
    end;Any thoughts/suggestions?

    hi,
    I am getting following error,kindly help me out to rectify this ..
    thank you
    ORA-29400: data cartridge error
    ORA-00600: internal error code, arguments: [kokbCollTerminate], [13], [], [], [], [], [], []

  • Data guard  broker configration

    dear
    i had configured data gurd on oracle 10g, but when i am configraring data guard broker ,i am getting error
    DGNGRL> create cinfiguration DEV as primary database is dev
    connect internal is dev;
    configration dev created with primary database "dev"
    dgmgrl> add database clone as
    connect identifire is clone
    maintailned as physical;
    i am getting error
    Error: ORA-16796: one or more properties could not be imported from the database
    Edited by: user8244545 on May 5, 2009 4:23 AM

    i have already done but unfortunatly still same my problem.
    i think it's tnsname.ora problem.
    llet me know in detail how to i configure listener.ora & aswell as tnsnames.ora on both primary & standby nodes
    listener.ora on PRIMARY NODE
    LISTENER_DG =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = portal.safexpress.com)(PORT = 1521))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    SID_LIST_LISTENER_DG =
    (SID_LIST =
    (SID_DESC=
    (GLOBAL_DBNAME=DEV_DGMGRL.safexpress.com)
    (ORACLE_HOME=/u01/oracle/product/10.2)
    (SID_NAME=DEV)
    (SERVICE_NAME=DEV.safexpress.com)
    TNSNAME.ORA on PRIMARY NODE
    DEV =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp)(HOST = portal.safexpress.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = DEV)
    CLONE=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=testsfx1.safexpress.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVER=DEDICSTED)
    (SERVICE_NAME=CLONE)
    LISTENER.ORA ON STANDBY NODE
    LISTENER_DG=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=testsfx1.safexpress.com)(PORT=1521)(IP= FIRST)
    (ADDRESS=(PROTOCOL=ipc)(KEY=extproc))))
    TNSNAMES.ORA on STANDBY NODE
    CLONE=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=testsfx1.safexpress.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVER=DEDICSTED)
    (SERVICE_NAME=CLONE)
    DEV=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=portal.safexpress.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVER=DEDICATED)
    (SERVICE_NAME=DEV)
    Please let us know where i'm wrong & correct it.
    thanks
    Regards
    irfan
    Edited by: user8244545 on May 5, 2009 5:19 AM
    Edited by: user8244545 on May 5, 2009 5:23 AM

  • ERROR ORA-00942: table or view does not exist

    Hi:
    I created a .sql file and a loader file. Running the .sql file with sql * plus Worksheet:
    declare
    gr sdo_georaster;
    begin
    select image into gr from gis.RasterImages where geoid=1 for update;
    sdo_geor.generatePyramid(gr,'resampling=NN');
    update gis.RasterImages set image=gr where geoid=1;
    commit;
    end;
    I trying to create a pyramid,but the error appeared:
    ERROR at line 1:
    ORA-29400: DATA CONTROL ERROR ORA-00942: table or view does not exist
    ORA-06512: &#22312; "MDSYS.SDO_GEOR_INT", line 162
    ORA-06512: &#22312; "MDSYS.SDO_GEOR", line 826
    ORA-06512: &#22312; line 5
    I don't know why?
    Anyone can help me?
    Thanks.

    Hi,
    I think you are executing the select statement for schema X and the table is in the schema srnr.
    And schema X is not having select privilege on the table 'students' present in schema srnr.
    Goto schema srnr.
    Execute the following statement:
    grant select on students to X;
    This will give schema X the privilege to query the table students present in srnr.
    Regards,
    Anupama

  • Error ORA-02289: sequence does not exist

    While I was practicing chapter 6 a book on "hands-on oracle database 10 g express edition for windows" by Mr. Bobrowski forwarded by tom kyte, I like to be one those as well, lol, the living legend of oracle technology <page 225-226> , I got the following error while trying to insert the data manually
    error ORA-02289: sequence does not exist
    I also checked the sequence, it does exist ,
    host-ids, db-ids, ap-ids all do exists
    I am wondering my OS windows xp and however, I have entered AIX in host OS field and 5.2.0.0 in the hostos_version field and cpu=4
    I kind do not understand this too since my pc running windows xp
    any help would be appreciated since i couldn't go forward in my practice.
    I e-mailed the author of the book (oracle Press) but no-reply so far, well I can understand that there is no money.

    Basically, I copied everything from the cd-rom provided in the book of this author steve, oracle press. I logged on using my account <system> and password. The user is here only one which is <system>.
    Everything was working well, until then as per the direction in the chapters upto 1- to mid 6, this is the first time I am stuck in following this book's simple excercises. It also asks me to look at the object if the sequence host_ids does exists in the drop down combo, as a matter of fact it does exist.
    I am still wondering my question "my OS windows xp and however, I have entered AIX in host _OS field and 5.2.0.0 in the host_os_version field and cpu=4
    I kind do not understand this too since my pc running windows xp "

  • Error ORA-600, please help me

    Hello,
    My computer planted while I had the base of gone up datum. I not more to open my data base: error ora-600, how to make to remedy this probleme??
    Thank you in advance

    plz go in some detail ,what do u want to do while get this error
    peeyush

Maybe you are looking for