Unable to query rman associated views

I am not able to interrogate associated rman views of one of the production database. The query fails with the error temporary tablespace. The current size of the temporary tablespace is 12G. 3
Applications work correctly in other bases. Could someone give advice what could be the possible reason for this problem.
Database version: 10.2.0.4, we use a recovery catalog
for example:
04:37:38 SQL > select count (*) from V_$ RMAN_BACKUP_JOB_DETAILS;
Select count (*) from V_$ RMAN_BACKUP_JOB_DETAILS
*
ERROR on line 1:
ORA-01652: unable to extend temp by 512 segment in tablespace TEMPORARY01

05:28:39 SQL >

It is a bug. See the documentation on Metalink ID 748251.1
For 11g, you will find information on Metalink ID 1314788.1

Most of the time you see this issue after an upgrade.
I am using the following instructions after the upgrade to 10.2.0.4 to 11.2.0.3

exec dbms_stats. DELETE_TABLE_STATS('SYS','X$KCCRSR');
exec dbms_stats. LOCK_TABLE_STATS('SYS','X$KCCRSR');
alter system flush shared_pool;
exec dbms_stats.delete_fixed_objects_stats ();
exec dbms_stats.gather_fixed_objects_stats ();

Published by: specdev on August 1, 2012 03:12

Tags: Database

Similar Questions

  • Unable to access the photo viewer; and also cannot access the desktop icons because they are changed to the photo viewer icon.

    Original title: I tried to apply the photo viewer to open a file and the photo viewer icon replaced each icon on my desktop. Now I can't open anything on my desktop. What is going on?

    The name is below the icon, but the correct icon has been replaced by windows Photo Viewer icon. When I click to open it, it says: windows Photo Viewer cannot open this photo because Photo Viewer does not support this file format, or you do not have the latest updates... I don't know what I did!

    Hi,

     

    Thanks for posting your question in the Microsoft Community.

    From your problem description, I understand that you are unable to access the photo viewer; and also cannot access the desktop icons because they are changed to the photo viewer icon. Please let me know if you do not experience this problem.

    I understand the inconvenience caused to you. I'll help you solve the problem!

     

    Before troubleshooting, I have little information on the issue.

    1. did you of recent changes to the computer before this problem?

    Try the methods suggested in the article below and check after each method:

    Method 1: Icons change incorrectly in Windows: http://support.microsoft.com/kb/2396571

    Registry warning: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the in the Microsoft Knowledge Base: 322756. How to back up and restore the registry in Windows: http://windows.microsoft.com/en-us/windows-vista/Back-up-the-registry

     

    Method 2: Run scan files system (CFS) auditor, to repair missing or corrupted system files.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7: http://support.microsoft.com/kb/929833

    If the problem persists, post your reply with the results and the questions asked above. We are happy to help you further in the advanced troubleshooting steps!

    It will be useful.

  • The Materialized View - ORA-12052: is unable to fast refresh materialized view

    Hello

    I was hitting my head all day trying to create materialized views. I have made some progress, but have hit a brick wall, unfortunately!

    Basically, I have been invited to take a view and see if I can get the benefits of performance by transforming all or part of it in materialized views. Because the underlying tables of the config is updated quite frequently, I want to fast refresh materialized views on commit. However, when I try to create a materialized view containing an outer join in an aggregated materialized view table, I get ORA-12052: is unable to fast refresh materialized view.

    I went through the documentation and also Rob van Wijkvery useful series of blogs on the topic (especially http://rwijk.blogspot.co.uk/2009/09/fast-refreshable-materialized-view.html) but have not found anything that matches. Maybe I missed something somewhere along the line, or maybe I'm asking just something completely impossible?

    My db is 11.2.0.2.

    Here's the test scripts, I've worked with that:

    drop materialized view test1_test2_mv;
    Drop materialized view test2 journal;
    drop table test2;
    Drop materialized view test1_mv newspaper;
    drop materialized view test1_mv;
    Drop materialized view test1 journal;
    drop table test1;

    create table test1 (identification number,
    type varchar2 (10),
    number of Val,
    update_time date,
    constraint t1_pk primary key (id, type, val));

    Insert into test1
    Select 1, 'a', 1001, sysdate - 10/24 Union double all the
    Select 1, 'b', 1003, sysdate - 9/24 Union double all the
    Select 1, 'c', 1002, sysdate - 8/24 Union double all the
    Select 1, had ', 1004, sysdate - 7/24 Union double all the
    Select 1, 'e', 1005, sysdate - 6/24 Union double all the
    Select 1, 'c', 1006, sysdate - 5/24 Union double all the
    Select 2, 'a', 1002, sysdate - 4/24 Union double all the
    Select 2, 'b', 1005, sysdate - 3/24 Union double all the
    Select 3, 'a', 1001, sysdate - 2/24 Union double all the
    Select 3, 'c', 1006, sysdate - 1/24 Union double all the
    Select 3, 'e', 1008, sysdate - 2/24 Union double all the
    Select option 4, has ', 1004, sysdate - 3/24 Union double all the
    Select 5, 'b', 1002, sysdate - 4/24 Union double all the
    Select 5, 'g', 1001, sysdate - 5/24 Union double all the
    Select 6, 'h', 1004, sysdate - 6/24 Union double all the
    Select 7, 'b', 1007, sysdate - 7/24 Union double all the
    Select 7, had ', 1001, sysdate - 8/24 double;

    commit;

    Select * from test1;


    CREATE MATERIALIZED VIEW LOG ON test1
    WITH rowid, primary key (update_time)
    including the new values;


    Test1_mv CREATE MATERIALIZED VIEW
    IMMEDIATE CONSTRUCTION
    COOL OFF QUICKLY ON COMMIT
    Did YOU SELECT id,
    MAX (case when type = "there" end of val) THAT col_a,.
    MAX (case when type = 'b', then val end) AS col_b,.
    MAX (case when type = 'c' then end val) AS col_c,.
    MAX (case when type = ' then end of val) AS col_d,
    MAX (update_time) AS update_time
    OF test1
    WHERE TYPE in ('a',
    « b »,
    « c »,
    a ')
    GROUP BY id;

    CREATE MATERIALIZED VIEW LOG ON test1_mv
    WITH rowid
    including the new values;


    create table test2 (identification number,
    col2 number,
    COL3 varchar2 (10),
    number of COL4,
    constraint t2_pk primary key (id));

    Insert into test2
    Select 1, 1, 'bob', 1 double Union all
    Select 2, 1, "sue", 1 double Union all
    Select 3, 1, 'tom', 1 double Union all
    Select 4, 1, 'jay', 1 double Union all
    Select 5, 1, 'art', 1 double Union all
    Select 6, 1, 'kay', 1 double Union all
    Select 7, 1, 'max', 1 double Union all
    Select 8, 1, 'tim', 1 double Union all
    Select 9, 1, "liz", 1 from dual;

    commit;


    CREATE MATERIALIZED VIEW LOG ON test2
    WITH rowid, primary key
    including the new values;


    Test1_test2_mv CREATE MATERIALIZED VIEW
    IMMEDIATE CONSTRUCTION
    COOL OFF QUICKLY ON COMMIT
    LIKE SOME t2.rowid,.
    T1.ID,
    T1.col_a,
    T1.col_b,
    T1.col_c,
    T1.col_d,
    T1.update_time,
    T2.col2,
    T2. COL3
    OF test1_mv t1,.
    Test2 t2
    WHERE (+) t1.id = t2.id; -symbol of outer join is not correctly displayed on the forums without space, grr!

    ORA-12052: is unable to fast refresh materialized view TEST1_TEST2_MV

    Y at - it any way I can get the materialized view fast refresh on commit or I asking the impossible?

    Add t1.rowid:

    SQL > CREATE MATERIALIZED VIEW test1_test2_mv

    2 BUILD IMMEDIATE

    3 QUICK REFRESH YOU COMMIT

    4 AS t2.rowid SELECT rid2,

    5 t1.rowid rid1,

    6 t1.id

    T1.col_a 7,.

    T1.col_b 8,.

    T1.col_c 9,.

    T1.col_d 10,

    T1.update_time 11,

    T2.col2 12,

    13 t2.col3

    14 OF test1_mv t1,

    15 test2 T2

    16 WHERE t1.id = t2.id

    17.

    Materialized view created.

    SQL > select * from test1_test2_mv

    2.

    RID2 RID1 ID COL_A, COL_B, COL_C COL_D UPDATE_TIME COL2 COL3

    ------------------ ------------------ ---------- ---------- ---------- ---------- ---------- ------------------- ---------- ----------

    AAAYB6AANAAAANDAAA AAAYB/AANAAAAN/AAA 1 1001 1003 1006 1004 25 / 06 / 2014 12:54:16 1 bob

    AAAYB6AANAAAANDAAB AAAYB/AANAAAAN/AAB 2 1002 1005 25 / 06 / 2014 1 sue 14:54:16

    AAAYB6AANAAAANDAAC AAAYB/AANAAAAN/AAC 3 1001 1006 25 / 06 / 2014 16:54:16 1 tom

    AAAYB/AANAAAAN/AAD AAAYB6AANAAAANDAAD 4 1004 25/06/2014 14:54:16 1 jay

    AAAYB6AANAAAANDAAE AAAYB / AANAAAAN / AAE 5 1002 2014/06/25 13:54:16 1 art

    AAAYB6AANAAAANDAAF AAAYB/AANAAAAN/AAG 7 1007 1009 25 / 06 / 2014 10:54:16 max 1

    AAAYB/AANAAAAN/AAH                                                                                                        1 tim

    AAAYB/AANAAAAN/AAF                                                                                                        1 kay

    AAAYB/AANAAAAN/AAI                                                                                                        1 liz

    9 selected lines.

    SQL > update of test2

    2 set col3 = "fly."

    3 where id = 7

    6 m

    1 line update.

    SQL > validation

    2.

    Validation complete.

    SQL > select * from test1_test2_mv

    2.

    RID2 RID1 ID COL_A, COL_B, COL_C COL_D UPDATE_TIME COL2 COL3

    ------------------ ------------------ ---------- ---------- ---------- ---------- ---------- ------------------- ---------- ----------

    AAAYB6AANAAAANDAAA AAAYB/AANAAAAN/AAA 1 1001 1003 1006 1004 25 / 06 / 2014 12:54:16 1 bob

    AAAYB6AANAAAANDAAB AAAYB/AANAAAAN/AAB 2 1002 1005 25 / 06 / 2014 1 sue 14:54:16

    AAAYB6AANAAAANDAAC AAAYB/AANAAAAN/AAC 3 1001 1006 25 / 06 / 2014 16:54:16 1 tom

    AAAYB/AANAAAAN/AAD AAAYB6AANAAAANDAAD 4 1004 25/06/2014 14:54:16 1 jay

    AAAYB6AANAAAANDAAE AAAYB / AANAAAAN / AAE 5 1002 2014/06/25 13:54:16 1 art

    AAAYB/AANAAAAN/AAH                                                                                                        1 tim

    AAAYB/AANAAAAN/AAF                                                                                                        1 kay

    AAAYB/AANAAAAN/AAI                                                                                                        1 liz

    AAAYB6AANAAAANDAAF AAAYB/AANAAAAN/AAG 7 1007 1009 25 / 06 / 2014 10:54:16 1 rob

    9 selected lines.

  • Unable to query oracle 9i fror

    Dear members

    I'm new to CF. just, I installed CF8 and Oracle 9i. I added the data source oracle and its fine but unable to query for cfm file below. error is as below. your help is highly appreciated

    Concerning

    Run database query error.

    [Macromedia] [Oracle JDBC Driver] [Oracle] ORA-00911: invalid character

    < cfquery name = "getMember" datasource = "myoracle" >

    Select ename, empno, sal deptno from emp;

    < / cfquery >

    < html >
    < head >
    < title > test server through Coldfusion < /title > Oracle
    < / head >
    < body >

    < table border = 1 >
    < b >
    < th > used no. < /th > < th > employee name < /th > < th > wage job < /th > < th > < /th > < th > Dept. No. < /th >
    < /tr >


    < cfoutput query = "getMember" >

    < b >
    < td > #empno # < table >
    < td > #ename # < table >
    < td > #job # < table >
    < td > #sal # < table >
    < td > #deptno # < table >
    < /tr >
    < / cfoutput >

    < /table >

    < / body >
    < / html >

    Remove the semicolon.  The semicolon is an Oracle customer statement separator and is not actually part of SQL itself.  It is not necessary - and indeed that you found invalid in JDBC calls.

    --

    Adam

  • Need help with query SQL Inline views + Group

    Hello gurus,

    I would really appreciate your time and effort on this application. I have the following data set.

    Reference_No---Check_Number---Check_Date---description---Invoice_Number---Invoice_Type---Paid_Amount---Vendor_Number
    1234567 11223 - 05/07/2008 -paid for cleaning- 44345563-I-* 20.00 *---19
    1234567 11223 - 05/07/2008 - 44345563 -a--10,00---19 ofbad quality adjustment
    7654321 11223 - 05/07/2008 - setting the last billing cycle - 23543556 - A - 50.00 - 19
    4653456 11223 - 05/07/2008 - paid for cleaning - 35654765 - I - 30, 00-19

    Please ignore '-' added for clarity

    I'm writing a paid_amount based on Reference_No, Check_Number, Payment_Date, Invoice_Number, aggregate query Invoice_Type, Vendor_Number and display description with Invoice_type 'I' when there are multiple records with the same Reference_No, Check_Number, Payment_Date, Invoice_Type, Invoice_Number, Vendor_Number. When there are no more records I want to display the respective Description.

    The query should return the following data set

    Reference_No---Check_Number---Check_Date---description---Invoice_Number---Invoice_Type---Paid_Amount---Vendor_Number
    1234567 11223 - 05/07/2008 -paid for cleaning- 44345563-I-* 10.00 *---19
    7654321 11223 - 05/07/2008 - setting the last billing cycle - 23543556 - A - 50.00 - 19
    4653456 11223 - 05/07/2008 - paid for cleaning - 35654765 - I - 30, 00-19
    Here's my query. I'm a little lost.

    Select b., A.sequence_id, A.check_date, A.check_number, A.invoice_number, A.amount, A.vendor_number
    de)
    Select sequence_id, check_number, check_date, invoice_number, sum (paid_amount) sum, vendor_number
    of the INVOICE
    Sequence_id group check_date, check_number, invoice_number, vendor_number
    ) A, B OF INVOICE
    where A.sequence_id = B.sequence_id


    Thank you
    Nick

    It seems that this is a duplicate thread - correct me if I am wrong in this case->

    Need help with query SQL Inline views + Group

    Kind regards.

    LOULOU.

  • Query on the view runs slower than the direct request

    Hi all

    I created a simple display and when I run the view she takes more time and when I run the query it answer quickly.

    Here are the plans of the explain command

    Query:

    Execution plan

    ----------------------------------------------------------

    Hash value of plan: 2867537711

    -------------------------------------------------------------------------------------------------------------

    | ID | Operation | Name                       | Lines | Bytes | Cost (% CPU). Time |

    -------------------------------------------------------------------------------------------------------------

    |   0 | SELECT STATEMENT |                            |     1.   153.  107   (1)| 00:00:02 |

    |   1.  COUNT                         |                            |       |       |            |          |

    |*  2 |   OUTER HASH JOIN |                            |     1.   153.   107 (1) | 00:00:02 |

    |   3.    NESTED LOOPS |                            |     1.   101 |     4 (0) | 00:00:01 |

    |   4.     TABLE ACCESS BY INDEX ROWID | TBLWEBINSPR |     1.    58.     2 (0) | 00:00:01 |

    |*  5 |      INDEX UNIQUE SCAN | IDX_SUBSRIBER_WEBINSPR |     1.       |     1 (0) | 00:00:01 |

    |*  6 |     TABLE ACCESS BY INDEX ROWID | TBLMACCOUNT |     1.    43.     2 (0) | 00:00:01 |

    |*  7 |      INDEX RANGE SCAN | IDX_USERNAME_ACCOUNT |     1.       |     1 (0) | 00:00:01 |

    |*  8 |    TABLE ACCESS FULL | TBLTNETWORKSERVICEINSTANCE | 12828.   651K |   103 (1) | 00:00:02 |

    -------------------------------------------------------------------------------------------------------------


    Explain the Plan of view:

    Execution plan

    ----------------------------------------------------------

    Hash value of plan: 3639776364

    ------------------------------------------------------------------------------------------------------

    | ID | Operation | Name                       | Lines | Bytes | Cost (% CPU). Time |

    ------------------------------------------------------------------------------------------------------

    |   0 | SELECT STATEMENT |                            | 12889.    61 M |   824 (1) | 00:00:10 |

    |*  1 |  VIEW                   | V5                         | 12889.    61 M |   824 (1) | 00:00:10 |

    |   2.   COUNTY |                            |       |       |            |          |

    |*  3 |    EXTERNAL RIGHT HASH JOIN |                            | 12889.  1925K |   824 (1) | 00:00:10 |

    |*  4 |     TABLE ACCESS FULL | TBLTNETWORKSERVICEINSTANCE | 12828.   651K |   103 (1) | 00:00:02 |

    |*  5 |     HASH JOIN |                            | 12889.  1271K |   721 (1) | 00:00:09 |

    |*  6 |      TABLE ACCESS FULL | TBLMACCOUNT | 12865.   540K |   583 (1) | 00:00:07 |

    |   7.      TABLE ACCESS FULL | TBLWEBINSPR | 17680.  1001K |   137 (1) | 00:00:02 |

    ------------------------------------------------------------------------------------------------------

    Query is:

    Select rownum as id, tw.subscriberidentity as user_identity, tw.password, tw.customertype, tw.expirydate, tw.status, nvl (decode (lower (tn.isportal), 'yes', 'yes', 'no', 'no'), 'yes') as passwordcheck,.

    fn_getEncryptionType (TM.encryptiontypeid) as encryptiontype, tw.servicetype, tn.maccount, tn.isroaming, tn.isportal, tn.iprange, lower (replace (fn_getmodemmac (tn.referenceaccountid),'-')) as modemmac,

    NVL(fn_getclientmac(TN.referenceaccountid),'A4-BA-DB-B7-FA-10') as clientmac, 'DEN Delhi address' as address, tn.networkkeyid, decode (lower (tn.isroaming), 'yes', null, 'no', "0:8 ='|") TN.iprange) as checkroaming,

    'ACC0000000' as cacno, ' [email protected] ' as cemailid, 'The account name' as cname, like cmobile's ' 7567077034', '66099965606' as coffice from (select distinct referenceaccountid, param2 Minventa, param4

    IsRoaming, param5 isportal, param6 iprange, NTWRKSRVINSTANCEID networkkeyid of tbltnetworkserviceinstance where systemgenerated = 'n') tn, tw, tblmaccount tm tblwebinspr where

    TN.referenceaccountid (+) = tm.accountid and tw.subscriberidentity = tm.username and tm.accounttypeid = 'ACT08' and tm.systemgenerated = ' don't

    Please suggest.

    Kind regards

    Ronak Masudi

    You do not have show us the request, the view definition or the predicate for the plans section; but speculation obvious that you have included the rownum inside the view definition - which makes a view no-that can be merged that must be instantiated before the predicate of the query can be applied.

    Concerning

    Jonathan Lewis

  • What will happen to the SQL Query based object View (EmployeesVO)

    Schema used: HR

    1. I created a view through SQL Query view object object (Table Employees - EmployeesVO).
    2. Creates an entity of the Employees (EmployeesEO) table object.
    3. In the section EmployeesVO (View object) entity objects, I chose EmployeesEO (entity object).

    What will happen to the View SQL Query object based on (EmployeesVO) will it change to VO based on entities or still to be based query VO.

    It is there because you can still base your query based Vo EO according to Vo.

    After that you base your VO on EO you can now use 'Add the attribute of the entity' to base your attribute on the atrributes of EO. Or if you skilled enough you can manually change the XML to VO

  • Publish everything in running the publishing application ATG - CRS Server. Unable to query the table 'das_id_generator '.

    Hello

    I use ATG version 10.2 and you have configured CRS application by IMC. All data import and deployments have been successful.

    Applications of short (MDEX 6.4.1, CASE 3.2.1 6.4.1.2, tools and Framework 3.1.2 platform services) are running: port 8006, 8500, race 8888.

    Now MY PROBLEM IS in TWO PARTS:

    PART 1)  Ran the store on jboss, has worked well, core application started without any error.  When trying to load the homepage, get following error message:

    16:42:25, 926 full repository INFO [SEORepository] SQL boot

    16:43:32, 653 ERROR [DynamoServlet]

    CAUGHT AT:

    Container: ATG.servlet.jsp.ContainerJspException: Cannot find the named component: / atg/registry/Slots/HomeTheme; Source: javax.servlet.ServletException: Cannot find the named component: / atg/registry/Slots/HomeTheme

    at atg.taglib.dspjsp.ParamTag.doStartTag(ParamTag.java:419)

    at org.apache.jsp.navigation.gadgets.homePagePromotions_jsp._jspx_meth_dsp_005fparam_005f0(homePagePromotions_jsp.java:1021)

    at org.apache.jsp.navigation.gadgets.homePagePromotions_jsp._jspService(homePagePromotions_jsp.java:219)

    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)

    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)

    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)

    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)

    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)

    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:123)

    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:883)

    at org.apache.jsp.index_jsp._jspx_meth_dsp_005finclude_005f1(index_jsp.java:633)

    to org.apache.jsp.index_jsp.access$ 1 (index_jsp.java:622)

    to org.apache.jsp.index_jsp$ Helper.invoke1 (index_jsp.java:685)

    to org.apache.jsp.index_jsp$ Helper.invoke (index_jsp.java:711)

    at org.apache.jsp.tag.web.store.pageContainer_tag._jspx_meth_c_005fwhen_005f1(pageContainer_tag.java:2757)

    at org.apache.jsp.tag.web.store.pageContainer_tag.doTag(pageContainer_tag.java:812)

    at org.apache.jsp.index_jsp._jspx_meth_crs_005fpageContainer_005f0(index_jsp.java:598)

    at org.apache.jsp.index_jsp._jspx_meth_dsp_005fpage_005f1(index_jsp.java:565)

    at org.apache.jsp.index_jsp._jspService(index_jsp.java:127)

    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

    ...........................

    ...........................

    ...........................

    ...........................

    At this point, the CRS page opens but no short content. Don't load no registration, no image on the home page does display, NO SEARCH BOX displayed in the header.

    PART 2)  On top of that when I try to run the server pubishing on JBOSS, start does'nt server and responds to error. If the das_id_generator table exists in DB for all 4 patterns.

    16:09:41, 082 INFO [ScreenLog] with logging of external for debug messages and trace kernel to avoid hidden kernel logging information. Set the property /atg/dynamo/service/logging/ScreenLog.useInfoForDebug to false nucleus to use external instead trace and debug logging.

    16:09:41, 199 INFO [Version] HV000001: Hibernate Validator 4.3.1.Final

    16:09:41, 748 Truncating WARN [ClusterBroadcaster] serviceProperties "commandLineModules" key value

    16:09:42, size INFO [STDOUT] 345 (ERR_QUERY_TABLE, das_id_generator

    16:09:42, 351 ERROR [IdGenerator]

    CAUGHT AT:

    Container: ATG.service.IdGen.IdGeneratorException; Source: Container: ATG.service.IdGen.IdGeneratorException: Cannot query the table 'das_id_generator '. Please make sure that the table exists and is accessible before you start this service. ; Source: Java.Sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist

    at atg.service.idgen.PersistentIdGenerator.initialize(PersistentIdGenerator.java:389)

    at atg.service.idgen.AbstractSequentialIdGenerator.doStartService(AbstractSequentialIdGenerator.java:643)

    at atg.nucleus.GenericService.startService(GenericService.java:561)

    at atg.nucleus.NucleusNameResolver.startService(NucleusNameResolver.java:1726)

    at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1397)

    at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:928)

    at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:667)

    at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:648)

    at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:493)

    at atg.nucleus.ConfigurationRef.getValue(ConfigurationRef.java:119)

    at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:403)

    at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:240)

    at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:263)

    at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:297)

    at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:984)

    at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:84)

    at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1643)

    at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1368)

    ........................

    ........................

    ........................

    An early response would be really useful because we have demo in 10 days.

    Kind regards

    Ben Milot

    Thank you for this comment.

    I had created a fresh scheme for publication but the jboss was still pointing to the old.

    I've updated this pointers in file @ /server/ atg atg - ds - ds.xml. Worked like a charm!

    If 2nd EDITION solved.


    The QUESTION 1 depended on question 2. Once I ran publishing and completed the full deployment on ICC, 1st edition got resolved.

    Thanks to shaik and Grando

    Kind regards

    Ben Milot

  • Query on Aggergation Views

    Hi all

    I have a query on the global view of ASO.

    If I created aggregated views of ASO cube with existing data and when adjustments are made after the creation of views, if he pulls the numbers that have been aggregated before adjustments or it will give the last number which is adjusted?

    Thank you

    Srini

    You will get the most recent issue.  ASO is magical.

    More seriously, Essbase may or may not create additional views on incremental data, but it will do this without any action required from the administrator.  When you query may take the original value of your aggregated data and add possible changes to incremental data (with or without additional views), before returning the result.

    If you load "of not incrementally", merge your incremental data or restructure the cube, Essbase recalculates the views, but even once it does "implicitly" without any required administrator instructions.

  • JDeveloper does not support the SQL expert, cannot add query clause to view link

    For developers who can know:

    I use JDeveloper 10.1.3.4 and I have two tables, we're STUDENTS, the other is the PRICE, with a one-to-many relationship (a student may have several awards), and ID is the foreign key:
    STUDENTS
    ------------------------
    ID    NAME    DOB
    ------------------------
    9999  JOHN    01/02/1990
       |  
       |  
       |  
       |           AWARDS
       |           ------------------------
       |           ID      DESC      AMOUNT
       |           ------------------------
       ----------- 9999    PELL      500
                   9999    PERKINS   800
                   9999    LOAN      900
    In the application, when a student (9999, JOHN) connects, the information above is displayed. I need to add up all the awards for the student and to display not only the elements of price, but also the total amount of all awards. To do this, I created another object to view named TotalAwards in the object entity the price just to get the total amount. The SQL code of the VO's
    SELECT SUM(Awards.AMOUNT) AS TOTAL
    FROM AWARDS Awards
    Then, a link is created between the students and the TotalAwards, and use of the new link to the view is added to the application module. TotalAwards is now available in the data control palette to be drag-and - drop to pages.

    Problem occurs when the application is invoked. An error is caught before the application can begin. The error message indicates that "the ends or the link view do not specify an attribute.

    It seems that the TOTAL 'SUM (Awards.AMOUNT) AS TOTAL' is not recognized as an attribute. I have reviewed the query clause in the display link to see if it is there, such as:
             Attribute        Bind Variable
             ------------     --------------
             Students.ID      :Bind_Id
    
    
    WHEHE    :Bind_Id = Awards.ID
    There is no such clause in the query clause page. And I can not add a no more, because the page is grayed out and disabled. I think maybe it's for the same reason: TOTAL is not recognized as an attribute of the price.

    How to get around the problem? Or are there other ways to summarize the total amount and view it in the browser?

    Thank you very much for help!


    Newman

    Hello

    Here you have a solution for the TOTAL:
    http://www.freewebalbum.com/blogs/faces/bjanko/blogs.jsp?blog=bjanko20070725180020

    Kind regards

    Branislav

  • Unable to download the Word Viewer

    has had to reload windows xp home edition.  now I can't download windows 2007 documents Viewer.  Any suggestions?

    I had to reload windows xp home edition after setting a blue error screen. Now, I can't properly download windows 2007 documents Viewer.  Any suggestions?

    Jay

    You also re-load all your drivers (chipset, LAN - if on ADSL Internet - sound etc.)?

    If you can not download anything at all, then you will need to re - install all THE drivers for your PC/laptop. Especially the LAN (network), a.

    Instead of using the CD/DVD that came with it probably, go to the manufacturer's Web site and find his support for your device page. Under download, you will find all the latest drivers. Download and install.

    BTW, a BSOD is generally assimilated to a driver, NO Windows.  Can be sound, or more probably video. Download the forms as above should fix this.

    See you soon,.

    Jerry

  • Unable to get the Windows Viewer to let me attach a picture to my AOL mail and send it on this screen

    This used to be so simple before the accident. I could send a picture of the viewer of Windows. I click on e-mail, join and my AOL mail writing would leap upward and I hit send. Now, I get the famous "you don't have an email etc. software." I should say that I have the 64 bit version of Windows 7. I think that my default is set correctly to AOL.  Thank you.   Lee

    E-mail ' send to ' works if you have MS Outlook installed/configured, or use a different e-mail program, and not if access you messages via your browser

  • Query on the View object mode

    Hi all

    Version: 11.1.1.7.1

    I was wondering if we can first search the Cache entity and if not found then search the DB and uses the slot settings query ORed together. It will work the way I expect?

    A level more end this connection the query DB connected when you add the query mode based on my past experience, "QUERY_MODE_SCAN_DATABASE_TABLES" - a SQL in the journal does not necessarily mean that the SQL is get executed.

    RowIterator iterator = xyzVO.findByViewCriteria(viewCriteria, -1, QUERY_MODE_SCAN_ENTITY_ROWS | QUERY_MODE_SCAN_DATABASE_TABLES);    

    Thank you

    No, he won't do it this way. This option is used if you want to see changes made in the current transaction (new, changed or remove lines) If you run the query again. IF you want to only look at the DB miss you some changes.

    If you look at the definition of criteria of display you see the Db Scan, data base and at a time zone drop-down. This drop-down list control these flags.

    Timo

  • Query Oracle to view a single employee for all departments

    Hello

    I'm looking for an efficient query which will display a report with the rest of columns

    Dept | Employee ID

    (Field of join is DEPT_ID)

    Where departments are stored in the DEPT table and the employee list is stored in the EMP table. What I want is a join between 2 tables, but display only one employee (any random) for each Department.

    At the moment if I fire the inner join, it displays all employees from the EMP table.

    Buxant

    Hello

    What a strange requirement. Any name of emp?

    Then get anyone with a scalar subquery:

    with got_emp as
    (
    select dname
        , (select em.ename
              from emp em
            where d.deptno = em.deptno
              and rownum <= 1
          ) ename
      from dept d
    )
    select *
      from got_emp
    where ename is not null;
    

    Kind regards.

    Alberto

  • Unable to access the Smart View 11.1.2.5.216 in Outlook 2007

    All,

    I uninstalled Smart View 11.1.1.3.x of my MS Windows 7 (x 32) Professional SP1 machine and installed Smart View 11.1.2.5.216 during the same session (that is to say, without having to reboot).

    While SmartView arrives perfectly fine when I access Excel, Word and PowerPoint and I can connect to the 11.1.2.3.00 EMP data sources, I don't see the Ribbon of Smart View under MS Outlook. This is in spite of:

    -After changing my MS Office 2007 installation to run Visual Basic Scripting Support on my PC for MS Outlook 2007 only (i.e., via Control Panel > programs and features > MS Office Standard 2007 > change > add or remove components);

    -remove the key HKEY_CURRENT_USER\Software\Hyperion Solutions and that underlie the subkeys, after uninstalling 11.1.1.3 and before installing 11.1.2.5.216

    There is no disabled COM add-ins displayed in MS Outlook 2007 and there is no other entries related to Hyperion (IE, HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\Hyperion.CommonAddin) to amend\delete under HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\AddIns. Also, I searched but could not find the Smart View PST file on my machine.

    Has anyone any suggestions as to where else I could be looking or what else I could do to activate the smart display in MS Outlook 2007?

    Thanks in advance.

    JBM

    Have you tried under option

    HTH

    Amarnath

    ORACLE | Essbase

Maybe you are looking for