Desinger 10g Issue CDR-20043

I have installed Oracle Designer 10g with Oracle 10g database on Windows XP, after repository creation when i try to connect designer its giving me a message < CRD-20043 Non-versioned repository has no workarea or insufficient privileges > . 2nd when i go to Repository object navigator to Invoke Workarea its disable.
Please help me in this regard.
Regards
SS

Sounds like an improperly installed reposity
Try these instructions. This is set to my pc so youwill have to adjust to yours.
After you install the IDS 10G in a new oracle home on the Client windows PC you will find the intall manual under:
start - programs- Oracle Developer Suite - Designer documentation - Repository instalation Guide
The following are the step I use to build a new repository
You will need to set paths and names as you desire for your local PCs and repostiory.
-- Step 1
Log on as SYS
This is so you can get the path name of your datafiles:
select file_name, tablespace_name from dba_data_files;
-- D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\TEMP_65.DBF
create tablespace constant_grow_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_indexes_01.dbf'
size 4000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace constant_grow_TABLES
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_tables_01.dbf'
size 15000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace dependency_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_indexes_01.dbf'
size 5600k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace dependency_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_tables_01.dbf'
size 9000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace diagram_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_indexes_01.dbf'
size 1000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace diagram_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_tables_01.dbf'
size 2000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace lob_data
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\lob_data_01.dbf'
size 1200k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace rapid_grow_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_indexes_01.dbf'
size 250000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace rapid_grow_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_tables_01.dbf'
size 500000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace system_meta_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_indexes_01.dbf'
size 20000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace system_meta_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_tables_01.dbf'
size 30000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace temporary_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_indexes_01.dbf'
size 5000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace temporary_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_tables_01.dbf'
size 9000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace version_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_indexes_01.dbf'
size 9000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace version_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_tables_01.dbf'
size 12000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
-- Step 2
Make sure you ave plenty of space in your system tablespace
select tablespace_name, sum(bytes)/1024/1024 from dba_free_space
group by tablespace_name;
alter tablespace system add datafile
'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system03.dbf' size 140m;
-- Step 3
As SYS
create user owner identified by owner default tablespace users
temporary tablespace temp;
Run this file as SYS
@ D:\Designer_Home\IDS10_1_2\repadm61\UTL\CKROROLE.SQL
GRANT EXECUTE ON DBMS_LOCK TO owner;
GRANT EXECUTE ON DBMS_PIPE TO owner;
GRANT CREATE TABLE TO owner;
GRANT CREATE VIEW TO owner;
GRANT CREATE PROCEDURE TO owner;
GRANT CREATE SYNONYM TO owner;
GRANT CREATE SEQUENCE TO owner;
GRANT SELECT ON v_$nls_parameters TO owner WITH GRANT OPTION;
GRANT SELECT on sys.V_$PARAMETER TO owner;
GRANT SELECT ON dba_rollback_segs TO owner;
GRANT SELECT ON dba_segments TO owner;
GRANT CREATE ANY SYNONYM TO owner;
GRANT DROP ANY SYNONYM TO owner;
GRANT CREATE PUBLIC SYNONYM TO owner;
GRANT DROP PUBLIC SYNONYM TO owner;
GRANT ck_oracle_repos_owner to owner;
GRANT CONNECT, RESOURCE TO owner;
GRANT dba TO owner;
(If you want Row Level Security (RLS) on)
GRANT execute on dbms_rls to owner;
-- Step 4 Adding a user
create user user65 identified by user65 default tablespace users
temporary tablespace temp;
GRANT CONNECT, RESOURCE TO user65;
GRANT CKR_OWNER TO USER65;
GRANT CREATE TABLE TO user65;
GRANT CREATE VIEW TO user65;
GRANT CREATE PROCEDURE TO user65;
GRANT CREATE SYNONYM TO user65;
GRANT CREATE SEQUENCE TO user65;
GRANT SELECT ON dba_rollback_segs TO user65;
GRANT SELECT ON dba_segments TO user65;
GRANT CKR_OWNER TO USER65;
GRANT EXECUTE ON SDD_ACC_PRIV_LIST TO USER65;
GRANT EXECUTE ON SDD_SYS_PRIV_LIST TO USER65;
GRANT SELECT ON SDD_DEPENDENCY_TYPES TO USER65;
GRANT SELECT ON I$RM_ELEMENT_TYPES TO USER65;
GRANT SELECT ON SDD_GLOBAL_NAMES TO USER65;
GRANT EXECUTE ON JR_UTIL TO USER65;
GRANT EXECUTE ON JR_SYSTEM_UTIL TO USER65;
GRANT EXECUTE ON CKMIGFUN TO USER65;
-- Step 5
The following are the recommended minimum settings.
optimizer_mode = Choose
compatible = 9.0.0 # for an Oracle9i database
compatible = 8.1.7 # for an Oracle8i database
max_enabled_roles = 30
sort_area_size = 262144
sort_area_retained_size = 65536
hash_area_size = 1048576
optimizer_index_caching = 50
optimizer_index_cost_adj = 25
shared_pool_size = 32000000
db_block_buffers # comment out on an Oracle9i database
db_block_buffers = 2000 # on an Oracle8i database
open_cursors = 3000
processes = 100
db_file_multiblock_read_count=16 # for a 4K Oracle block size
db_file_multiblock_read_count=32 # for a 2K Oracle block size
db_file_multiblock_read_count=8 # for a 8K Oracle block size
Step 5b - (Oracle 9i or 10.2 DB) Install Oracle 9i or 10.2 Import and Export Utilities
Before installing Designer Repository on an Oracle 9i or 10.2 database, you need to set up the installation workstation to use the Oracle 9i or 10.2 import and export utilities. To do so, perform the following steps at the workstation from which you will be running the repository installation:
From the Oracle 9i or 10.2 installation media, install the Oracle 9i or 10.2 import and export utilities in a dedicated Oracle home.
In the Windows Registry, locate the key named:
HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_HomeName\REPOS61
where HOMEn is the home number of the home installed into for a multiple Oracle home environment, but is not present where the default Oracle home is being used.
Change the value of the EXECUTE_IMPORT and EXECUTE_EXPORT variables to point to the new Oracle home. Thus, if the new Oracle home is d:\des_9i, the settings would be:
d:\des_9i\bin\exp.exe
d:\des_9i\bin\imp.exe
-- Step 6
Log on to the Repository Admin Utility of Designer
start - programs- Oracle Developer Suite - Designer - Repository Admin Utility
Install Repository button
Make sure both check boxes are checked(one is grayed out) Next
Select the proper tablespace for the seletced box
Start the install.

Similar Messages

  • CDR-20043: Non-versioned repository has no workarea or insufficient privileges

    After Installing Designer 6i on NT 4.0 service pack 6
    and after I created the Repository
    Running the Designer produce this error:
    CDR-20043: Non-versioned repository has no workarea or insufficient privileges
    all privileges from check requirments are Ok!
    Please Help..........

    Hi,
    You may want to try enabling version support in the Repository.
    From the RAU, choose Options->Enable Version Support...
    Brian

  • Oracle 10g - issue with "DELETE from TABLE WHERE ID in (1,2,3)" (cfqueryparam used)

    Hello, everyone.
    I am having issues with running a DELETE statement on an Oracle 10g database.
    DELETE
    FROM tableA
    WHERE ID in (1,2,3)
    If there is only one ID for the IN clause, it works.  But if more than one ID is supplied, I get an "SQL command not properly ended" error message.  Here is the query as CF:
    DELETE
    FROM TRAINING
    WHERE userID = <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#trim(form.userID)#">
         AND TRAINING_ID in <cfqueryparam value="#form.trainingIDs#" cfsqltype="CF_SQL_INTEGER" list="yes">
    Anyone work with Oracle that can help me with this?  I'm an experienced MS-SQL developer; Oracle is new to me.
    Thanks,
    ^_^

    Nevermind.. a co-worker just told me that I still have to use parenthesis around the values for the IN clause. 

  • Linux 10g versus Windows XP 10g Issue - ORA-07445: exception encountered

    I did a full database export using exp from a 10g Linux database:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Prod
    PL/SQL Release 10.2.0.2.0 - Production
    "CORE     10.2.0.2.0     Production"
    TNS for Linux: Version 10.2.0.2.0 - Production
    NLSRTL Version 10.2.0.2.0 - ProductionLinux version:
    Red Hat Enterprise Linux ES release 4 (Nahant Update 5)I installed Oracle 10g on Windows XP:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - ProductionWindows XP version is:
    System:
        Microsoft Windows XP
        Professional
        Version 2002
        Service Pack 3
    Intel(R) Core(TM)2 CPU
    6300 @ 1.86GHz
    1.86 GHz, 3.25 GM or RAMI performed a full database import after creating the required tablespaces from the 10g database on Linux to Windows.
    On the Windows 10g database, I set Maximum SGA size to 1300 MB, and Total SGA size to 1000 MB. I set Aggregate PGA Target to 500 MB.
    This Windows box is going to be used by at most 2 developers for a change to our application that is not backward compatible (with respect to the database) with earlier versions of the application that uses the database. I was asked to create this so we could develop this branch without affecting the rest of the development team that are working on other enhancements on the Linux box.
    I then ran some packages that refresh the data in a set of tables. This runs through some code that exercises a lot of the database so I could uncover any issues.
    At a specific point in the execution of these packages I get the following error:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_qkkIsOJKey+299] [PC:0x1E58F73] [ADDR:0x80] [UNABLE_TO_READ] []I read the trace file and isolated it to a single, somewhat complex query. I tore the query apart into smaller queries, trying to isolate what was causing the issue. Whenever the core dump occurred, I was able to recover by simply closing the connection and opening a new connection. In my testing I found the specific query that raises the exception, and a less performing version of that query that does not cause the exception. Please note that this exception has never occurred on the Linux box (nor has it occurred on the beta or production database), and the code has been in place for close to 2 years.
    The code that causes the issue:
    SELECT UNIQUE
           oc.ogc_case_id AS oc_ogc_case_id,
           ogc.ogc_number AS ogc_number
      FROM (SELECT SUBSTR (REPLACE (afd.field_text, '-', '' ), 1, 6 )    AS ogc_number
              FROM ewoc_hw_snap.activity_field_data afd
             WHERE afd.afdcd_activity_field_data_key = (SELECT afdc.activity_field_data_key
                                                          FROM ewoc_hw_snap.activity_field_data_codes afdc
                                                         WHERE afdc.name = 'Case Number'
           ) ogc
      LEFT OUTER JOIN lct_snap.ogc_cases oc
            ON oc.ogc_number  = ogc.ogc_numberThe code that returns the same data, only slower, and does not raise the exception:
    SELECT UNIQUE
           (SELECT oc.ogc_case_id FROM lct_snap.ogc_cases oc WHERE oc.ogc_number = ogc.ogc_number ) AS oc_ogc_case_id,
           ogc.ogc_number AS ogc_number
      FROM (SELECT SUBSTR (REPLACE (afd.field_text, '-', '' ), 1, 6 )    AS ogc_number
              FROM ewoc_hw_snap.activity_field_data afd
             WHERE afd.afdcd_activity_field_data_key = (SELECT afdc.activity_field_data_key
                                                          FROM ewoc_hw_snap.activity_field_data_codes afdc
                                                         WHERE afdc.name = 'Case Number'
           ) ogcI executed both queries in SQL Developer version 3.0.04. SQL Developer gives the error message: No more data to read from socket
    Any ideas?
    The query shown above is as simple as I could pare it down to and still raise and then fix the issue. The fix to the package is not as simple as the second query shown above since there is more than one column of data that I need to return from the lct_snap.ogc_cases table. In any case, I shouldn't have to forgo using the LEFT OUTER JOIN. There must be something wrong with the Windows database. I didn't want to patch the Windows database without first checking on this forum to see if anyone had any less intensive potential solutions.
    I searched and found so many posts with the ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] error, that I realize it's a somewhat generic error message.
    Edited by: Starlight Rider on Jun 2, 2011 10:01 AM

    Check this metalink note : 452951.1
    Regards
    Raj

  • Discoverer Desktop 10g : Issue with Chinese Characters

    Hi ,
    Discoverer Desktop 10g client is having issue in displaying Chinese data. My report has chinese characters in it and the same does not get displayed properly when run from Discoverer desktop. However, when I export the report in html format and opened it in browser, it is displaying the chinese characters properly. Browser was set to Unicode(UTF-8) character set.
    I tried changing to different fonts in Discoverer Desktop, but couldn't get the chinese character issue resolved in Desktop.
    Could someone , please tell me how to fix this issue ?
    Please mail directly to [email protected]
    Thanks
    Venkatesh

    I am facing the same issue too. I think it is a problem with the fonts. Get back to you later if I find any solutions.

  • Migration from SQL SERVER 2008 to Oracle 10g issues.

    Hi ,
    I'm trying to migrate from SQL Server 2008 to Oracle 10g and I end up with some issues that I wanted to ask some info about it.
    First, I was following a tutorial
    http://st-curriculum.oracle.com/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm
    and and in the last version of Oracle SQL developer I downloaded, I didn't find the Load Database Capture Script Output option.
    My first question is how can I either add this option or is there a new way to load the capture script ?
    Then I use the migration wizard and after following everything, I had the migration complete message from the application.
    When I tried to open my connectionss, it tells me version 11.2 is required. Does that mean that Oracle SQL developper 3 only
    do the migration for oracle 11g? And if I tried the previous versions, it doesn't support SQL server 2008.
    What do I do in this case ?
    Thanks !

    Thank you for your reply.
    After using the wizard and made the offline migration script, in the Migration projects window I made a move data to the oracle connection I previously made and after when I tried to reopen the connection, I couldn't.
    Well I didn't retry it yet to see if I'll have the same behavior but basically this is what I think I did. When I tried to open the connection I made, it says, Oracle 11.2 is required.
    Now, I just generate target from the convert model and it says migration complete but how do I test it and I do I go to oracle and see change ?
    Do I had to create a special user in SQL Server to log to it first ? How do I logon to it ?
    Edited by: 873671 on Jul 20, 2011 7:03 AM
    Edited by: 873671 on Jul 20, 2011 7:19 AM

  • Oracle 10g Issue [ORA-00932: inconsistent datatypes: expected ]

    Hi,
    The following Code Snippet works fine in Oracle 9i DB but gives "ORA-00932: inconsistent datatypes: expected - got -; " error in 10g DB. We are facing lot of issues with this since we migrated application to 10g
    create or replace procedure cca is
    TYPE Cur_OPCols_Typ IS REF CURSOR;
    l_Cur_OPCols Cur_OPCols_Typ;
    str VARCHAR2(32767) :='select sysdate, 123 from dual';
    TYPE StringTyp IS TABLE OF VARCHAR2(7000) INDEX BY BINARY_INTEGER;
    capture StringTyp;
    BEGIN
         Open l_Cur_OPCols FOR str;
         FETCH l_Cur_OPCols BULK COLLECT INTO capture;
    dbms_output.put_line (capture.COUNT);
         Close l_Cur_OPCols;
    END cca;
    Please advise...
    Regards,
    Chinmay

    But...
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    CORE    9.2.0.1.0       Production
    TNS for Solaris: Version 9.2.0.1.0 - Production
    NLSRTL Version 9.2.0.1.0 - Production
    <br>
    <br>
    "afiedt.buf" 13 lines, 370 characters
      1  declare
      2   TYPE Cur_OPCols_Typ IS REF CURSOR;
      3   l_Cur_OPCols Cur_OPCols_Typ;
      4   str VARCHAR2(32767) :='select sysdate, 123 from dual';
      5   TYPE StringTyp IS TABLE OF VARCHAR2(7000) INDEX BY BINARY_INTEGER;
      6   capture StringTyp;
      7  BEGIN
      8   Open l_Cur_OPCols FOR str;
      9   FETCH l_Cur_OPCols BULK COLLECT INTO capture;
    10   dbms_output.put_line (capture.COUNT);
    11   Close l_Cur_OPCols;
    12* END cca;
    SQL> /
    declare
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected - got -
    ORA-06512: at line 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Oracle 10g - Issue with Timestamp

    Hi All,We are having an issue with Oracle 10g and Hyperion Intelligence Explorer 8.3.1.133I can only use ODBC to connect to 10g. If I use SQL Net as my connection source I get the dreaded "An unknown error has occurred".Hyperion support tells us to roll back to 8i or just use ODBC until patch released.Anybody know of any workarounds?Regards,Mike

    Nevermind.. a co-worker just told me that I still have to use parenthesis around the values for the IN clause. 

  • Cannot dispay head1 in visual desinger(theme issue)

    I have upgraded to Creator 2 Update 1 and I know have have a problem with all my pages in desin view
    I am recieving the following error
    Cannot dispay head1 in visual desinger
    Error message from component :
    com.sun.rave.web.ui.theme.ThemeConfigurationException: WARNING: the Sun Web Components could not load any themes.
         at com.sun.rave.web.ui.theme.ThemeFactory.createThemeManager(ThemeFactory.java:274)
         at com.sun.rave.web.ui.theme.ThemeFactory.createThemeManager(ThemeFactory.java:235)
         at com.sun.rave.web.ui.theme.ThemeFactory.initializeThemeManager(ThemeFactory.java:198)
         at com.sun.rave.web.ui.util.ThemeUtilities.getTheme(ThemeUtilities.java:64)
         at com.sun.rave.web.ui.renderer.HeadRenderer.renderAttributes(HeadRenderer.java:112)
         at com.sun.rave.web.ui.renderer.AbstractRenderer.encodeBegin(AbstractRenderer.java:148)
         at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:683)
         

    i seem to be answering my own questions again. If anyoneis interested in a solution
    Go to theme choose another theme other than your default , this allows the library to be rebuilt. Then rechoose your default them.
    Close application server
    Clean and Build
    ReStart Application (Overkill I know from now on)
    Restart server
    Clean and build again
    Problem solved.

  • Merge table issue CDR-03126 CDR-17026

    Hello,
    I am trying to do a check in on a table that is asking me to do a merge (version 1.5 and version 1.1CO(1)). I get the following errors. I checked the file that could not be found and it is there (cdrus.msg). Any help would be appreciated.
    CDR-03126: Internal Error - Object Delta retrieval
    CDR-17026: Not enough types were found.
    The .msg message file 'c:\devsuitehome_1\repadm61\cdrus.msg' for product "CDRMSG61", utility "CDR" could not be found.
    The .msg message file 'c:\devsuitehome_1\repadm61\cdrus.msg' for product "CDRMSG61", utility "CDR" could not be found.
    Thanks
    Cathy

    Hi Cathy,
    Same here: CDR-03126: Internal Error - Object Delta retrieval
    For nearly all our merge actions.
    Did you find/get the solution already?
    Help would be appreceated!
    Kind Regards,
    Wietze

  • GDK in JDeveloper / WebCenter 10G - Issue With Demo Code

    Hi all,
    I'm trying to understand the GDK by developing the GDK Shop application referred to in the following article:
    http://www.oracle.com/technology/obe/obe10gdb/develop/gdk/gdk.htm
    Initially (steps 1 & 2), the application was failing to come up (page not found error) - checking the logs showed no exceptions being thrown. However, including the oi18n*.jar files from the pre-built GDK Demo application in the project resolved this error.
    When I get to Step 6 (Detecting the User-Preferred Locale), the application fails displaying the following error trace:
    java.lang.RuntimeException
    at oracle.i18n.demo.obe.gdkshop.AuthFilter.doFilter(AuthFilter.java:77)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    The addition of the DBLocaleSource.java file within the project seems to be the source of this problem. However, the log files do not give me any more info.
    Your thoughts?
    Thanks,
    Abhishek.

    Hi all,
    I'm trying to understand the GDK by developing the GDK Shop application referred to in the following article:
    http://www.oracle.com/technology/obe/obe10gdb/develop/gdk/gdk.htm
    Initially (steps 1 & 2), the application was failing to come up (page not found error) - checking the logs showed no exceptions being thrown. However, including the oi18n*.jar files from the pre-built GDK Demo application in the project resolved this error.
    When I get to Step 6 (Detecting the User-Preferred Locale), the application fails displaying the following error trace:
    java.lang.RuntimeException
    at oracle.i18n.demo.obe.gdkshop.AuthFilter.doFilter(AuthFilter.java:77)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    The addition of the DBLocaleSource.java file within the project seems to be the source of this problem. However, the log files do not give me any more info.
    Your thoughts?
    Thanks,
    Abhishek.

  • Odi 10g Issue while implenting CDC on table

    Hi All,
    Am new to odi 10g ,
    Am getting following error while selecting journalize data only option in the interface
    Error:
    This data source is not journalized in this context .
    com.sunopsis.tools.core.exception.snpsSimpleMessageExcption:null
    Thanks
    Edited by: vam on Dec 24, 2012 1:03 AM

    Hi and welcome,
    You first have to journalize your datastore.
    You should follow a tutorial like this one : http://odiexperts.com/changed-data-capture-cdc/
    Hope it helps.
    Regards,
    JeromeFr

  • Migration: Oracle reports 6i to 10g issue - Diiference in the data

    Gudmorning everybody,
    We are doing a Oracle reports migration from oracle reports 6i to oracle reports 10g.
    I am facing a problem in the output generated ny the reports.
    I have to generate a CSV file in 6i and similarly in 10g. Both the reports are hitting the same database but still it is
    showing some difference in the count generated in the report.
    Its a report where it compares the data from the web and data from the application and gives a count for the each row.
    In the CSV creation procedure TABLE TYPe is used. I am not very good in Oracle procedures.
    Do u guys have faced similar situation? Not every data is different,some of the count is diff even though both the reports are hitting the same database.
    Anybody suggest me a solution. It will b really helpful. This happens when I am a giving 6 mnths date range. When it is 15 days range it shows proper output.
    Any help will be much appreciated.
    Thanks,
    Raneesh.

    Hello,
    On the web this is expected behavior.
    For an workaround please check this metalink note:
    How to Implement an Alternate Solution to Unrestricted List Of Values (LOV) in Parameter Form on the Web (Doc ID 465886.1)
    Kind regards,
    Alex
    If someone's answer is helpful or correct please mark it accordingly.

  • BPM 10g - issue wile deploying the exp file which is generated using ANT

    Hello,
    I'm trying to deploy exp file in process administrator which is generated using the Ant Zip task( pointed the basedir as CVS project root folder) and this deployment failed with exception : Unable to import project
    Do we have any ant task to generate .exp from CVS ???
    Ant Build file :_*
    <target name="BPMProject" description="BPMProject.zip file from the Cvs Source folder ">
         <zip destfile="..BPMProject.exp" basedir="../BPMProject" update="true" encoding = "UTF-8" />
    </target>
    Complete Stack Trace :_
    <W> 0705 13:31:25.746] Main (<7> http-8686-Processor16): Error BPM-1341541082741
    [     (cont)     ] Main: java.lang.NullPointerException
    [     (cont)     ] Main: java.lang.NullPointerException
    [     (cont)     ] Main:      at fuego.project.io.fs.export.ProjectZipper.unzipProject(ProjectZipper.java:256)
    [     (cont)     ] Main:      at fuego.project.io.fs.export.ProjectZipper.unzipAllProjects(ProjectZipper.java:154)
    [     (cont)     ] Main:      at fuego.webconsole.model.JSFPublicationInfo.unzipProject(JSFPublicationInfo.java:1779)
    [     (cont)     ] Main:      at fuego.webconsole.model.JSFPublicationInfo.fileUploadAction(JSFPublicationInfo.java:265)
    [     (cont)     ] Main:      at fuego.webconsole.model.JSFPublicationInfo.nextPageAction(JSFPublicationInfo.java:1169)
    [     (cont)     ] Main:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [     (cont)     ] Main:      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [     (cont)     ] Main:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [     (cont)     ] Main:      at java.lang.reflect.Method.invoke(Method.java:585)
    [     (cont)     ] Main:      at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
    [     (cont)     ] Main:      at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
    [     (cont)     ] Main:      at javax.faces.component.UICommand.broadcast(UICommand.java:312)
    [     (cont)     ] Main:      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
    [     (cont)     ] Main:      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
    [     (cont)     ] Main:      at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
    [     (cont)     ] Main:      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    [     (cont)     ] Main:      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    [     (cont)     ] Main:      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    [     (cont)     ] Main:      at fuego.web.filter.CharsetFilter.doFilter(CharsetFilter.java:48)
    [     (cont)     ] Main:      at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    [     (cont)     ] Main:      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    [     (cont)     ] Main:      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    [     (cont)     ] Main:      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    [     (cont)     ] Main:      at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
    [     (cont)     ] Main:      at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    [     (cont)     ] Main:      at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    [     (cont)     ] Main:      at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    [     (cont)     ] Main:      at java.lang.Thread.run(Thread.java:595)
    [     (cont)     ] Main:
    [<D> 0705 13:31:25.752] Main (<7> http-8686-Processor16): Context->contextcom.sun.faces.context.FacesContextImpl@117064c
    [<D> 0705 13:31:25.753] Main (<7> http-8686-Processor16): clientId = PublishForm:uploadedFile

    Hi
    PFB the details from the log file...If i migrate the same via jdeveloper, i don't get any errors..
    SEVERE: Upgrade failed. Check the logs for any exceptions. Ensure that the WSDL URLs specified in the project are reachable and a valid 10.1.3.x project is used for upgrade. Before re-attempting upgrade, restore the original project code source from the backup directory.
    java.lang.NullPointerException
    *     at oracle.viewgen.plugin.bpel.BPELPlugin.getReferenceProperties(BPELPlugin.java:403)*
    *     at oracle.viewgen.composite.CompositeUtil.setupCompositeRefs(CompositeUtil.java:586)*
    *     at oracle.viewgen.composite.CompositeUtil.createComposite(CompositeUtil.java:320)*
    *     at oracle.viewgen.ViewGenerator.main(ViewGenerator.java:316)*
    Caused by: java.lang.NullPointerException
    *     at oracle.viewgen.plugin.bpel.BPELPlugin.getReferenceProperties(BPELPlugin.java:352)*
    *     ... 3 more*

  • Version enabling

    hi
    i m using Oracle developer suit 10g and Designer version is 9.0.4.2.8.....i made a user and assigned all privileges to that user listed in "Check Requiements" butoon in RAU...i installed repository but now when i run Oracle Designer..it gives me error
    CDR-20043: Non versioned repository has no workarea or insufficient privileges
    i selected OPTIONS and then ENABLE VERSION SUPPORT from RAU but still same problem..
    can nayone tell me how to resolver this problem???
    Regards

    Please refer to the installation guide (http://otn.oracle.com/pls/wocprod/docs/page/ocom/technology/products/designer/supporting_doc/Des10g_9044/cmnhlp72/rep_insgde/igttl_9i.htm) regarding user priviledges when setting up your subordinate users. Enabling version is not a reversable step and requires some planning as to how you should use your repository in a versioned world. I recommend you look at the demos on the Repository (SCM) site for additional help [http://otn.oracle.com/products/repository/demos.html]
    Regards
    Sue

Maybe you are looking for

  • Oop project management

    Hello, i have create an oop project for an application. Now i would like to reuse all classes for distinct project  keeping links with this pack of classes may be this is what is called framework  i would like that modifiying a classe impact both pro

  • UCCE 7.5 Skill group expansion

    I have an issue where I want to queue to a skill group for say 5 mins and then expand it to another skill group or groups.  What is the best way to do this? My thoughts: 1) add skill group to initial queue to node with a consider if statement 2) add

  • Latest iPod firmware version

    Hello, I don't have easy access to iTunes, so I ask this to you all. As of today, what is the latest version for iPod firmware? (I have a 5.5 Generation iPod video, if that makes a difference)

  • FF4 won't open in Mac OS X10.4; lost FF3.10.16; cannot get back

    Downloaded FF4, but would not open on Mac OS X10.4.11; in trying I lost my FF3.6.16 and could not retrieve it; had to settle for downloading FF3.6.12.

  • Show Item Info is not really showing info

    Well, here is the problem: On my desktop I like the icons to show item info. So, I check that option in view options. It works out well enough, but it does not show the amount of free space in my HD. On my MacBook I got it to work with one account, b