Migrating Oracle 6i Graphics to Oracle 10.1.2.3

I have not been able to get a 6i graphic to display using run_Report_object. I turned it in as a trouble call and he suggested I post a question to the Forum, about using JAVA/BEAN to display the graphics/charts.
I know little to nothing of JAVA/BEAN is there anyone willling to share the knowlege and example code.

Hi,
This forum is mainly for migrating from Oracle to non-Oracle databases and I doubt any participants know about the subject you are asking.
run_Report_object looks to be part of Forms or Reports so it would be better to ask in one of those forums -
Forms - Forms
Reports - Reports
If what you are doing is part of some other product then please let us know exactly what you are using and we may be able to direct you to the correct forum.
Regards,
Mike

Similar Messages

  • Oracle reports 6i to Oracle forms 10g migration

    Hi,
    I have .rdf files which were created on Oracle Reports 6i. I would like to migrate the .rdf files into Oracle Reports module which is present as a part of Oracle Forms 10g to generate PDF output.
    Please let me know the detailed steps to be followed as I am a total newbie. Also I need to generate these reports on demand from a java 5 application (JSF 2.0).
    Currently for ORacle reports 6i, I have the following code in my java application
    rwrun60.exe g:\tomcat33\webapps\reports\web-inf\src\null userid=***/*** destype=FILE desformat="pdf" paramform=NO printjob=NO batch=YES desname=temp.pdf
    1. What would be the equivalent for reports in ORacle Forms 10g ? I know there is an Oracle Apps server where ther report services reside. How to I invoke my report from my java application (residing on a weblogic server 10.3.6)?
    2. What ould I do with the 6i .rdf files to upgrade them to 10g ?

    I am trying to call an Oracle report i.e .rdf (which is located on the Oracle  App Server) from my java EE 5 (JSF) application. The Oracle  App server is Oracle Application Server 10g Release 2. I assume Oracle report generation capability is available in this release.  I need to invoke the report from my Java JSF application on demand (whenever the user clicks a button on the web browser page, the report should appear on the browser as PDF) . My java application resides on Linux weblogic server.
    Please let me know how it can be done ? I see rwclient.sh and another method to directly invoke using a URL. How do I do it on java, would a request.redirect() to the URL work ?
    Also for hiding the params in the URL. keys need to be configured on the Oracle server right ?
    Also if we use rwclient.sh or the URL based invocation, would there be any issue in concurrency when multiple users request the same report at the same time ?

  • Getting parsing SP error while migrating SQL Sever 7 to Oracle 8.1.7

    Hello,
    I migrate SQL Sever 7 database to Oracle 8.1.7 using latest
    Migration Workbench + sqlsever7 plugin.
    I captured the source database and created Oracle model but some
    of straight forward enough stored procuderes didn't pass. I try
    manually correct them but still receive the following error
    message:' java.lang.StringIndexOutOfBoundsException:string index
    out of range:0 ViewLog Window' I check log - not much help
    I check all names - non of the exceeds 30 char.
    Although, I'm not sure of following code:
    @sqlstr='select....'
    @sqlstr=@sqlstr+'select...'
    exec @sqlstr
    Could it be a cause?
    Thanks in advance
    Marina

    You can user Oracle Migration Workbench to migrate from SQL Server to Oracle.
    Here is the link which gives info on software usage and download :
    http://otn.oracle.com/tech/migration/workbench/content.html
    Chandar

  • Data Migration from Microsoft Access to Oracle 9i

    Dear All
    This is my first request in your forum,My problem is that I have installed SQL developer but unable to migrate my MDB (Microsoft access file) into Oracle 9i,I have done the following activities in order to migrate data.
    open sql developer
    under migration,click quick migration
    quick migration wizard diaglog box appear,click new,
    in the oracle tab, input the following information
    input connection name 'zuhair',give user name and password (sys/s),check save password option,give role "sysdba" ,give connection type "basic",didnt check any any check box like os authorization and others,give host name 'zkhan-dfml',port '1521',sid 'dba' and then push the test button and then status show "success"
    in the access tab, input the following information
    input connection name ,input mdb file name by using browse button,after this step click test button then the following message display 'test fail odbc microsoft access driver not a valid password
    I have tried to create odbc link but i think i have done some thing wrong,kindly help
    Regards
    Zuhair

    Hi Zuhair,
    If you give details of the problems you are still having then we should be able to get SQL*Developer to work.
    However, if you don't want to use SQL*Developer then the following options are taken from note 393760.1 available in Metalink if you have access to that -
    1. Use a gateway that supports the non-Oracle database or generic connectivity if a third party ODBC driver is available to do a -
    'create Oracle_table as select from non_oracle_table@database_link'
    for each table. You would then have to manually create all the other objects (views, indexes, stored procedurs etc) and permissions etc that existed in the non-Oracle database.
    2. Use the SQL*Plus COPY command to copy data from the non-Oracle database to the
    Oracle database using a gateway or generic connectivity. The syntax is as follows:
    COPY FROM username/password@oracle_sid -
    INSERT destination_oracle_table -
    USING query;
    The following example selects all rows from the EMP table in the non-Oracle database and
    inserts them into the local Oracle EMP table:
    COPY FROM SCOTT/TIGER@ora10 -
    INSERT EMP -
    USING SELECT * FROM SCOTT.EMP@gateway;
    where "gateway" is the database link created for the gateway.
    3. Load the non-Oracle data into flat files and use SQL*Loader to put the data into Oracle tables. Again manual
    work is required for the other objects.
    4. Contact the Oracle Product Technology Services (PTS) group for assistance. See the webpage -
    http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html
    5. Use a third party migration tool. See -
    http://www.oracle.com/technology/tech/migration/isv/third_party.html
    6. Use JDBC to connect to the non-Oracle database and Java in the Oracle database. This method will work but it is not suppported by the JDBC team.
    =========
    The amount of work involved will depend on the number and size of Access tables that you want to migrate.
    Regards,
    Mike

  • PL/SQL migration from Oracle 7.3 to Oracle 8.1.6

    Hi,
    I am planning to upgrade from Oracle 7.3 to Oracle 8.1.6. As well from HP-UX 10.20 to HP-UX 11.0.
    I do not want to run my PL/SQL code in compatibility mode.
    Please suggest migration path.
    Also, i want to migrate PL/SQL scripts from 8.0.5 to 8.1.6 on HP-UX 11.0. I know this should be
    straight forward migration.
    Does the recompilation on HP-UX 11.0 with 8.1.6 environment works fine..?!
    I read about the 'utlrp.sql' script to be run to find out the report prior to recompilation on target
    platform. If i do this, it should enough OR is there any other ways of doing things..?!
    Please post your feedback.
    Thanks,
    vinod

    Hi,
    I have never done the migration from 7.3 to 9i. But I had done 8.0 to 8i and 8i to 9i.
    Pl/SQL code should work fine as it is. I wonder what will happen if you have any variables declared VARCHAR (not VARCHAR2) ? There can be few places like that, if the application was originally written on Oracle 6.Otherwise, the code should work as it is.
    Regarding Pro*C, you need to use the new make file which has come with 9i.
    Also, I do not remember exactly, but probably, you need to initialize all VARCHAR veriables declared between BEGIN DECLARE SECTION and END DECLARE SECTION. Initialize all of them with \0 (NULL charactor).
    I think that should be enough for 7.x application to run on 9i.
    Regards

  • Problems while migrating from mySql DB to oracle DB

    Hi All,
    I'm using sql developer tool to migrate from MySql DB to oracle DB. I followed the below steps.
    1) I've created oracle and mysql connections successfully.
    2) I've captured Mysql data and I'm able to see the captured model in ' Captured Models ' window. After that right clicked on the captured model and selected ' Set Data Mapping'. Selected ' apply ' button without changing anything. After that I've right clicked on the captured model and selected ' Convert to Oracle Model ' . It has shown the converting process. After some time it has shown conversion completed successfully.
    But converted model is not visible in ' Converted Models ' window.
    Can anyone kindly assist on how to migrate from MySql Db to Oracle DB?
    Thanks,
    Saty.

    Hi,
    We did mysql to oracle migration some time back and played with workbench tool and many other softwares available.
    However our experience was not so good with these tools, each tool had its own limitation and was not able to migrate 100% data. Even the speed of migration was too slow which would have violated our production SLAs.
    So after spending a month with these tools we finally decided to create our own scripts for data migration. We used tools like TOAD and SQL Yok to create the DDL for the tables and other DB objects.
    For the data migration we downloaded the mysql data in flat files and used sql loader to upload the same data in oracle. Even if this was a time consuming activity but this resulted in 100% data migration with no record getting failed and the time taken for this activity was around 6 Hrs in comparison to time of 24-28 Hrs that the workbench tool took.
    Amar

  • Lotus notes (ibm) to migrate all the data to Oracle DB Database 10g R2(10.2

    Hi Experts,
    we have legacy application which is running independently with back end as Lotus Notes(IBM).Now we wanted to migrate the application to our application with data . our application is running with oracle Database 10g R2(10.2.0.2.0).
    Now I wanted to migrate all the data to Oracle DB.
    Can you suggest me the best ways to do handle the above migrations .
    thanks in advance

    Hi,
    Install all the required packages.
    You are hitting a bug. Bug 7680459: LIBXP PACKAGE IS MISSING FROM LIST OF PACKAGES REQUIRED.
    As per documentation Bug 7680459, the package libXp-1.0.0-8 is also required to invoke OUI successfully.
    So, make sure that you have installed these packages including the dependency packages required.
    Follow Doc ID 419646.1: Requirements For Installing Oracle 10gR2 On RHEL/OEL 5 (x86)
    Regards,
    Satish

  • How to migrate a report .SQR to Oracle repots, I have the file .SQR

    I have a problem, I need migrate a report .SQR to Oracle Reports, So, I don't know .SQR. one idea for this

    Is that a Hyperion sqr file? I doubt there are migration tools, so you will need to rebuild the report in Oracle Reports.

  • How to migrate a report .SQR to Oracle repots

    I have a problem, I need migrate a report .SQR to Oracle Reports, So, I don't know .SQR. one idea for this

    Hello,
    I don't know SQR, but Google said that it is either a Hyperion or Peoplesoft product.
    This forum is dedicated for migrations from non-Oracle databases to Oracle, using the SQL Developer Migration Workbench. So you should better place your question in the Oracle Reports forum: Reports
    Best regards
    Wolfgang

  • Migrate data from orcle to oracle

    Hi ,
    A) Using oracle workbench tool can we migrate data from oracle 9i to oracle 10g ?
    B) Is this tool used only for migrating data from non-oracle source to Oracle db ?
    regards
    thiru

    Dear Barry
    Thanks for the valuable information provided, it had answered few of my doubts.
    i am much thankful to you if you can help me in this regards.
    Does Oracle own any GUI based tool similar to Microsoft-DTS to Extract & transform data from one Oracle DB to other Oracle DB ?
    The source DB (oracle 9i) is not properly normalized , the data from source is moved to a Normalized 10g DB with new attributes(based on new requirements) added to these tables . Some tables from source are splitted into 2 or more in target (oracle 10g) database. I have scenarios like
    My text below quotes "SOURCE" AS UNNORMALIZED DB & "TARGET" as new DB which is NORMALIZED.I need to migrate data from SOURCE to TARGET
    1) A single row in SOURCE be migrated to multiple rows across one or more
    tables in TARGET.
    2) A multiple rows in single column in SOURCE be migrated to single row and
    multiple columns in TARGET.
    For the above mentioned scenario sql*loader /external table/export & import or transportable tablespaces can be used as mentioned by you. but considering the ease of use and the complexity is there any GUI tool which oracle has for data migration from oracle db to oracle db.
    your advice will be much help to me.
    Thanks
    Thirumaran

  • Rconfig fails for migrate single ASM instance to Oracle RAC 11.2.0.3

    We completed the following steps thus far to migrate single instance with ASM 11.2.0.3 on Oracle Linux to RAC:
    1. Install RAC CRS 11.2.0.3 in GRID_HOME
    2. Install RAC database 11.2.0.3 software in new ORACLE_HOME
    3. Added ASM diskgroups to two node ASM instances
    4. run rconfig from target RAC ORACLE_HOME
    It fails on:
    [RACConvertStep.execute:193] STEP Result=Oracle home is not a cluster database home. Make sure that oracle binary is linked with RAC option and the Oracle home entry in Oracle inventory is updated with cluster node list.
    From rconfig:
    $ rconfig convert.xml
    <?xml version="1.0" ?>
    <RConfig version="1.1" >
    <ConvertToRAC>
    <Convert>
    <Response>
    <Result code="1" >
    Operation Failed
    </Result>
    <ErrorDetails>
    Oracle home is not a cluster database home. Make sure that oracle binary is linked with RAC option and the Oracle home entry in Oracle inventory is updated with cluster node list.
    </ErrorDetails>
    </Response>
    </Convert>
    </ConvertToRAC></RConfig>
    5. the orainventory inventory xml file has:
    6. We have this:
    Source database
    ORACLE_BASE=/oracle
    ORACLE_HOME=/oracle/db/112
    3- target database configuration
    ORACLE_BASE=/oracle/db
    ORACLE_HOME=/oracle/db/11.2.0.3
    4- RAC GRID_HOME
    ORACLE_BASE=/oracle
    GRID_HOME=/oracle/11.2.0/grid
    Has anyone seen this issue before with migrating with rconfig and if so, how did you resolve it?

    good to know. thanks for updating the thread with what was wrong, this will help the community if someone faces this issue.

  • Problem when migrate Informix 9.4 to Oracle 10.2 by use OMWB 10.1.0.4

    Hi,
    When I use OMWB to migrate Informix 9.4 to Oracle 10.2, I encounter many errors as follows:
    ===========================================================
    java.sql.SQLException: ORA-12899: value too large for column "ROGER"."ABB_FILE"."ABB04" (actual : 32, maximum: 30)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:305)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:626)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:182)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:630)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1081)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2905)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:2996)
         at oracle.mtg.migrationServer.LoadTableData._migrateTableData(LoadTableData.java:1473)
         at oracle.mtg.migrationServer.LoadTableData.run(LoadTableData.java:326)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    ==========================================================
    But when I check the Source column length, it is not long then column length in Oracle actually. I don't know why....
    Does anybody have idea? Thanks!

    Hi Donald,
    Thanks for your reply.
    "ROGER"."ABB_FILE"."ABB04" means in user "ROGER" schema, have a table "ABB04", and have a column named "ABB04".
    So the column's name is "ABB04", not exceed 30 characters.
    The table's description in Informix as follows:
    create table "roger".abb_file
    abb00 char(2),
    abb01 char(12),
    abb02 smallint,
    abb03 char(24),
    abb04 char(30),
    abb05 char(6),
    abb06 char(1),
    abb07 decimal(16,3) not null ,
    abb08 char(10),
    abb11 char(15),
    abb12 char(15),
    abb13 char(15),
    abb14 char(15),
    abb15 char(4)
    And the table in Oracle's description:
    CREATE TABLE "ROGER"."ABB_FILE"
         "ABB00" VARCHAR2(2),
         "ABB01" VARCHAR2(12),
         "ABB02" NUMBER(5),
         "ABB03" VARCHAR2(24),
         "ABB04" VARCHAR2(30),
         "ABB05" VARCHAR2(6),
         "ABB06" VARCHAR2(1),
         "ABB07" NUMBER(16, 3) NOT NULL,
         "ABB08" VARCHAR2(10),
         "ABB11" VARCHAR2(15),
         "ABB12" VARCHAR2(15),
         "ABB13" VARCHAR2(15),
         "ABB14" VARCHAR2(15),
         "ABB15" VARCHAR2(4)
    )

  • Migrate Oracle 9i Database to Oracle 10g Solaris Platform

    Hi DBAs,
    Thank you very much all of you, you helped me in RMAN Duplicate Database, There was a problem in my backupset and now it has been resolved.
    I have now following task.
    I want to migrate Oracle 9i Database to Oracle 10g ASM, both are on Solaris platform. Please provide me step by step solution. I have very big Database about 250G Database.

    In the "Complete checklist for manual upgrades to 10gR2" is written:
    PREREQUISITES
    =============
    + Install Oracle 10g Release 2 in a new Oracle Home.
    + Install the latest available patchset from Metalink.
    + Install the latest available Critical Patch Update.
    ... so "Install the latest available Critical Patch Update" step is that for the Oracle 10g database Oracle Home or Oracle 9i database Oracle Home ? I think that is for the 10g database/ Oracle Home ...
    after applying the CPU pacht there is some "Post Installation Instructions":
    3.3.5 Post Installation Instructions which demande a connection to the database:
    3. For each database instance running out of the ORACLE_HOME being patched, connect to the database using SQL*Plus as SYSDBA and run catcpu.sql as follows:
    cd %ORACLE_HOME%\CPU\CPUJan2007
    sqlplus /nolog SQL> CONNECT / AS SYSDBA
    SQL> STARTUP
    SQL> @catcpu.sql
    SQL> QUIT
    My question is ... If I want to upgrade a 9i database to 10g and I apply this CPU before the upgrade is done (to 10g Oracle Home), how could I connect to an instance which is not present to run this script ? ... is this step mandatory or is optional ?
    Thanks,
    P.

  • Oracle SQL Developer vs Oracle SQL Developer Migration Workbench

    Gurus,
    Can anybody let me know what's the difference between Oracle SQL Developer vs Oracle SQL Developer Migration Workbench tools.
    I am in the process of Migrating MS-Access Application to APEX. So the example says me to use Oracle SQL Developer Migration Workbench. Is this part of Oracle SQL Developer? If yes, I know SQL Developer is free.
    If not is Oracle SQL Developer Migration Workbench if free?
    Thanks and Regards

    Thank Oracle ;)
    (well, it's the least they can do after you paid big $$$ for the database)
    Regards,
    K.

  • Weird tables are added in the db after migrating an Access db to Oracle 0816

    Hi,
    The migration workbench has been giving me headache recently. I
    was trying to migrate a small Access 97 db to Oracle081600. It
    used to work fine. But one day, it began to give me problems.
    Each time after I migrated an Access97 db to Oracle, the
    database in Oracle included lots of tables which I don't know
    where they come from (such as ACC_COLUMN,
    ACC_DATABASE,...MTG_COL_DEP_CHG...OM_ALL_INDEXES_INFO...SS7_SYSCO
    LUMNS...etc). And I just could not find the tables that I wanted
    in the migrated oracle db. Is there anyone who knows what's
    wrong? I really need someone's help on this problem.
    The oracle I installed is Oracle0816, running on Windows2000.
    Thank you.
    Li yang

    I am having the same problem. I had never used the tool before
    so i thought it was normal. If you have figured it out let me
    know. my boss wants to know if we can use this tool or should
    pursue other ways of migrating.
    amie

Maybe you are looking for

  • I have serveral duplicates, how can i delete them?

    What am i doing wrong, every time i connect my ipod i end up with serveral duplicates in my library...How can i get rid of them without deleting one at a time?

  • Trying to install Windows 7 on my mac pro

    Trying to install Windows 7 on my mac pro.  I'm running 10.6, I have boot camp 3.04 and after I partition and install the disc (using 32bit) it restarts automatically and freezes on a black screen.  I have updated my software so what should I do?  Th

  • Document Number GAPs

    Dear all, Can you help in letting the us know the systems behaviour where in the system is posting a document and alloting us a document number. However when we subsequently retrive the said document number we are unable to find said document in FB03

  • Workflow tree view issue.

    Hi, In workflow management screen i can see tree view of my entity dimension when i loged in with an admin account, but other users can only see flat list of entities. Is there a way to make it possible to see entities in tree view for other users as

  • Format date between 2 linux (red hat & ubuntu)

    Hello, I have a little date format problem. I have a soft php (and apache)+oracle 9i. I have ONE database, and 2 applications (same php) on 2 different server (one on red hat, the other on ubuntu (edgy). My probleme is, on my red, when I select a dat