= Help PLEASE ! (Designer repository migration 6i)

Hi everybody,
(Oracle Designer 2000 repository migration from 6 to 6i)
I'd like to know where can I find the script 'migrate_repos_privs.sql'. The propose of this script is to migrato users from the old repository version to 6i.
I start with repository version 6 and I try to execute this script. The source of this script try to call 'jr_sys_privs.ins' package internally but it doesn't exist in old repository. The result obviously is an error 'pl/sql called not found'.
This is the fouth step (4/5) in the tutorial instructions. Next I'm going to push the 'migrate repository' button in the tool to complete the migrate process.
Thanks. (Please, send me copy of your answers to: [email protected] )
Best regards:
Richard.

Hi,
The MIGRATE_REPOS_USERS.SQL script is generated when you run the the CKGENUSR.SQL script (step 12.1 of the insallation guide). In the box at the beginning of '12:Migration of subordinate users'it describes how when you run CKGENUSR.SQL it generates the MIGRATE_REPOS_USERS.SQL to your working directory.
check your working directory after running CKGENUSR.SQL you should find the script there.
Rgds
Susan Duncan
Oracle Designer Product Management

Similar Messages

  • Designer Repository Migration: 9i to 10g

    Hi All,
    We need to migrate designer repository from oracle 9i to oracle 10g.
    Please give us the steps to do it.
    Thanks in advance.
    Regards,
    Ateet

    Please follow :
    http://www.oracle.com/technology/products/designer/supporting_doc/des10g_9046/cmnhlp72/rep_insgde/igrepos_904.htm#UpgradingAnExistingRepository
    http://www.oracle.com/technology/products/designer/documentation.html
    Regards
    Rajesh

  • Help to design repository using BerkeleyDB

    Hi,
    I am trying to design a repository using BerkeleyDB but not sure what will be the best design.
    Here is the scenario:
    I have one Schema under which we can multiple classes of Java Objects to be stored.
    Eg: Under Schema1, we can store any of the objects from three classes A, B, C.
    Alll have the same schema.
    I want to persist all the objects of any of the class A, B, C coming in the system.
    Key is the time at which they enter the system.
    So key is time and value is Instance of any of the object A, B,C.
    So we can have duplicates i.e. multiple instances coming at the same time.
    A,B,C are POJO Java Objects so I don't have control over their implementation.
    From my understanding
    Schema should map to the Environment.
    Within one Environment, we can have different databases for each A, B, C since they have different class definitions.
    What should I use DPL or Base APIs?
    If using Base API's how to write MyTupleBinding because the definition of the class can be available after system gets configured.
    Is there any way to write a generic TupleBinding class which can convert any Java Object to an Entry and vice versa.
    If using DPL how to define Entity, Persitent Entities etc.
    User can query on any column of a POJO object so we have no information about secondary keys.
    Please provide me your suggestions.

    Hi,
    Key is the time at which they enter the system.So key is time and value is Instance of any of the object A, B,C.
    So we can have duplicates i.e. multiple instances coming at the same time.>
    Instead of using the time only as the key, use a two part key {time, sequence} to make the key unique. That will give you a unique primary key and also allow you to lookup records by time using the first part of the key.
    A,B,C are POJO Java Objects so I don't have control over their implementation.Can you add annotations to these classes? Are they Serializable?
    From my understandingSchema should map to the Environment.
    Within one Environment, we can have different databases for each A, B, C since they have different class definitions.>
    Yes.
    What should I use DPL or Base APIs?If you can add annotations to the classes, use the DPL. If not, and the classes are Serializable, you could use SerialBinding. Otherwise, you'll have to write tuple bindings.
    If using Base API's how to write MyTupleBinding because the definition of the class can be available after system gets configured.Is there any way to write a generic TupleBinding class which can convert any Java Object to an Entry and vice versa.>
    The only way to do that is use Java reflection to discover the fields in the classes. This is a lot of work, but is how such things are done in Java.
    If using DPL how to define Entity, Persitent Entities etc.If you can't add annotations, you could write a custom subclass of EntityModel. But that's an advanced use case, and it won't work if there is no unique primary key field in each class.
    User can query on any column of a POJO object so we have no information about secondary keys.You can do one of the following:
    1) Define no secondary keys and iterate over all records in a database when doing a query (queries are expensive if there are lots of records).
    2) Define every field as a secondary key (writes are expensive and lots of disk space is used if there are lots of fields).
    3) Try to dynamically determine when queries are frequently done on a field, and dynamically add a secondary key at that time (lots of work to implement).
    Please provide me your suggestions.Please answer my questions above and then I'll suggest an approach. If the POJO classes are required to be Seriallizable, your task will be greatly simplified.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Need some Help in Design please...

    Hi All,
    I am creating dimensions for my sales cube in which I am going to store Day level data with Customer and Material Data. I have to store all the Customer and Material Groups (1-5) in the cube as most of the reports are based on them. I have planned to created 2 seperate dimensions for Customer and Material and include all the Group fields as well in the respective dimensions. But, as Customer and Material master data itself are gonna be big, I am bit confused if it creates a performance issue if I include the groups in the same dimension. I remember that there is a rule like Dimension table should be < x% of cube (I didnot remember the exact figure)...Any suggestions on this design please...
    I am in the process of creating process chain for my FI-GL and FI-AR flows. I am loading both line item and transaction level data for both of them. I am confused if I can include both the flows in the same chain or seperate ones? What is the sequence in loading the data i.e First Transaction or line item? First GL or AR? Any such dependencies?..Any help please...
    Best Regards,
    James.

    Hi,
    Generally, if we need to take Characterstics like Document no as part of the cube then we define them as line item dimensions, becuase we can easily predict that the no of entries in  those dimensions are almost equal to fact table entries. So ask your business process team to tell about no of new entries created for Material and customers.On that basis you can decide whether it should be a Line item Dimension or not. It is juat a hypothetical assumption.
    For further info on how to decide which dimension is line item dimension, search the forum.
    And comming to chain:
    You can go with that design.
    With rgds,
    Anil Kumar Sharma .P

  • Troubleshooting: Help please. Creating a PDF file from a Photoshop-designed project

    I wanted to add personal design elements to my resume so I decided to use Photoshop to add in a logo and a footer. The problem is, when I converted the 3 Photoshop .psd files (3 pages) to .pdf files, the combined file came out to be very big in size. The biggest was 2.88 MB and the smallest that I got it to be without compromising the quality of the text and images was 1.48 MB.
    What did I do wrong?
    I've seen other .pdf files with more images and more color and definitely more pages and text which were only 300KB in size. How can I make my final .pdf file size small but still retain the quality of the original design from Photoshop?
    I've tried merging the layers before saving. I've tried turning the files into .gif files before making the pdf. Into jpegs before making the pdf. Changing the canvas and image sizes in Photoshop into super small which made the final pdf file unreadable and super blurry. I'm at my wit's end.
    Details:
    .psd image size 8.5 by 11 inches (normal resume size)
    colors - black, gray, light blue and light yellow
    Images are very minimal, 4 lines total and around 5 circles at the header of the first page and footer of the 3rd page.
    Help please!
    X-cross-post: Acrobat Forum-X

    This is so sad. I read your comments and I said, "Huh?" Haha!
    I tried the indexed color option and it did make the final file smaller. Around 600KB. But there's probably another way to make it even smaller like the gazillion-paged pdf file that I mentioned that was only about 300KB.
    And by saying a layout program, does that mean like Adobe InDesign? Does that mean that I should just make my graphics in Photoshop and then import using another program and finish the file there?
    What other layout programs can I use?
    Thank you so much!

  • Migrating Designer Repository 6i to Repository 10g

    My client has an Oracle Designer repository 6i Version 6.5.92.1.9 Release 4.7.(Repository 9i).
    He has created an Oracle Designer repository 10g (latest version) onto another server.
    He wants to migrate his Repository 6i into his new repository 10g.
    Is it possible to do this, if not could you tell me more.
    Thanks

    He ought to be able to use the Export in the Repository Administration Utility (RAU) in 6i to export the repository and Import in the RAU in 10g to import it. Two caveats:
    1. Don't try to go from a versioned repository to a non-versioned one. I think the other way around works, but I don't have mine versioned, so I don't know for sure.
    2. Make absolutely sure that you are using the right EXP for the database version in which the 6i repository is stored and the right IMP for the database version in which the 10g repository is stored. Check the EXECUTE_EXP and EXECUTE_IMP registry settings on each. I've seen a lot of problems that could be avoided by using the right export and import.

  • Issues with a email server migration - URGENT HELP PLEASE

    Hi,
    My online company uses TB and we recently changed our email server provider to resolve a serious problem we were having with the previous one. Both servers (old and new) are IMAP.
    The problem is that since we have made this server migration we are having a lot of strange things happening on TB such as:
    1. When I mark a email read I can no longer mark it as unread. I've tried to click on the little ball, to select 'Mark as unread' by clicking on the right side of the mouse, etc and nothing!
    2. When I reply and forward an email the reply and forward arrow is not showing up so sometimes we don't know what emails have been done
    3. Sometimes the emails are sent and don't show up in the sent folder. So we need to put our own email in BCC to be sure that they have been answered.
    The guy who organised the server migration suggested us to move to outlook, but outlook is not resolving the problem either. On top of that it makes our computers as slow as snails. I'm on a free trial with outlook that will expire in two days and I want to go back to TB as I find it much easier and straight forward.
    Has anyone have a similar issue? Can someone HELP please?
    Many thanks in advance.

    item 2 see screenshots
    No clue on other issues Just remember that your old e-mails are not on your new server.

  • Migration of Designer Repository Owner from 7.3.4 to 8.1.7

    My goal is database import from Oracle 7.3.4(Windows NT 4.0) to Oracle 8.1.7( Linux 7.1).
    But, I have problem with importing Objects of Designer Repository Owner( no matter whether Designer 2.1 or Designer6.0).I gave Designer Repository Owner all necessary privileges an roles,but import just hangs! I can't find in log some exact information.
    Thanks in advance!

    I do that-full export,then full import.Then I found out that Designer Owner makes problem.
    I tried to import only Designer Owner, but it didn't work again!

  • Help!!! Designer/Repository 6i install fails on Win with 8i

    I get the following error when trying to install
    Designer/Repository on Windows 2000 with 8i enterprise (8.1.7):
    Orainst.exe has generated errors and will be closed by windows.
    You will need to restart the program. An error log is being
    created. Where do I find the error log? Is it oraninst.log?
    There is no error in that file. What do I do?

    I have the same problem. It is sad that no one got back to you
    I get the following error when trying to install >Designer/Repository on Windows 2000 with 8i enterprise (8.1.7):
    Orainst.exe has generated errors and will be closed by windows.
    You will need to restart the program. An error log is being
    created. Where do I find the error log? Is it oraninst.log?
    There is no error in that file. What do I do?

  • Please help in designing...

    Hey Folks,
    A new bee to Flex...Want to design and develop a flexible GUI in flex..Can any one help in designing the GUI?
    Requirements
    Database
    I have four tables namely TableId, ColumnName, ColumnValue, PartyColumnValue
    TableId
    tableId int
    tableName  varchar
    eg :-
    10
    Test
    ColumnName
    columnId int
    tableId int
    columnName Varchar
    eg:-
    1001
    10
    Col1
    ColumnValue
    valueId int
    columnId int
    tableId int
    valueName Varchar
    eg:-
    100101
    1001
    10
    val1
    PartyColumnValue
    id int
    valueId int
    columnId int
    tableId int
    In the above manner I am storing the table names, column Names and column values
    Flex Requirement(GUI)
    On GUI there will be one combobox in which user has the option of selecting the table name
    Once table is selected
    1. Dynamic Table(DATAGRID in flex) should be displayed on GUI in which the columns will be the column name from the ColumnTable and each row should be the combobox in which the values will be multiple pertaining to the ColumnId and tableId.
    2. Each row should be having the option to "save" individual row means the last column will be save button, it will get persisted in the PartyColumnValue table.
    3. There should be option to save all the rows means "Save All" button to save all the rows it will get persisted in the PartyColumnValue table.
    4. Once i saved the invidual row or all rows and then again if user selects the table from the combobox he should be able to see the persisited values.
    5. There should be one "Add Column" button which will add the column by opening the popup and asking for the default values.
    Can anyone help me in acheving this functionality?
    Thanks In Advance!!!

    Can anyone help without money?

  • 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

  • Validate Repository Migration

    Are there any papers, etc. that would provide some guidelines for the
    validation of a migration from R6.0 to R6.5?
    Thanks

    Hi Joseph,
    I strongly recommend you read the Designer 6i Migration Guide,
    available here on OTN from the Designer Documentation page.
    The Designer online help also has some useful topics and if you
    have a Support agreement, Support should also be able to provide
    you with some helpful information.
    Please take backups of your existing repository and also create
    a separate test environment to test the migration first. The design
    of the 6i repository is very different from the 6.0 version and the
    Migration process will clean up your existing 6.0 repository first,
    so it's important you iron out any problems first.
    Regards,
    Dominic Battiston
    Designer Product Management
    Oracle Corp

  • Help please deploying Crystal Decisions 10 to Microsoft 2008 R2 IIS 7

    Folks, I need your help please. We've been using Crystal Decisions 10 with MS Server 2003. We're migrating to a VM envirionment with MS Server 2008 R2. I have everything working except for our crystal reports. We are a mostly an ASP Classic enviroment.
    When the report is called it opens, the SP query does not fail but the data does not show in the activex viewer. If there is a tree view associated with the report, you can see the expandable data points on the left but the report does not actually appear. No errors are apparent either.
    This thing is killing my production. Any help would be greatly appreaciated!

    Hi Jack
    I moved your post to the SAP Crystal Reports - Legacy SDKs SCN Space.
    I really doubt that you will ever get this working. As Sastry mentioned, CR 10 did not support MS Server 2008 R2. The only version of CR (using classic ASP) to support anything close (WIN 7) was CR XI R2 (v. 11.5.x), Service Pack 6. See the following wiki for more details:
    Crystal Reports v. 9.1 to SAP Crystal Reports, developer version for Microsoft Visual Studio Runtime Distribution and S…
    For CR XI R2 SP 6 and WIN 7 I wrote a small blog - essentially collating info reported by customers on how to get ASP working - on WIN 7 (sometimes this works, other times...). See:
    Report Designer Component (RDC) in classic ASP applications on Win 2008 Server and Win 7 - Possible Solutions
    Please note that both CR 10.x and 11.5.x are out of support (have been for years). My recommendation, understanding that porting the app to more recent versions of CR and either the .NET or Java SDK is not possible:
    Update to CR XI R2 and keep your fingers crossed. Your chances of getting this to work CR 10 are pretty well zero. Your chance of getting this to work with CR XI R2 SP 6 are better, but still approaching zero. You may be able to obtain CR XI R2 by calling sales (866-681-3435) or check the Worldwide Office Locations | SAP.
    Last note. If you do manage to get CR XI R2, please so keep in mind that:
    1) CR XI R2 is no longer supported.
    2) You will be using CR XI R2 in an unsupported environment (Server 2008).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • One schema for OWB Design repository, runtime repository and target schema

    Currently we have contents of OWB Design schema, runtime schema and target schema all combined into one schema of the same database in OWB 9.0.2 as well as OWB3i. We like to move to OWB10g in very near future. Can we keep the same structure for convenience of migration in OWB10g? Is it mandatory that OWB design repository (and components) must be separate from OWB run time repository (and components) and target schema? In other words is it possible and workable to use only one schema to contain OWB design repository, OWB run time repository and target schema in OWB10g environment with repositories to be situated on Oracle v9.2.0.1.0? Also what special considerations should be taken to create the database v9.2.0.1.0 and installation of OWB10g. What are the problems/side-effects to have all in one schema?
    Also please let me know how to install Oracle Workflow server to be used along with OWB. Will OWB10g work with repository on Oracle database v9.2.0.1.0?
    Your prompt advice will be very well appreciated.
    Sankar

    The design repo is a metadata repo that stores all the design-time objects and so forth.
    It is an architectural decision that you or your team need to decide on. There are many flexible ways to architect an OWB infrastructure.
    Also, your repository users will be using the design repository on the the other DB instance to do their design work...potentially less people always hitting the target database all the time.
    -Greg

  • Headstart Designer 10g Migration Guide?

    Is there a Headstart Designer 10g Migration Guide?
    We are migrating our forms application generated from Designer2K 2.1, Forms 5, Headstart 212 with repository in database Oracle 8 to the latest releases Designer 10g (10.1.2.0.2), Forms 10g (10.1.2.0.2) with repository in Database 10g R2 (10.2.0.2).
    If we follow the migration path for designer and the repository database to 6i then to 10g, recompile the object library and form templates, regenrerate our modules, then will it still work? Do we need to do anything to the Headstart Designer Template Package? Hope you can help with a road map.

    Hi Nathan,
    there are several possibilities for a migration path. It depends on the expected life-span of the application(s), wether or not you want to use new Headstart functionality, etc.
    A description of these possibilities can be found in the migration guide which is included in the Headstart 9i/10g documentation. Do you have the latest version of Headstart available?
    Because you currently use an older version of Headstart, a migration will take a bit more work than described in this documentation because Headstart code has changed. So you will have to replace Headstart function calls or create a wrapper library.
    Further, regeneration of (the more complex) Forms is not that simple as you will probably have to modify the lay-out. If you use client-side functionality (open MS Word/Excel, write to the local file system, etc), you will have to use Oracle's Webutil-package.
    So it can be done. But it will take some planning and programming. Succes.
    p.s. if you (temporarily) publish your e-mail address, i can provide you with some additional info.

Maybe you are looking for