Getting Started on Designer Repository

Hi
I need to install, create designer repository on Windows 2003 including data model. Where can I get a starting point to learn all about Oracle designer - Installation, Administration etc.
I haven't found any good document for beginner so far. I downloaded Installation document from oracle, but it does make little sense to me as I have absolutely no idea on designer.
Please shed some light on this.
I will also need to migrate existing data model to the new repository.
Thanks for the help!
- fa

1. you need to have the standard or enterprise edition of the database.
then you can use my script to get a repository created. Of course you will need to change things to set it to your database and not mine. But here it is.
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.
I wish you well.
Michael

Similar Messages

  • I cannot install my copy of creative suite 6 design and web premium? It stops at the adobe installer and wont even get started?

    I cannot install my copy of creative suite 6 design and web premium? It stops at the adobe installer and wont even get started? Anyone know how to fix? brand new machine running windows 8.1 pro?

    Jonp52000428 do you receive any specific error messages when attempting to install Creative Suite 6 Design Premium?  For information on how to locate and interpret the installation log files please see Troubleshoot with install logs | CS5, CS5.5, CS6, CC.  You are welcome to post any specific error messages you discover.

  • Getting the following error when upgrading designer repository

    Hello All,
    I`m going through the upgrade of the designer repository from 6i to 10gR2 and I get the following error in the log file ckprereq.log. The weird thing is from the GUI everything looked ok. It`s when i went to the individual log files tha ti saw the error:
    IMP-00003-ORACLE error 3120 encountered
    ORA-03120: two task conversion routine:integer overflow
    IMP-00000: Import terminated unsuccessfully
    Has anyone see this?
    Thanks.

    Yes, i just wanted to know the contents of the log file ckprereq.log. How many tables were imported?
    I only have the two tables ck_installed_objets and ck_product_elements before getting the oracle import error.
    I opened an SR with Oracle and they said if you don't have any missing, disabled or invalid objects, the repository was probably upgraded ok. But I wanted to confirm how many tables should be imported during a successful import.
    Thanks again Wayne.
    Hi Rodney,
    Yes, I still have all the logs from the upgrade.
    After the upgrade to Designer 10.1.2.0.2 I had 1
    invalid package - oddly enough, the logs don't show
    an error. I recompiled the one invalid package and
    applied the patch to take us to 10.1.2.2 - except for
    1 path exceeds 1023 characters message the patch
    installed without issues.
    Was there anything in particular you were looking for
    in the logs?
    Best regards,
    Wayne

  • Getting Started with the Power BI Designer

    A core part of the new Preview features for Power BI is the Power BI Designer. This lets you create a collection of queries, data connections, and reports that can easily be shared with others. The Power BI Designer integrates proven Microsoft technologies
    – the powerful Query engine, data modeling, and visualizations – and works seamlessly with the online
    Power BI Service.
    For more information you can
    read our Getting Started tutorial or
    watch a Getting Started video
    To find out how to download the Designer please
    go here

    Here is the updated version of the manual: http://www.ni.com/pdf/manuals/372946c.pdf
    I went to ni.com/manuals and looked for the Getting Started with LabVIEW DSC and found a more recent version that has the correct links. Unfortunately when searching via Google, the older version pops up first.
    Certified LabVIEW Architect * Certified Professional Instructor * LabVIEW Champion

  • Import designer repository error

    I am trying to import a designer repository using RAU but I have seen several errors about ORACLE error 942. One of them is:
    IMP-00017: following statement failed with ORACLE error 942:
    "CREATE DIMENSION "PROMOTIONS_DIM" LEVEL "PROMO" IS ("PROMOTIONS"."PROMO_ID""
    ") LEVEL "SUBCATEGORY" IS ("PROMOTIONS"."PROMO_SUBCATEGORY_ID") LEVEL "CATEG"
    "ORY" IS ("PROMOTIONS"."PROMO_CATEGORY_ID") LEVEL "PROMO_TOTAL" IS ("PROMOTI"
    "ONS"."PROMO_TOTAL_ID") HIERARCHY "PROMO_ROLLUP" ("PROMO" CHILD OF "SUBCATEG"
    "ORY" CHILD OF "CATEGORY" CHILD OF "PROMO_TOTAL") ATTRIBUTE "PROMO" LEVEL "P"
    "ROMO" DETERMINES "PROMOTIONS"."PROMO_NAME" ATTRIBUTE "PROMO" LEVEL "PROMO" "
    "DETERMINES "PROMOTIONS"."PROMO_END_DATE" ATTRIBUTE "PROMO" LEVEL "PROMO" DE"
    "TERMINES "PROMOTIONS"."PROMO_BEGIN_DATE" ATTRIBUTE "PROMO" LEVEL "PROMO" DE"
    "TERMINES "PROMOTIONS"."PROMO_COST" ATTRIBUTE "SUBCATEGORY" LEVEL "SUBCATEGO"
    "RY" DETERMINES "PROMOTIONS"."PROMO_SUBCATEGORY" ATTRIBUTE "CATEGORY" LEVEL "
    ""CATEGORY" DETERMINES "PROMOTIONS"."PROMO_CATEGORY" ATTRIBUTE "PROMO_TOTAL""
    " LEVEL "PROMO_TOTAL" DETERMINES "PROMOTIONS"."PROMO_TOTAL""
    IMP-00003: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    I have the same versions (dev suite 10g and database 10.2.0.2) with the source designer. Both of them are on Windows XP.
    Both of the repositories are using the tablespace with exactly same name(this may be irrelevant). When I start importing, I already have some data in that tablespace in the target repository. DSGNR users on both repositories are using that tablespace as default tablespace.
    Anything wrong here? I did upgrade database from 10.2.0.1 to 10.2.0.2 myself before export/import designer repository. Not sure if this is caused by the unsuccessful update? I did not see error in database upgrade.
    Your input is highly appreciated.
    Jennifer

    Yes the is a problem here.
    You have incompatable import export tools between Designer and the DB.
    In the Repository install manual it states:
    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
    If you have the 10.2 DB on the same machine then just point the registry to thoes tools and if you dont you will need to install the 10.2 client with admin privleges to get the imp/exp tools installed and then point the registry to them.
    hope that helps.
    Michael

  • Local control center is not getting started

    Hi all,
    we have Linux server installed with OWB 10.2 which will act as CLIENT . And a database unix server (oracle 10g) which is doesnt have OWB installed on it which will act as SERVER.
    Now we have created the OWB repository through CLIENT in the database server of the SERVER machine, and the server will be our OWB target database.
    IN the scenerio we are able to open th design center. but when we are starting the OWB control services manually ( login as OWB repo Owner) through the client machine , it is not getting started. Failes with the error "run_service.sh not found"
    And when we run the service doctor it shows the following message....
    "There is a problem accessing the service startup script from the database server
    Please verify that the disk containing the file is visible to the database server
    Please verify that the database server account has access rights on the file " .
    It seems to be the problem with acessing the OS file from client machine through the repo_owner(database owb repo user) which is a part of server database.
    Please help me in this regard.

    The good thing about the oracle db is that you get the owb installed with the database so you dont run into these kind of problems.
    When you install the database and owb together and try to run the controlcenter, the controlcenter comes up on its self via a script at <owbhome>rtp\sql\start_service
    Now that you dont have your owb installed on your database you need to run that script with some different paramaters
    Host: servername
    port:1521
    service_name: [email protected]
    schema_name: OWB_OWNER

  • Upgrade Designer Repository

    Hello,
    I want to upgrade my Designer Repository the following steps I have done.
    1. export Designer repository from 9i DB
    2. import Designer repository in 10g DB
    3. grand dba rights to repository owner
    4. start 10g Repository Administration Utility
    Repository Status: Release 4.0.12.94.24
    5. push upgrade button, new form appears.
    6. when i try to start the upgrade I get the error
    "You do not have SELECT privilege on sys.v_$PARAMETER view. The process cannot proceed."
    When i check the Requirements all options are green, so i have the dba rights and i can select from v_$Parameter.
    Can someone help me please?
    Thanks Franz

    When you follow the steps in creating a new repository from the "Repository Installation Guide" you will see that the user will need the following grants:
    grant execute on dbms_rls to repos_owner;
    grant execute on dbms_lock to repos_owner;
    grant execute on dbms_pipe to repos_owner;
    grant create table to repos_owner;
    grant create view to repos_owner;
    grant create procedure to repos_owner;
    grant create synonym to repos_owner;
    grant create sequence to repos_owner;
    grant select on sys.v_$nls_parameters to repos_owner with grant option;
    grant select on sys.v_$parameter to repos_owner;
    grant select on dba_rollback_segs to repos_owner;
    grant select on dba_segments to repos_owner;
    grant create any synonym to repos_owner;
    grant drop any synonym to repos_owner;
    You wrote that you export the repository from the 9i database. Are you doing this from the RAU or the RON or from the database?

  • Error when starting the Integration Repository/Directory

    When starting the Integration Repository or Directory I get the following error message when the Java Web Start is launched:
    <i>JAR resources in JNLP file are not signed by same certificate</i>
    I am running on XI3.0 SP15
    Any idea?
    Thanks in advance.
    Kind regards,
    Dave Arends

    Solved this issue.
    Go to Administration - Java Web Start Administration.
    Click on 'Re-initialization and force signings' and start the Repository or Directory again.

  • Migrating from 6i to 9i for form generating starting with designer

    I try to migrating our forms generating 5-6 years start with designer, but they are finished through form builder.
    When I tried to use migrating assistant wizard, I get
    LMDMANA.CG$WHEN_NEW_FORM_INSTANCE: The String CALL was found. If it is an occurence of the Forms Built-In, It should be replaced with CALL_FORM.
    Here is my LMDMANA.CG$WHEN_NEW_FORM_INSTANCE procedure
    /* CG$WHEN_NEW_FORM_INSTANCE */
    PROCEDURE CG$WHEN_NEW_FORM_INSTANCE IS
    BEGIN
    /* CGLY$INIT_CANVASES */
    /* Call procedure to ensure correct canvases are visible */
    BEGIN
    CGLY$CANVAS_MANAGEMENT;
    END;
    /* CGBS$STARTUP */
    /* Perform start-up processing for Block Synchronisation */
    BEGIN
    /* Set the defaults for the globals */
    :global.cg$query_mode := 'A';
    -- default_value('A', 'GLOBAL.CG$QUERY_MODE');
    /* Set the relations to the default query mode */
    CGBS$.SET_RELATIONS( :GLOBAL.CG$QUERY_MODE );
    /* Set the query mode items */
    CGBS$SET_QUERY_MODE( :GLOBAL.CG$QUERY_MODE );
    END;
    END;
    I posted it through metalink and I was told it must be regenerated through designer, and there is no way to do migration.

    Hi,
    actually you would upgrade the application sources from Forms 6i to Forms9i and then run teh Forms Migration Assistant for the clean up /this at least is my understanding after asking one of our Designer Product Managers).
    Frank

  • What's a good book for getting started?

    I've been doing web design in HTML and ColdFusion for almost 3 years. It's clear that ColdFusion is on it's way out and I need to learn J2EE/Java/JSP etc. I have a few questions:
    Java is a term I've heard associated with C++ and other types of programming as well as Web design. Are the Java/C++ Java and the Web Java basically the same type of language? Is the Web Java and JavaScript the same thing? I'm very confused!
    What is a good book for getting these types of questions answered and getting started in J2EE/Java/JSP? There are quite a few variations of script languages out there and I want to make sure I learn the right stuff, ie the stuff that employers are going to be needing.
    Thanks!

    Here is a free online version of a good book:
    http://pdf.coreservlets.com/Core-Servlets-and-JSP.pdf
    Print it off or read from the screen. Otherwise, there are several good Java books out there. What I would do is go to the bookstore and thumb through a few books. Depending on what type of book you want (example based or theory) find the books that you think would satisfy your learning style. Write down the names and authors, go home and buy them used online at Amazon for tremendous discounts. This way you can buy several versus just one.

  • Services in JCo RFC not getting started after Changing the client from 001

    Hi SAP Stars,
                               I have recently Installed Quality and Production servers with PI 7.1 on windows 2003, Sqlserver 2005, when I'm doing Post Activities(http://host:port/nwa) in which I try to change the client from 001 to 300(newly created) in  JCo RFC(4 services) and start the service it is throwing error when I again change it to 001 client and start the service it is getting started, Could anyone help me in solving this issue same issue I facing in PI 7.1 Quality and Production
    Thanks In Advance
    Anil Kumar

    Hi Anil,
    All these JCo RFCs are client specific RFCs.
    Please logon your PI NWA
    Choose Configuration Management - Infrastructure- JCo RFC Provider
    Then, Select the RFC
    Under Details -> Choose Repository Configuraton
    Change the client name to 300 (your new client)
    Save
    And repeat the same for all JCo RFC that you want to work for your newly created client.
    Please ensure that you are using SAPJSF user & correct password for all these RFCs.
    Ideally, these rfcs shuould work now if now please restart your PI  (mostly Java alone also do)
    I hope this helps you.
    Regards
    Sekhar
    Edited by: sekhar on Dec 17, 2009 11:39 AM

  • How to Install, Configure and getting started with Hyperion Web Analyzer9

    i have installed both
    Hyperion Reporting and Analysis - System 9 Services Release 9.3.1 Microsoft Windows x86 Installer.
    Hyperion Reporting and Analysis - System 9 UI Services Release 9.3.1 Microsoft Windows x86 Installer
    Now tell me step by step on how to configure and how start Web analyzer
    I dont know how to start server/services. (Any Web server required?)
    Getting started would be more helpful.
    Need help ASAP.
    thanks,
    Ram

    Hi,
    First of all have you installed Shared Services as you will need that as that foundation of the installation.
    You will also need to install other components such as essbase if you intend to use it with web analysis.
    If you have done that, then you will first need a repository to hold Reporting and Analysis information.
    Afte start up the configuration utility and select the Reporting & analysis elements and go through the steps entering
    details such as shared services connection, repository information.
    It should install the components as a service.
    You should really read the installation document :- http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/hs_windows_install.pdf
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Trouble installing Designer Repository under XE

    I have installed Oracle 10g XE on another PC (as a test system), and I have the XE Client on my own laptop. I also have SQL Designer installed, and both can talk to the copy of XE just fine. However, when I try to install the Designer Suite, I've run into a couple of major problems, primarily with the repository.
    I seem to be able to create the repository ok, but when I try to install it, I get the error messages (shown below) when I get to the step called "cksysfol.sql". I let the Repository installation process continue, and no other errors were raised.
    I tried to research this on Oracle's discussion forums, and found very little that addresses anything like this. Several posts suggest that creating a Designer Repository is not possible under XE. Other posts seem to indicate that other people have been successful in installing a Designer repository. I also found references that said I needed to enable "Fine-Grained Access Control" as part of the original database installation process, but I didn't see any place where that was even an option.
    I need to install Designer because I need access to the Entity Relationship Diagram feature for a project I'm working on.
    What do I need to do to get the Repository installed correctly?
    ================================================================================
    Message
    ORA-04063: package body "REPOS_MANAGER.JR_REG_IO" has errors
    Message
    ORA-06508: PL/SQL: could not find program unit being called: "REPOS_MANAGER.JR_REG_IO"
    Message
    ORA-06512: at "REPOS_MANAGER.JR_FOLDER", line 535
    Message
    ORA-06512: at "REPOS_MANAGER.SDD_FOLDERS_I", line 136
    Message
    ORA-04088: error during execution of trigger 'REPOS_MANAGER.SDD_FOLDERS_I'
    Message
    ORA-06512: at line 1270
    Message
    RME-02124: Failed to execute SQL statement:
    DECLARE
    ar_irid number;
    wkarea_irid          number;
    dummy_wrkarea boolean := FALSE;
    folder_irid number;
    folder_ivid number;
    org_irid number;
    org_ivid number;
    max_default_value_types number;
    rtn_id number;
    vat_type number;
    comment varchar2(100);
    ps1_irid number;
    ps1_ivid number;
    l_SUPPORTS_DESIGNER varchar2(1);
    l_SUPPORTS_JDEVEE varchar2(1);
    TYPE t_Value_Type is record
    ( name varchar2(20)
    , datatype varchar2(20)
    , lob_flag varchar2(1)
    , derived_from binary_integer -- index number of source record
    , irid number -- store irid for later use
    Type tt_Value_Type is table of t_Value_Type index by binary_integer;
    init_value_types tt_Value_Type;
    BEGIN
    dbms_output.enable(1000000);
    -- Added for Bug 1326447
    update ck_installed_objects
    set ci_created = 'N'
    where ci_stage='CKSYSFOL';
    -- End addition for Bug 1326447
    select SUPPORTS_JDEVEE
    , SUPPORTS_DESIGNER
    into l_SUPPORTS_JDEVEE
    , l_SUPPORTS_DESIGNER
    from rm$repositories;
    -- Check Global Shared Workarea exists
    dbms_output.put_line('* Checking if Global Shared Wokrarea exists' );
    begin
    select irid
    into wkarea_irid
    from I$sdd_workareas
    where name = 'GLOBAL SHARED WORKAREA';
    exception when no_data_found then
    dummy_wrkarea := TRUE;
    -- Create a dummy workarea to put the SYSTEM FOLDER in
    wkarea_irid := jr_workarea.create_workarea( user,
    'SYSTEM WORKAREA',
    'Temporay WorkArea used to create the SYSTEM FOLDER');
    end;
    -- Set workarea context
    jr_context.set_workarea(wkarea_irid);
    -- Now create a FOLDER called SYSTEM FOLDER
    dbms_output.put_line('* Creating SYSTEM FOLDER');
    -- USBUG 1006132 CREATION OF SYSTEM FOLDER RESULTING IN DANGLINGS RM DATA CAUSING FP TO HANG
    -- USBUG 989215 NEED TO IDENTIFY SYSTEM FOLDER AND ALL ITS CONTENTS BY GUID
    folder_irid := 1773150433009805186156169550188005433;
    folder_ivid := 1773150433009809908522652419833219129;
    insert into SDD_FOLDERS ( IRID
    , IVID
    , DATE_CREATED
    , CREATED_BY
    , OWNING_USER
    , ELEMENT_TYPE_NAME
    , CONTAINER_SUBTYPE
    , REMARK
    , NAME
    , OS_TIMESTAMP
    , ROOT_FLAG
    , SYSTEM_ELEMENT_FLAG )
    values ( folder_irid
    , folder_ivid
    , SYSDATE
    , USER
    , USER
    , 'CEL'
    , 'FOL'
    , 'SYSTEM FOLDER'
    , 'SYSTEM FOLDER'
    , SYSDATE
    , 'Y'
    , 'Y');
    -- USBUG 1006123 NEED TO PREVENT USERS UPDATING CONTENTS OF THE SYSTEM FOLDER
    -- USBUG 1103313 CHANGES TO ALLOW SYSTEM FOLDER TO BE VERSIONED
    -- create the appropiate access rights
    dbms_output.put_line('* Creating access rights for SYSTEM FOLDER');
    insert into sdw_access_rights ( IRID
    , IVID
    , GRANTEE_REFERENCE
    --------------------------------------------------------------------------------

    This is a bit late, but in case you were still interested, I have successfully installed Designer repositories on XE. Just make sure the repository owner has the correct db privileges as well as quota on the repository tablespaces.
    Thanks,
    Dan

  • Getting started in BI Widgets(BO XI R3)

    Hi Friends
    I am new to this Widgets. I read that we have a application called the BI Widgets for BO XI R3. I want to explore more on that and  start using it in our organisation.We have Business Objects XI R3 server installed on the WIndows 2003.
    I very recently installed the BI Widget application but cannot connect to the repository. It throws error "Connecting to URL is not responding".
    Please help me in getting started. Thank you in advance.
    Thanks and Regards,
    Umesh Jadhav

    Hi Umesh,
    IIS isn't supported for web services, only a JAVA app server is.
    It is possible to host the web services on the WACS server but this isn't officially supported at present.
    See this document:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70f9e973-4d8d-2b10-27bf-d48189bb10da
    Regards
    James

  • Could not start Layout Designer (see long text)

    Dear All,
    Could not start Layout Designer (see long text)
    Message no. FPUIFB086
    Diagnosis
    The forms design tool for developing the form layout could not be started; either it is not installed or there are errors in the installation.
    Procedure
    Make sure that you have the forms design tool installed on your desktop (the tool is part of the SAPGUI installation).
    Refer also to SAP Note 1121176.
    Note : I have already checked forums and also the long text file , i have installed SAP gui 720 with latest patch  even though , we are getting the same error . or i have to installed ADOBE LIFE CYCLE DESIGNER to user PC ?
    Note :
    One of the forum is mentioned ,we can also download and install the newest SAP GUI (what is 7.2 i believe) which has LCD as a part of installation.
    but still i am getting error .
    SAP gui Details :
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon for Windows
       720 Final Release
       7200.3.9.1071
       1286983
    SYSTEM INFORMATION:
       Operating system: Microsoft Windows XP 5.1 (2600)
                         Service Pack 3
    Kindly advise.

    Please let me know the path and it  can be used permanent ?  or it will ne expired ?
    Thanks
    Edited by: satheesh0812 on Nov 29, 2011 12:17 PM

Maybe you are looking for