D2k migration to the latest platform

Dear friends

Nice day

We have a challenge, I need your expert advice on the following points:

  1. So far, we are using Oracle 9i + D2k on Windows Server 2003 32-bit.
  2. Our database, forms, and States have been for the past 15 years and its been created with many controls according to the requirement of the company and works very well.
  3. Now we want to upgrade our server to windows 8 and all users have started using Windows 7 and 64-bit Windows 8.
  4. This application will not support for the 64-bit platform.

  1. I want to know what will be the migration of the existing process later. (Database, forms, and reports)
  2. What type of license is needed and about what will be the cost per user.

I will be grateful if I can get a clear suggestion that will help me to discuss with management and to plan accordingly.

best regards

Sandy

I'm a bit confused of your real environment. You have Forms 6i and Oracle 9i database?

If so, there is a change architecture of 6i to the current version of 11G. Cleint server-based forms 6i and you had a client installation of runtime-forms and actual execution of the forms was on the client. With 11G you need to a Weblogic Server where forms are executed on the client only the GUI runs as a java applet.

There are several built-in the forms 6i who no longer work (for example RUN_PRODUCT) and the other is no longer runs on the client, but on the application server (for example, HOST or OLE2).

Migration effort depends heavily on what features you are using in your application.

I suggest you take a look at the documentation here form of Oracle

Tags: Oracle Development

Similar Questions

  • Migration of data from the old platform to the new primary database, need advice.

    I have physical standby facility and everything works now.

    Next weekend, we will do the actual migration of the old platform to the new environment.

    I have several issues of concern.

    Migration will go to the primary database. I'll have to remove patterns and inside expdp dmp.

    While I do all those, what data base waiting? should I disable it again apply?

    What other concerns and precautions I need to take before I have to remove all data from primary school and do a migration?

    Thank you in advance.

    Hello;

    My main concern would be the FRA (assuming you use it).

    By doing all that generates a ton of archives, you have to worry about the space on both sides.

    I would consider increasing my FRA on both sides.

    I would not disable the recovery, but I look very close and be willing to adjust my space as needed.

    As long as you don't miss space you should be fine. I had once a backup log files more than 250, and it took about 15 minutes to catch up.

    Have a little prepared scripts in advance if you can increase the space or delete archive applied and it should be fine.

    I also opened at least two terminals on the primary and Standby. Everyone look at space and the other to execute all what you need to adjust the space.

    The rest is common sense, first do the smaller drawing if you have an idea what to expect. Decaying etc. as much as possible.

    Best regards

    mseberg

    I have a shell script called 'quickcheck.sh' (use a separate but .env file it will send information vital back)

    With a little work, you can do this in something that makes it easy to keep an eye on things.

    #!/bin/bash
    ####################################################################
    #
    
    if [ "$1" ]
    then DBNAME=$1
    else
    echo "basename $0 : Syntax error : use . quickcheck  "
    exit 1
    fi
    
    #
    # Set the Environmental variable for the instance
    #
    . /u01/app/oracle/dba_tool/env/${DBNAME}.env
    #
    #
    
    $ORACLE_HOME/bin/sqlplus /nolog <
    

    and then a SQL file called quickaudit:

    SPOOL OFF
    CLEAR SCREEN
    SPOOL /tmp/quickaudit.lst
    
    --SELECT SYSDATE FROM DUAL;
    --SHOW USER
    
    PROMPT
    PROMPT -----------------------------------------------------------------------|
    PROMPT
    
    SET TERMOUT ON
    SET VERIFY OFF
    SET FEEDBACK ON
    
    PROMPT
    PROMPT Checking database name and archive mode
    PROMPT
    
    column NAME format A9
    column LOG_MODE format A12
    
    SELECT NAME,CREATED, LOG_MODE FROM V$DATABASE;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT Checking free space in tablespaces
    PROMPT
    
    column tablespace_name format a30
    
    SELECT tablespace_name ,sum(bytes)/1024/1024 "MB Free" FROM dba_free_space WHERE
    tablespace_name <>'TEMP' GROUP BY tablespace_name;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT Checking freespace by tablespace
    PROMPT
    
    column dummy noprint
    column  pct_used format 999.9       heading "%|Used"
    column  name    format a16      heading "Tablespace Name"
    column  bytes   format 9,999,999,999,999    heading "Total Bytes"
    column  used    format 99,999,999,999   heading "Used"
    column  free    format 999,999,999,999  heading "Free"
    break   on report
    compute sum of bytes on report
    compute sum of free on report
    compute sum of used on report
    
    set linesize 132
    set termout off
    select a.tablespace_name                                              name,
           b.tablespace_name                                              dummy,
           sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )      bytes,
           sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id ) -
           sum(a.bytes)/count( distinct b.file_id )              used,
           sum(a.bytes)/count( distinct b.file_id )                       free,
           100 * ( (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) -
                   (sum(a.bytes)/count( distinct b.file_id ) )) /
           (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) pct_used
    from sys.dba_free_space a, sys.dba_data_files b
    where a.tablespace_name = b.tablespace_name
    group by a.tablespace_name, b.tablespace_name;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT Checking Size and usage in GB of Flash Recovery Area
    PROMPT
    
    SELECT
      ROUND((A.SPACE_LIMIT / 1024 / 1024 / 1024), 2) AS FLASH_IN_GB,
      ROUND((A.SPACE_USED / 1024 / 1024 / 1024), 2) AS FLASH_USED_IN_GB,
      ROUND((A.SPACE_RECLAIMABLE / 1024 / 1024 / 1024), 2) AS FLASH_RECLAIMABLE_GB,
      SUM(B.PERCENT_SPACE_USED)  AS PERCENT_OF_SPACE_USED
    FROM
      V$RECOVERY_FILE_DEST A,
      V$FLASH_RECOVERY_AREA_USAGE B
    GROUP BY
      SPACE_LIMIT,
      SPACE_USED ,
      SPACE_RECLAIMABLE ;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT Checking free space In Flash Recovery Area
    PROMPT
    
    column FILE_TYPE format a20
    
    select * from v$flash_recovery_area_usage;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT Checking last sequence in v$archived_log
    PROMPT
    
    clear screen
    set linesize 100
    
    column STANDBY format a20
    column applied format a10
    
    --select max(sequence#), applied from v$archived_log where applied = 'YES' group by applied;
    
    SELECT  name as STANDBY, SEQUENCE#, applied, completion_time from v$archived_log WHERE  DEST_ID = 2 AND NEXT_TIME > SYSDATE -1;
    
    prompt
    prompt----------------Last log on Primary--------------------------------------|
    prompt
    
    select max(sequence#) from v$archived_log where NEXT_TIME > sysdate -1;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    PROMPT
    PROMPT Checking switchover status
    PROMPT
    
    select switchover_status from v$database;
    
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    
    SPOOL OFF
    
    exit
    

    The env file looks like this: (if the file would be PRIMARY.env)

    ORACLE_BASE=/u01/app/oracle
    
    ULIMIT=unlimited
    
    ORACLE_SID=PRIMARY
    
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0.2
    
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    
    LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
    
    LIBPATH=$LD_LIBRARY_PATH:/usr/lib
    
    TNS_ADMIN=$ORACLE_HOME/network/admin
    
    PATH=$ORACLE_HOME/bin:$ORACLE_BASE/dba_tool/bin:/bin:/usr/bin:/usr/ccs/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:/usr/lbin:/GNU/bin/make:/u01/app/oracle/dba_tool/bin:/home/oracle/utils/SCRIPTS:/usr/local/bin:.
    
    export EXP_DIR=/u01/oradata/PRIMARY_export
    
    export TERM=vt100
    
    export ORACLE_BASE ORACLE_SID ORACLE_TERM ULIMIT
    
    export ORACLE_HOME
    
    export LIBPATH LD_LIBRARY_PATH ORA_NLS33
    
    export TNS_ADMIN
    
    export PATH
    

    Published by: mseberg on December 9, 2011 18:19

  • Driver is not intended for this platform (install the latest driver for Verizon Wireless WAN (UNDP))

    Hello

    My Verizon Wireless WAN has worked on my T500 (2081CT 0, 4 GB of RAM, Windows Vista Business 64) since I received it last September. This morning it stopped working. Said that the card has not been activated. Ask Verizon and Lenovo have been pretty useless - each blamed the other, I so put on my own.

    -I uninstalled the driver for the Qualcomm HS USB card integrated, downloaded the latest version of the driver (transferred via CDROM since I can't connect to this laptop to the network where I work) and tried to install it. The HS-USB card is now displayed in the devices as "Unknown device" Manager (under 'other devices'), and his device status is:

    "The drivers for this device are not installed. (Code 28)

    Driver is not intended for this platform.

    To reinstall the drivers for this device, click on reinstall the driver. »

    Huh?

    Of course, reinstall driver does not work, the first problem is that he can't find online because I don't have internet connection without the card.  This driver has been installed from the following link:

    http://www-307.IBM.com/PC/support/site.WSS/document.do?lndocid=MIGR-69999

    Seems to me that it should work on this machine. What I am doing wrong?

    -Some additional background: I've had several accidents recently, including at least two yesterday with blue screens. Easy to believe something has become corrupted, that's why I tried to uninstall and reinstall the driver.

    Help!

    Thank you very much.

    Solution was to uninstall the 'unknown device', search for new hardware and follow the promts by selecting all default values.

  • Migrate license error - "your browser is not supported. You must download the latest version.

    I have a new Win 7 laptop. I had for years the music will not play on this new PC. When I try to play songs, a browser window opens with "Migrate license error" - HELP!

    The error message said: "your browser is not supported (my default is Chrome), you must download the latest version." I have already installed IE8, but the error message open my browser Google Chrome (which is my default).
    What should I do now?

    Try this:

    1. reaffirm Internet Explorer as the browser in the default CUSTOM (<>) Set Program Access and defaults of the computerarticle.

    2. right-click on the following link & select SAVE TARGET under... to download/save the file on your desktop: http://www.slipstick.com/doit/chromehtml.reg [1]

    2. double-click the file that you saved in # 2 above & accept invites him to MERGE with the registry data.

    3. reset Internet Explorer according to the instructions on this page: http://support.microsoft.com/kb/923737

    • For best results, check the option Remove personal settings .

    4. restart & test.

    ==================================================
    [1] source: http://www.slipstick.com/problems/this-operation-has-been-cancelled-due-to-restrictions/

  • BlackBerry smartphones, which is the latest version of the software for Bold 9900 (Philippines) - 7.1 Bundle 2108 (v.7.1.0.746, platform 5.1.0.546)

    Hello, I am located in Philippines and I wanted to know if anyone here knows the latest version of the software for the Bold 9900.

    Here's what I got from my phone: (current version)

    Smart phone BlackBerry 9900 (3G, Wi - Fi)

    7.1 bundle 2108 (v.7.1.0.746, platform 5.1.0.546)

    If there is an update available for my network - 'Sun Cellular' can you please let me know and how to upgrade the software. Thank you very much!

    josuefunes wrote:

    Hello budzbuddy

    Read this article

    http://www.BlackBerry.com/BTSC/KB03901

    Latest version of the 9900 software:

    7.1.0.923

    https://swdownloads.BlackBerry.com/downloads/entry.do?code=04992C5115A2C2FE6D12BDC21E16F64E

    The latest version of the software is for the DoCoMo Japan. Would not be any question using this update? I'm located in the Philippines under the Sun cellular network.

  • BlackBerry smartphones how to obtain the latest device for the 7100v 1.8.0.138 platform software?

    How to get the latest device for the 7100v software (platform is 1.8.0.138, which is relevant?)?

    Thanks for your help!

    Cheers, cazz

    Hello!

    Your provider through this Portal:

    Good luck and let us know how it goes!

  • Why a transportable tablespace for the migration of the platform in the same endian format?

    RDBMS version: 10.2.0.4

    We intend to migrate our database to another platform. The two platforms are in BIG endian format. Search on Google, I came across the following link
    http://levipereira.files.WordPress.com/2011/01/oracle_generic_migration_version_1.PDF

    In this IBM paper, they migrate to AIX 6 of 5.9 on Solaris (SPARC). Both are BIG endian format. Since both are the same size endian can they use TRANSPORTABLE database? Why use RMAN COVERT DATAFILE (Transportable tablespace)?

    In this IBM paper, they migrate to AIX 6 of 5.9 on Solaris (SPARC). Both are BIG endian format. Since both are the same size endian can they use TRANSPORTABLE database? Why use RMAN COVERT DATAFILE (Transportable tablespace)?

    they use portable database - that they do not import data to the dictionary, not creating users--rather than use data conversion, they used convert datafile to avoid to convert all the data files (you will need to convert only cancel + system tablespace)-there are MOS Note: avoid Conversion Datafile during the transportable database [732053.1 ID].

    Basic steps to convert database:
    1. check the prerequisites
    2. identify the directories and external files with DBMS_TDB. CHECK_EXTERNAL.
    3. (coherent) stop and restart the database source in READ ONLY mode.
    4. use DBMS_TDB. CHECK_DB to ensure that the database is ready to be transported.
    5. run RMAN convert database command.
    6 copy the files converted into the target database. Note that this implies that you will need 2 x the storage on the database source for converted files.
    7 copy the parameter in the target database.
    8. set the configuration files as required (setting, listener.ora and tnsnames, etc.).
    9 start the new database!

    All other details are:
    http://docs.Oracle.com/CD/B19306_01/backup.102/b14191/dbxptrn.htm#CHDFHBFI

    Lukas

  • Is it possible to migrate the application to the latest version to the old version

    Hi all

    I have an adf application in jdeveloper 11.1.1.4.0.Due to some questions that I have to do in jdeveloper 11g release 2 (11.1.1.2.0). Is it possible to migrate the application to the latest version to the old version of jdev.

    Thank you.

    I don't think that... If its possible...
    migration of the old is again what I heard jdeveloper world...

    http://blogs.Oracle.com/OLAF/entry/adf_in_action_migrating_to_jde
    http://www.Oracle.com/technetwork/developer-tools/jdev/migratingjdeveloperprojectsto1013-129369.PDF

    Why migration back to old - is not possible because some new features will not be supported by the old

  • to get the latest version of particular platform

    Hello

    I have a table that contains columns such as a column contains the name of the platform and the published versions.
    as linux-> 11.1.0.6.0, linux-> 10.2.0.5.0, etc. Here it comes:-versions can be 11.2 or 9.2.0.1.50

    Please, can you help me with any sql procedure that can get versions and format in the appropriate format
    and get the latest version for this platform.

    1 11.1.0.6.0 - > convert to 2 digits - > 11.01.06.00
    2. 11.2-> complete version correct as - > 11.2.0.0.0 (by adding zeros) - > 11.02.00.00.00
    3 9.2.0.1.50-> convert to 2 digits-> 09.02.00.01.50


    Out now final, we can cut '. ' and compare numerically... like 11010600 with 1102000000 with 0902000150
    No. 2 is bigger, so we can only refer to current selected platfrom.

    Or any other simple application?

    Thank you
    DVS!

    Try this sql query.

    with test
    as
    (
    select '11.1.0.6.0' col1 from dual union all
          select '11.2'from dual union all
          select '9.2.0.1.50' from dual
    )
    select col1,version, replace(version,'.')
    from (
    select col1, nvl(lpad(substr(col1||'.',1,instr(col1||'.','.',1,1)-1),2,'0'),'00')||'.'||
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,1)+1,instr(col1||'.','.',1,2)-instr(col1||'.','.',1,1)-1),2,'0'),'00')||'.'||
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,2)+1,instr(col1||'.','.',1,3)-instr(col1||'.','.',1,2)-1),2,'0'),'00')||'.'||
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,3)+1,instr(col1||'.','.',1,4)-instr(col1||'.','.',1,3)-1),2,'0'),'00')||'.'||
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,4)+1,instr(col1||'.','.',1,5)-instr(col1||'.','.',1,4)-1),2,'0'),'00') version
    from test)
    /
    
    COL1       VERSION        REPLACE(VERSIO
    ---------- -------------- --------------
    11.1.0.6.0 11.01.00.06.00 1101000600
    11.2       11.02.00.00.00 1102000000
    9.2.0.1.50 09.02.00.01.50 0902000150
    
  • The latest Macbook Pro supports final Cut Pro 7?

    think of the upgrade, but cannot find anywhere that will tell me if you can run Final Cut Pro 7 on the latest Macbook Pro or iMac.  Thank you

    Http://roaringapps.com/apps?platform=osx , you can display the software compatibility with the version of Mac OS X. According to their announcements, Final Cut Pro 7 and Final Cut Pro X will run on El Capitan, which is the latest official version of Mac OS X. The latest MBP runs the latest version of the software.

    Your answer is Yes.

    HTH

    Leo

  • all my icons that were normally at the bottom of the screen have migrated to the right side and are all bundled together how to place their return to the bott

    I recently bought a HP 15 laptop with 8.1. I use mainly desktop with latest Mozilla. All my icons that is usually found at the bottom of the screen have migrated to the right side of the screen and boots, to the top, I can't do your choice. I tried to customize without result. I am 75 but strive to keep abreast, but it baffled me.

    Sorry, it's a question of support of Windows, the Windows taskbar does not part of Firefox. I do not use Windows 8.1 myself, and I don't know if the process is the same as on my Windows XP - but maybe click and hold and drag this bar down might work like on Windows XP.

    If you do not understand what I said, or it does not work, here is a popular Windows 8 support forum that should be able to help you.
    http://www.eightforums.com/

  • Firefox saying Java outdated plugin but Java confirmed that I have the latest version.

    1 I noticed Firefox telling that Java Deployment Toolkit 7.0.510.13NPRuntime Script plugin Library for Java (TM) deploy vulnerable update now
    Java (TM) Platform SE 7 U51Next generation Java plug-in 10.51.2 for Mozilla browsers

    2. I tried to update. Receipt message indicating this update already installed Java. Message seemed to be a Windows message. Unfortunately, I outweigh the message and reinstalled both the updates that above.

    3. now showing the Javas above twice for plugins on Firefox (once in already installed plugins and once to date in the plugin.

    4. I went to Java. Uninstalling previous versions of Java from Windows was properly executed.

    5 Firefox continues to say that above Javas are vulnerable and must be updated.

    6. in the past, the update has been flawless. Now not so.

    7. what should I do or is it a Firefox problem.

    8. the two Javas in my time (with updates) recent plugins and those of so-called regular plugins 'ask to activate '.

    9. thank you.

    Hi Jgrossman, checker plugin site does not currently distinguish between the latest version available (Java 8, for developers) and the oracle recommended for your computer (Java 7, for everyone). This is a limitation of this site. A new site is underway due to the changes in Firefox 29, and that works is having the priority at the moment, so problems with the current site will have to wait or will become irrelevant after the new site launches.

  • After the installation of 12.0, I get popups and migration from the lower left of my screen that will heal all the ads block settings.

    Whenever I visit a new Web site I can wait for one of my first 'clicks' to open a new window with something like a Quibids announcement or a site with audio asking me to take a survey vaguely regarding the site I'm. There is also an ad in the migration of the lower-left corner of my screen that no amount of effort will get rid of. It didn't happen until last week when I downloaded the latest version of Firefox. My OS is Windows 7 on a Toshiba laptop. I connect with a hotspot from Verizon at home only. I scan all emails before downloading from the server PC of the population. I ran most of Windows and a couple of free virus programs did a full scan nothing helps. This problem does not exist when I navigate with Windows Explorer.

    Sometimes a problem with Firefox can be a result of malware installed on your computer, you may not be aware of.

    You can try these free programs to search for malicious software that work with your existing anti-virus software:

    Microsoft Security Essentials is a good permanent antivirus for Windows 7/Vista/XP, if you do not already have one.

    More information can be found in the article troubleshooting Firefox problems caused by malware .

    This solve your problems? Please report to us!

  • Where are the latest versions of downloads every night for mobile (or other non-windows) for firefox location?

    First of all, I ask because I noticed an inconsistency between Firefox nightly and releases of chrome. Firefox almost always exceeds chrome in versions of windows, but chrome is always newer with mobile and linux versions. What I'm trying to understand, that is if I'm missing any non-windows releases on the side of Firefox.

    I found the latest windows downloads at the following link:
    http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-inbound-win32/?C=N;O=D.
    These versions see here before they on the platform all catalogue here:
    https://tbpl.Mozilla.org/?tree=Mozilla-inbound
    Is this the case for other platforms, and, if so, are there available downloads of the similar time?

    It's because you are looking in the Firefox section when it's for desktop versions that the mobile Firefox is in the mobile section.

    http://FTP.Mozilla.org/pub/mozilla.org/Mobile/Tinderbox-builds/

  • Firefox says that Java needs to be updated, Java says I have the latest update, what's the problem?

    I had disabled Java because of the vulnerability mentioned earlier in the year.

     Today I downloaded and installed the latest version according to Java SE7 U9.  Firefox tells me this is an outdated version when I click to check plugins are up to date.  When I click on update the Java.com site tells me my Java is up to date and offers no update.
    

    Java Deployment Toolkit 7.0.90.5 is also deemed obsolete by Firefox, but Java offers no update.

    What is going on? I have Windows 7 X 64 Firefox is X 32. Help, please.

    Sue

    The list still site Java.com the previous version of Update 9 Java 7 as the last, but Java 7 update 10 has been released than get youcan via Oracle's Web site.

    See the Platform Java > Java SE 7U10 or Java 6U38 (download the JRE)

Maybe you are looking for