Error ora-12028 while creating a read-only snapshot

Hi !
I'm in trouble creating a read-only snapshot of a simple table.
The Master table belongs to an ORACLE 7.3.4 database instance, while the snapshot site belongs to an ORACLE 8.1 database. The read-only snapshot should have a refresh type FAST, but while I'm running the CREATE SNAPSHOT statement in the snapshot site I receive the following message:
"ORA-12028 snapshot type is not supported by master site string
Cause: Pre-Oracle master sites are not able to support primary key or
subquery snapshots that are able to perform a fast refresh.
Action: Create a ROWID snapshot or use a master table from an Oracle8 site. "
This message doesn't help me enough. Is there anyone who can give me an advice ?
Thanks you all.
Laura

Well laura earlier version doesn't support snap shot based on primary key
u should disable primary key constraint from master site
and create snap shot on the basis of row id.
for further detail mail me at [email protected]

Similar Messages

  • Getting Error ORA-00604 While Creating View from front Ent

    Hello All,
    I am getting ORA-00604 while creating view from the front end. And some time I get Maximum cursor open, It is ok amy be I am opening cursors in while loop. While ORA-00604 is giving lots of truble to me. In help it said to contact Oracle service, I dont know how to do that. Help me.

    Please post your view definition including the complete error_message and also the relevant parts of your code with the while loop.

  • Error: ORA-02298 while creating a new app at DRM 11.1.2.3.300

    Hi All,
            There's something weird happening when I try to create a new DRM app at DRM Management Console. After provide all information about database connection and admin long on i am getting the following error during the repository creation :
    Creating Repository ...  Done.
    Creating Tables ...  Done.
    Creating Views ...  Done.
    Creating Stored Procedures ...  Done.
    Creating Indexes ...  Done.
    Creating Primary Keys ...  Done.
    Initializing schema with predefined data ...
    Database creation failed with this error: ORA-02298: cannot validate (EPM_DRM_DB.FK_CATUSER02) - parent keys not found
         It is a fresh install and I don't know why I am having this error.  Did someone had this issue too ? How to solve that ?
    Thanks in advance

    ...To whom it may concern.....
    This issue was related to privileges in database. I've generated the scripts and ran with system user and it worked.
    Case closed.

  • Error ORA-10980 while creating MV

    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jun 21 11:43:02 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    CREATE MATERIALIZED VIEW ebOrganizationStructure AS
    SELECT DEPT.DeptStructureString Structure,
    DEPT.DeptShortName DeptCode,
    DEPT.DeptName DeptDesc,
    NULL DivCode,
    NULL DivDesc,
    NULL GrpCode,
    NULL GrpDesc,
    NULL SecCode,
    NULL SecDesc,
    NULL SSecCode,
    NULL SSecDesc
    FROM erDepartment DEPT
    UNION
    SELECT DivStructureString Structure,
    DEPT.DeptShortName DeptCode,
    DEPT.DeptName DeptDesc,
    DIV.DivShortName DivCode,
    DIV.DivName DivDesc,
    NULL GrpCode,
    NULL GrpDesc,
    NULL SecCode,
    NULL SecDesc,
    NULL SSecCode,
    NULL SSecDesc
    FROM erDepartment DEPT,
    erDivision DIV ,
    erOrgUnit_Orgunit OGU_OGU1
    WHERE OGU_OGU1.OguEntId2 = DIV.EntId
    AND OGU_OGU1.OguEntDomId2 = DIV.EntDomId
    AND DEPT.EntId = OGU_OGU1.OguEntId1
    AND DEPT.EntDomId = OGU_OGU1.OguEntDomId1
    UNION
    SELECT GRP.GrpStructureString Structure,
    DEPT.DeptShortName DeptCode,
    DEPT.DeptName DeptDesc,
    DIV.DivShortName DivCode,
    DIV.DivName DivDesc,
    GRP.GrpShortName GrpCode,
    GRP.GrpName GrpDesc,
    NULL SecCode,
    NULL SecDesc,
    NULL SSecCode,
    NULL SSecDesc
    FROM erDepartment DEPT,
    erDivision DIV ,
    erGroup GRP,
    erOrgUnit_Orgunit OGU_OGU1,
    erOrgUnit_Orgunit OGU_OGU2
    WHERE OGU_OGU1.OguEntId2 = GRP.EntId
    AND OGU_OGU1.OguEntDomId2 = GRP.EntDomId
    AND DIV.EntId = OGU_OGU1.OguEntId1
    AND DIV.EntDomId = OGU_OGU1.OguEntDomId1
    AND OGU_OGU2.OguEntId2 = DIV.EntId
    AND OGU_OGU2.OguEntDomId2 = DIV.EntDomId
    AND DEPT.EntId = OGU_OGU2.OguEntId1
    AND DEPT.EntDomId = OGU_OGU2.OguEntDomId1
    UNION
    SELECT SEC.SecStructureString Structure,
    DEPT.DeptShortName DeptCode,
    DEPT.DeptName DeptDesc,
    DIV.DivShortName DivCode,
    DIV.DivName DivDesc,
    GRP.GrpShortName GrpCode,
    GRP.GrpName GrpDesc,
    SEC.SecShortName SecCode,
    SEC.SecName SecDesc,
    NULL SSecCode,
    NULL SSecDesc
    FROM erDepartment DEPT,
    erDivision DIV ,
    erGroup GRP,
    erSection SEC,
    erOrgUnit_Orgunit OGU_OGU1,
    erOrgUnit_Orgunit OGU_OGU2,
    erOrgUnit_Orgunit OGU_OGU3
    WHERE OGU_OGU1.OguEntId2 = SEC.EntId
    AND OGU_OGU1.OguEntDomId2 = SEC.EntDomId
    AND GRP.EntId = OGU_OGU1.OguEntId1
    AND GRP.EntDomId = OGU_OGU1.OguEntDomId1
    AND OGU_OGU2.OguEntId2 = GRP.EntId
    AND OGU_OGU2.OguEntDomId2 = GRP.EntDomId
    AND DIV.EntId = OGU_OGU2.OguEntId1
    AND DIV.EntDomId = OGU_OGU2.OguEntDomId1
    AND OGU_OGU3.OguEntId2 = DIV.EntId
    AND OGU_OGU3.OguEntDomId2 = DIV.EntDomId
    AND DEPT.EntId = OGU_OGU3.OguEntId1
    AND DEPT.EntDomId = OGU_OGU3.OguEntDomId1
    UNION
    SELECT SSEC.SubSecStructureString Structure,
    DEPT.DeptShortName DeptCode,
    DEPT.DeptName DeptDesc,
    DIV.DivShortName DivCode,
    DIV.DivName DivDesc,
    GRP.GrpShortName GrpCode,
    GRP.GrpName GrpDesc,
    SEC.SecShortName SecCode,
    SEC.SecName SecDesc,
    SSEC.SubSecShortName SSecCode,
    SSEC.SubSecName SSecDesc
    FROM erDepartment DEPT,
    erDivision DIV ,
    erGroup GRP,
    erSection SEC,
    erSubSection SSEC,
    erOrgUnit_Orgunit OGU_OGU1,
    erOrgUnit_Orgunit OGU_OGU2,
    erOrgUnit_Orgunit OGU_OGU3,
    erOrgUnit_Orgunit OGU_OGU4
    WHERE OGU_OGU1.OguEntId2 = SSEC.EntId
    AND OGU_OGU1.OguEntDomId2 = SSEC.EntDomId
    AND SEC.EntId = OGU_OGU1.OguEntId1
    AND SEC.EntDomId = OGU_OGU1.OguEntDomId1
    AND OGU_OGU2.OguEntId2 = SEC.EntId
    AND OGU_OGU2.OguEntDomId2 = SEC.EntDomId
    AND GRP.EntId = OGU_OGU2.OguEntId1
    AND GRP.EntDomId = OGU_OGU2.OguEntDomId1
    AND OGU_OGU3.OguEntId2 = GRP.EntId
    AND OGU_OGU3.OguEntDomId2 = GRP.EntDomId
    AND DIV.EntId = OGU_OGU3.OguEntId1
    AND DIV.EntDomId = OGU_OGU3.OguEntDomId1
    AND OGU_OGU4.OguEntId2 = DIV.EntId
    AND OGU_OGU4.OguEntDomId2 = DIV.EntDomId
    AND DEPT.EntId = OGU_OGU4.OguEntId1
    AND DEPT.EntDomId = OGU_OGU4.OguEntDomId1
    Trace file showing error ORA-10980. MV hangs forever and never compiles. If I execute the query it comes up with correct results.
    Thanks
    Rajesh

    I've seen MVs on 10g to be a bit tempermental. What happens if you build the MV but defer population and populate it as a second step?

  • Error ORA-02070:  while creating view - Help Needed.

    ISSUE:
    ~~~~~
    When i am creating the view for the below SQL script I am getting the error as
    ==>ORA-02070:DATABASE DOES NOT SUPPORT OPERATOR NLS_CHARSET_DECL_LEN in this context <==
    Sql script
    ~~~~~~~
    create or replace view test11 as
    WITH x AS
    (SELECT column_name,
    DECODE (column_id, 7,to_char(eff_to_dt,'MMDDRRRR'),
                                       8,active_flg,
                                       9,nm_long,
                                       10,nm_short,
                                       11,rplcmnt_bu_id,
                                       12,pc_cc_cd,
                                       13,tax_cd,
                                       14,bu_type_cd,
                                       15,ledger_cd) COL_VAL_NEW,
    '' COL_VAL_OLD,
                                       fre_id,
                                       bu_id,
    eff_from_dt,
    rec_eff_from_dt,
                                       rec_type
    FROM BUSINESS m, all_tab_columns u
    WHERE table_name = 'BUSINESS'
    AND column_name in ('EFF_TO_DT'
    ,'ACTIVE_FLG'
    ,'NM_LONG'
    ,'NM_SHORT'
    ,'RPLCMNT_BU_ID'
    ,'PC_CC_CD'
    ,'TAX_CD'
    ,'BU_TYPE_CD'
    ,'LEDGER_CD')
    AND rec_type ='A'
    ORDER BY rec_eff_from_dt
    y as
    (SELECT column_name,
    DECODE (column_id, 7,to_char(eff_to_dt,'MMDDRRRR'),
                                       8,active_flg,
                                       9,nm_long,
                                       10,nm_short,
                                       11,rplcmnt_bu_id,
                                       12,pc_cc_cd,
                                       13,tax_cd,
                                       14,bu_type_cd,
                                       15,ledger_cd) COL_VAL_NEW,
    '' COL_VAL_OLD,
                                       fre_id,
                                       bu_id,
    eff_from_dt,
    rec_eff_from_dt,
                                       rec_type
    FROM BUSINESS m, all_tab_columns u
    WHERE table_name = 'BUSINESS'
    AND column_name in ('EFF_TO_DT'
    ,'ACTIVE_FLG'
    ,'NM_LONG'
    ,'NM_SHORT'
    ,'RPLCMNT_BU_ID'
    ,'PC_CC_CD'
    ,'TAX_CD'
    ,'BU_TYPE_CD'
    ,'LEDGER_CD')
    AND rec_type <> 'A'
    ORDER BY rec_eff_from_dt
    a as (select y.column_name,
    y.col_val_new,
    x.col_val_new col_val_old,
    y.fre_id,
    y.bu_id,
    y.eff_from_dt,
    min(y.rec_eff_from_dt),
    y.rec_type
    from y, x
    where (y.fre_id = x.fre_id and y.bu_id = x.bu_id and y.eff_from_dt = x.eff_from_dt and y.column_name = x.column_name
    and nvl(y.col_val_new,'^') <> nvl(x.col_val_new,'~') and y.rec_type ='C')
    group by y.column_name,
    y.col_val_new,
    x.col_val_new,
    y.fre_id,
    y.bu_id,
    y.eff_from_dt,
    y.rec_type)
    select * from a
    union all
    select y.column_name,
    y.col_val_new,
    x.col_val_new,
    y.fre_id,
    y.bu_id,
    y.eff_from_dt,
    min(y.rec_eff_from_dt),
    y.rec_type
    from y, x
    where (y.fre_id = x.fre_id and y.bu_id = x.bu_id and y.eff_from_dt = x.eff_from_dt and y.column_name = x.column_name
    and y.col_val_new = x.col_val_new and y.rec_type ='D')
    group by y.column_name,
    y.col_val_new,
    x.col_val_new,
    y.fre_id,
    y.bu_id,
    y.eff_from_dt,
    y.rec_type
    union all
    SELECT column_name,
    DECODE (column_id, 7,to_char(eff_to_dt,'MMDDRRRR'),
                                       8,active_flg,
                                       9,nm_long,
                                       10,nm_short,
                                       11,rplcmnt_bu_id,
                                       12,pc_cc_cd,
                                       13,tax_cd,
                                       14,bu_type_cd,
                                       15,ledger_cd) COL_VAL_NEW,
    '' COL_VAL_OLD,
                                       fre_id,
                                       bu_id,
    eff_from_dt,
    rec_eff_from_dt,
                                       rec_type
    FROM BUSINESS m, all_tab_columns u
    WHERE table_name = 'BUSINESS'
    AND column_name in ('EFF_TO_DT'
    ,'ACTIVE_FLG'
    ,'NM_LONG'
    ,'NM_SHORT'
    ,'RPLCMNT_BU_ID'
    ,'PC_CC_CD'
    ,'TAX_CD'
    ,'BU_TYPE_CD'
    ,'LEDGER_CD')
    AND rec_type ='A'
    The sql script is nothing but to compare the record to get the attribute level changes.
    Please help me out why the error is being caused.
    Thanks in advance.

    Is one of the used table/view referencing a non-Oracle database with a database link ?
    ORA-02070: database [i]stringstring does not support string in this context
    Cause: The remote database does not support the named capability in the context in which it is used.
    Action: Simplify the SQL statement.

  • Keep getting an error message that reads, "LR An error has occurred while creating the book on Blurb" An error has occurred while trying to create texts and fonts.  Pleas advise as Blurb has said that it's a LR issue.

    Keep getting an error message that reads, "LR An error has occurred while creating the book on Blurb" An error has occurred while trying to create texts and fonts.  Pleas advise as Blurb has said that it's a LR issue.

    Are you behind a firewall or double NAT??
    What is the device that is immediately plugged into the main modem or router? Has that one been able to update?
    It is plugged in of course isn't it.. no nasty join wireless anywhere??
    The best way to work around these sort of problems is to simplify the network.. Plug each device directly into the main router.. by ethernet. You can trigger the firmware upgrade by wireless but use ipad or iphone version of airport utility and see what happens.

  • Keychain error -25299 occurred while creating a System Keychain entry for t

    Keychain error -25299 occurred while creating a System Keychain entry for the username “Angela Rosario” and URL “afp://Angela%[email protected]/Data”.
    I keep getting the error above every time I try to set up my time capsule
    Could use some help?
    Mahalo

    Same here.

  • Error ORA-02375 while trying to export/import JTF.JTF_PF_REPOSITORY table

    We have already created an SR, In the mean time, trying to see whether anyone else has come across this issue.  Thanks.
    On : 11.2.0.3 version, Data Pump Import
    Error ORA-02375 while trying to import JTF.JTF_PF_REPOSITORY table
    We are getting the below error while performing the full db
    import.
    ORA-02375: conversion error loading table
    "JTF"."JTF_PF_REPOSITORY" partition "EBIZ"
    ORA-22337: the type of accessed
    object has been evolved
    ORA-02372: data for row: SYS_NC00040$ :
    0X'8801FE000004AD0313FFFF0009198401190A434F4E4E454354'
    This issue is
    stopping our upgrade of database from 10.2.0.4 to 11.2.0.3. This is very
    critical for us to be resolved.

    Hi,
    seems this is Character set issue fo source and Target DB check this doc:Unable to Export Table WF_ITEM_ATTRIBUTE_VALUES due to errors ORA-02374, ORA-22337, and ORA-02372 (Doc ID 1522761.1)
    HTH

  • Accounts determination error is coming while create billing.

    Hi Experts,
    Accounts determination error is coming while create billing for Account Assignment Group A4 . In some cases only this error is appearing . I m a ABAPer I got this case and I  m debugging the code  . Can anyone  suggest me what all the things i need to check to know the root cause . This error is coming very  rarely but I want to find the reasons.  I saw some of scn post bt it was not clear .
    Please suggest briefly what w'd be the probable cause of this error and how to correct it.
    Thanks in advance

    Hi Dharmkrit,
    In one of your earlier posts, you have mentioned that you have assigned G/L accounts by selecting table 1. This is probably where you might be going wrong.
    Please follow the below steps to cross check your entries and you should hopefully have a solution.
    (1) First of all, start from the account determination procedure and check which procedure is assigned to the billing type.
    (2) Check the account determination type that is maintained in the procedure.
    (3) Check which access sequence assigned in that condition type
    (4) Check which table/tables have been maintained in the access sequence
    * In most probability, you would have maintained a different table in the access sequence while you are trying to assign your G/L accounts to some other table
    * Also, since you say that this error is only for a particular account determination type, check if you have maintained the correct combination of application/chart of account/Customer account assignment group/material account assignment group/G/L account in the correct table. However, this combination of fields depends on the table that you have used in the condition technique.
    I suggest that you write your entries down while checking the flow. This will give you a clear picture if a connection is missing somewhere in the condition technique.
    The customer/material account assignment groups are just keys (two digit codes) and their determination has nothing to do with Z1/Z2/A1 or any other code that you have defined in the system. The main determination is purely based on the condition technique and how correctly you have maintained the connections between the tables, access sequences, types and procedures. Just recheck these entries and you should be able to resolve the issue.
    Hope this helps
    Regards,
    Sumita Mittra

  • Error ORA-01422 while compressing a cube

    Hello,
    I am trying to compress the initial balnce of the European Inventory KPI  (KPINVMOEU) cube after reloading it and I encountered the oracle error-01422 which says:
    system error:error-01422:exact fetch returns more than requested
    system error:CONDENSE_FACTTABLE-5-ERROR-01422
    Has anyone dealt with this error before? Any input is appreciated.
    Thanks in advance,
    madhu

    Madhu,
        can you please look into these notes: 485766 and 385660.
    at the same time look into these links which is for similar problem.
    ERROR: System error: CONDENSE_FACTTABLE-5- ERROR:12805
    Error during compress 0IC_C03
    error ORA-01422 while compressing a cube
    Re: Cube compression failing
    All the best.
    Regards,
    Nagesh Ganisetti.

  • HT201514 I keep getting this message "Unable to complete back up an error has occurred while creating back up folder" Why is this happening and is it time to purchase a new tim machine?

    I keep getting this message “Unable to complete back up an error has occurred while creating back up folder” Why is this happening and is it time to purchase a new tim machine?

    Check out the Apple Support Communities Time Machine expert Pondini's troubleshooting article on this exact topic. Hopefully, it will help.

  • How to create a read only access for database

    I am developer but willing to lear some of the dba tasks. I would like to know the steps that i need to take to creat a read only access database that is going to be used for the report development.
    I really appreciate if you tell me all the steps I need to create that. I have a full right to do this in the develpment database. thanks

    thank you for your reply but it does not tell me how i can set up a read only access acccount for the user. Do i need to create a role and assign the role to the users?

  • MOVED: Folders Created As 'Read Only' By Default

    This topic has been moved to Off-Topic Technical.
    Folders Created As 'Read Only' By Default

    This topic has been moved to Off-Topic Technical.
    Folders Created As 'Read Only' By Default

  • Can I bring up siebel services while DB in read only / Standby Mode

    Hi,
    I am trying to bring up the siebel services while DB is in read only mode..
    Can I bring up siebel services while DB in read only / Standby Mode ???

    Hi ,
    Not sure. But I think you can, since bringing up the siebel service require some query from DB and some readings from the gateway.
    Cheers

  • Can an unique index be created on read only cache group

    Hi
    Can an unique index be created on read only cache group
    Regards
    Siva Kumar

    No, I do not think so. Creating a unique index could cause autorefresh operations to fail if the data being refreshed contains duplicate values that would not be allowed by the index. You can create regular indexes on a table in a readonly cache group.
    Chris

Maybe you are looking for

  • After latest Firefox update, MOBI plug-in no longer works

    After the recent update to 29.0.1, my plug-in that I used to view MOBI ebook files no longer work. When I click on a file, it brings up the window saying "You have chosen to open blah blah blah MOBI file. What would you like to do?" And when I click

  • I am looking to learn how jax-ws handle attachments, specially for a sample

    Hi Thank you for reading my post. Its some days that i try to create a pair of client and a web service that could handle attachments (I must use Jax-WS ) but i can not find any document that show how to create the service itself. All Sun tutorials a

  • File Adapter Acknowledgment

    Hi, My scenario is Proxy -> PI -> File I am returning an acknowledgment but we have a strange problem. At first when the scenario was successful it was returning code (status) 77 and when there was a error it returned code (status) 75. But know when

  • Include file forward back.

    Hi, I have two jsp files. A.jsp includes B.jsp. If some condition is true, the B.jsp will forward back to A.jsp. This actually works, but sometimes my tomcat crashes for no reason. I'm wondering this include-forward pattern makes it happen. Any sugge

  • Rookie using cue points

    Is is possible to use multiple xml files feeding in to multiple dynamic text boxes? I want to have close captioning, as well as background text which pops up when the speaker makes a point I want to emphasize. Am I barking up the wrong tree? Should I