Oracle Database upgrade from 10g R2 to 11g R2

Dear Oracle Experts,
Currently we I have three database on Oracle 10g(10.2.0.5) in same oracle home and want to upgrade only one database out of three.
Can you please advise if I can upgrade only one database instance(out of three database, same oracle home) and my two other database will run on 10g ? and can you please share steps also for the same
Best Regards
Farookh

Hi,
As Harry pointed out already, it's definitely possible and a good idea actually. By installing a new Oracle home you can easily revert back to the 10g one if you need to. It keeps everything separate and makes it cleaner.
I would recommend reading the Oracle docs. DK2010 has written them down here:
upgrade the database version 10.2.0.1.0
I made some notes on how to upgrade your database from 10g to 11g over on my site, they are the exact steps I used. It might help you to have a read through them but you should definitely read the Oracle docs and make sure everything you need for your environment is covered before upgrading. [url http://www.ora00600.com/wordpress/articles/oracle-10g-to-11g-upgrade-guide/]Here are my notes.
Hope that helps,
Rob

Similar Messages

  • Oracle database upgrade from express edition to standard edition

    We purchased Oracle database 11g to upgrade our current primavera oracle database express edition (10g).When we are trying to upgrade through DBUA it getting error message
    Please provide us a proper advise to solve this issue.

    1008016 wrote:
    Windows 7 64 bit, please find the below error message when I am trying to upgrade through Database Upgrade Assistant
    "Could not get database version from the "oracle server" component.The "CEP" file "D:\app\usr\product\11.2.0\dbhome_1\rdbms\admin\rdbmsup.sql" does not provide the version directiveTo upgrade to 11gR2, you need to be at 10.2.0.2 - hence the error
    11gR2 DBUA States "The CEP File does not provide the version directive" [ID 980693.1]
    As noted by orafad, the easiest approach would be to perform a full export from 10gR2, install 11gR2 into a new ORACLE_HOME, create an empty 11gR2 database, then perform a full import into 11gR2. As also noted, you will have to follow any special directions related to Primavera.
    http://docs.oracle.com/cd/E11882_01/server.112/e23633/expimp.htm
    You will need Win 7 Professional or higher (Home versions are not supported for Oracle installs)
    HTH
    Srini

  • .Database upgrade from 10g to 11g in Oracle EBS 11i

    Hi,
    An urgent help is needed.I am upgrading Oracle Database from 10g to 11g.My EBS is version 11i.So after upgrading my database
    from 10g to 11g as sa sanity check what are the parameters we need to take care of the EBS.My point is will there be any Application level changes if the database
    is upgraded?Wiill the Workflow and what other things we had to do the sanity check if its working properly?Any Concurent Program level changes be affected?
    Thanks and Regards
    Edited by: 918308 on May 10, 2013 7:52 PM

    918308 wrote:
    Hi,
    Thanks for the info provided but i dont have the metalink id.Kindly can you provide me the link for the subjected docs so that i can relate.Any application level testing to be done?Concurrent Programs,Schedule Manager,Workflow etc.?We cannot post the contents of MOS docs since this violates Oracle support agreement policy.
    You need to go a regular sanity check (i.e. submit concurrent programs, check workflow functionality, ..etc) -- E-Business Suite Diagnostics 11i Test Catalog [ID 179661.1]
    Thanks,
    Hussein

  • Forms HOST command no longer works after database upgrade from 10g to 11g

    Hi,
    After upgrading the database 10g to 11g the forms HOST command no longer works on Unix server. The form used to work fine prior the upgrade. I read all the threads I could find and did not see any solutions. Adding PATH and LD_LIBRARY_PATH does not work because it does not even run a basic shell script. (I saw this solution, adding PATH and LD_LIBRARY_PATH, in many questions / threads).
    1. I wouldn't expect the database upgrade to be an issue, but it is the only change we had.
    2. Note, 11g is Oracle Fusion Middleware which is quite a bit different than 10g.
    I even tried the most basic commands like "echo" which is a build-in Unix command and there is no directory for it (ie. no /usr/bin - so variable PATH is irrelvent). i.e HOST('echo hi'); and HOST('echo "hi" '); and even HOST ('echo hi > /my_file.txt'); all returns FORMS_FAILURE (actually the if is IF FORM_SUCCESS THEN ... else ... and the else part always runs now - whereas it didn't before.).
    Or basic commands like /usr/bin/ls as in HOST(/usr/bin/ls). At that point I was just testing the Unix command would return FORM_SUCCESS even though I could not see the results (because they weren't writing to a log file). Notice that I'm using the direct path /usr/bin so no Unix environment variables were needed.
    The form does use webutil but that part works. For example, we have webutil_file_transfer( ....) The file shows up on the application server and in the expected directory.
    Here's the main goal. Upload a file from clients local PC to the datebase server. The form uploads the file to the Application server, then we have a Unix script to scp (secure copy) the file from the application server to the database server. IF webutil, or any other Oracle functions could put the file on the database server that would be better. But, I don't know of any procedures that do that - or would have done it cleanly (i.e. storing to database and write back to server and then using a blob etc. )
    Anyway, I was hoping someone would help with either of these.
    1) Get the HOST command to work. - If we can get that to work then I wouldn't need any more help. We can just call the already existing Unix script to copy the file from the application server to the database.
    2) OR be able to upload directly to the database server - wanted to do that originally
    Any help would be appreciated

    Solution for those interested and for anyone else searching this forum for a solution
    I found this on My Oracle Support:
    <h3>Host Command from Forms Not Working in 11g in Sun Solaris Sparc OS [ID 1157346.1]</h3>
    Applies To: Oracle Forms - Version 11.1.1.1.0 and later
    Sun SPARC Sun OS
    Symptoms:
    When trying to execute a Shell script or any OS command using the host() Built-in from Forms 11g, the host()command is not getting executed. The same functionality works on other operating systems and in previous versions like 10gR2.
    Steps to be followed:
    1) Take a backup and edit the $DOMAIN_HOME/config/fmwconfig/servers/WLS_FORMS/applications/formsapp_11.1.1/config/default.env or any custom environment file.
    2) Locate the following environment variable:
    LD_PRELOAD=/ora10gas/app/11.1.0/Middleware/as_1/jdk/jre/lib/sparcv9/libjsig.so
    3) Comment out this variable. After the changes, it will look like the following:
    #LD_PRELOAD=/ora10gas/app/11.1.0/Middleware/as_1/jdk/jre/lib/sparcv9/libjsig.so
    3) a) Instead of LD_PRELOAD, kindly use LD_PRELOAD_64 as given below :
    LD_PRELOAD_64=/ora10gas/app/11.1.0/Middleware/as_1/jdk/jre/lib/sparcv9/libjsig.so
    (This makes HOST AND RUN_REPORT_OBJECT work fine).
    4) Save the file and execute your forms. The Host() built-in will work as expected
    The LD_PRELOAD setting in default.env is only required for the working of signal chaining facility in JVM version 1.5 and later. If you are not using theSignal chaining facility, this variable is not required. For more information, refer to the following documentation
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14772/forms.htm#CJAJGAFF

  • Upgrade from 10g xe to 11g xe

    Hi everyone
    I am traying upgrade 10g xe to 11g xe.
    Oracle 10g XE is installed before on my C:\
    I want to install 11 g xe same directory.
    To export the data from 10.2 XE database, perform the following steps:
    Connect to 10.2 XE database as SYS user.
    Create a dump folder dump_folder on the local file system.
    Create directory object DUMP_DIR with READ and WRITE privilege to SYSTEM user.
    SQL> CREATE DIRECTORY DUMP_DIR AS '/<dump_folder>';
    SQL>GRANT read, write ON DIRECTORY DUMP_DIR TO system;
    Export data from 10.2 XE database to the dump folder.
    expdp system/system_password full=Y
    EXCLUDE=SCHEMA:\"LIKE \'APEX_%\'\",SCHEMA:\"LIKE \'FLOWS_%\'\"
    directory=DUMP_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
    expdp system/system_password
    TABLES=FLOWS_FILES.WWV_FLOW_FILE_OBJECTS$ directory=DUMP_DIR
    dumpfile=DB10G2.dmp logfile=expdpDB10G2.logwhen I reach to step
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE", line 475
    ORA-29283: invalid file operation
    SQL>Edited by: esra aktas on 18.Nis.2011 06:54

    Firstly I Created a dump folder dump_folder on c:\
    then
    CREATE DIRECTORY DUMP_DIR AS '/<dump_folder>';
    SQL>GRANT read, write ON DIRECTORY DUMP_DIR TO system;and then
    expdp system/system_password full=Y
    EXCLUDE=SCHEMA:\"LIKE \'APEX_%\'\",SCHEMA:\"LIKE \'FLOWS_%\'\"
    directory=DUMP_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.logthats all. I dont know can access dump_dir :S
    derdimi pek anlatamıyorum türkçe anlatsam :)

  • Oracle database upgrade from 10.2.0.1(32bit) to 10.2.0.4(64bit)

    We are planning a Database Server upgrade. The current configuration is Red Hat Linux 4 (32Bit) and Oracle Database Enterprise 10.2.0.1 (32Bit). The proposed configuration is Red Hat Linux 5 (64Bit) and Oracle Database Enterprise 10.2.0.4 (64Bit).
    No plans to change the middle-tier servers:
    O/S- Windows 2003
    OAS- Oracle Application Server Lite [Forms and Reports Service]- Version 10.1.2.0.2 .
    No plans to change the development tools:
    O/S- Windows XP SP2
    Oracle Forms and Reports - (32Bit) Version 10.1.2.0.2 .
    Has anyone encountered any gotchas/compatibility issues we should be aware of ?
    Many thanks in advance for any advice.

    You can check metalink doc
    Changing between 32-bit and 64-bit Word Sizes
         Doc ID:     62290.1
    You'd better patch your 32 bit version to 10.2.0.4 first.

  • Oracle database upgradation from 10.2.0.3 to 10.2.0.4 for producti database

    Hi,
    I have an production database & physcical standby database with database version 10.2.0.3
    I want to upgrade production & physcical standby datbase from 10.2.0.3 to 10.2.0.4
    I am following below steps to upgrade production database from 10.2.0.3. to 10.2.0.4
    ==================================================================
    shutdown database
    stop listner
    Oracle patch installation of 10.2.0.4 throgh Xmanager
    Start the database in the UPGRADE mode:
    SQL> STARTUP UPGRADE
    Set the system to spool results to a log file for later analysis:
    SQL> SPOOL upgrade_info.log
    Run the Pre-Upgrade Information Tool:
    SQL> @?/rdbms/admin/utlu102i.sql
    Turn off the spooling of script results to the log file:
    SQL> SPOOL OFF
    SQL>shutdown immediate;
    SQL> STARTUP UPGRADE
    SQL> SPOOL patch.log
    SQL> @?/rdbms/admin/catupgrd.sql
    SQL> SPOOL OFF
    SQL> SHUTDOWN IMMEDIATE
    SQL> STARTUP
    SQL> @?/rdbms/admin/utlrp.sql
    ==========================================================
    Kindly provide me the steps to upgrade his physical standby database from 10.2.0.3 to 10.2.0.4
    I have AIX5.3 OS
    Regards,

    Simply follow the documentation:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14239/upgrades.htm#CHDBJAGG

  • Oracle Database Upgradation 10g to 11g in HP unix

    Oracle Database Upgradation 10g to 11g (standalone DB & ASM is implemented) in HP unix ?
    Kindly furnish the good links and screen shot documents.
    Edited by: user11937849 on Apr 9, 2012 4:04 AM

    As part of the upgrade, you might research how new Oracle 11g features can help your system run better.
    Your upgraded system can effectively start using extended statistics, a very powerful new 11g feature, immediately after the upgrade. I have a detailed blog post on how to do this with OEM - http://iiotzov.wordpress.com/2011/11/01/get-the-max-of-oracle-11gr2-right-from-the-start-create-relevant-extended-statistics-as-a-part-of-the-upgrade
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • Oracle Upgrade from 10g to 11g [BRANCHED BY MODERATOR]

    Hi Deepak/Folks,
    Another question that I have is that while doing the Oracle Upgrade on an EP server, the patches were not installed properly and I had to shut down the Patches installation after it did not do anything for a while.
    Now when I try to install the patches it fails telling me that the Installed patches cannot be verified, I had written to SAP and they told me to follow the
    SAP note 1862446 - Inventory
    load failed... OPatch cannot load inventory for the given Oracle Home
    and re-create the oracle  inventory.
    This has also not helped in anyway.
    Is there a solution to this problem.
    Following is the error that I am getting when I try to Install the patches
    Getting pre-run patch inventory...
    Getting pre-run patch inventory...failed.
    Cannot get pre-run patch inventory.
    Refer to log file
      $ORACLE_HOME/cfgtoollogs/mopatch/mopatch-2014_08_06-14-52-51.log
    when I open the log file specified here I get the following
    more mopatch-2014_08_06-14-52-51.log
    more /oracle/<SID>/11203/cfgtoollogs/mopatch/mopatch-2014_08_06-15-01-51.log
    MOPatch - Install Multiple Oracle Patches in One Run - 2.1.15.
    Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
    Version:       2.1.15
    Revision:      5.1.2.26
    Command-line:  /oracle/<SID>/11203/MOPatch/mopatch.sh -v -s SAP11203P_1312-20009978.zip
    Oracle Home:   /oracle/<SID>/11203
    RDBMS version: 11.2.0.3.0
    OPatch version:11.2.0.3.3
    Clean-up:      supported
    PSUs:          supported
    Log file:      $ORACLE_HOME/cfgtoollogs/mopatch/mopatch-2014_08_06-15-01-51.log
    Patch base:    .
    Patch source:  SAP11203P_1312-20009978.zip
    Link script:   ./link.mts<SID>ua.sh
    Readmes:       <none>
    Strpd. Readmes:<none>
    make utility:  /usr/ccs/bin/make
    unzip utility: /oracle/<SID>/11203/bin/unzip
    User name:     ora<SID>
    Working dir:   /oracle/stage
    System:        HP-UX mts<SID>ua B.11.31 U ia64 2468369872 unlimited-user license
    Disk free:     11734549 KBytes on /oracle/<SID>
    Disk required: 886496 KBytes on /oracle/<SID>
    Getting pre-run patch inventory...
    executing: "/oracle/<SID>/11203/OPatch/opatch" lsinventory -retry 0 -xml "./mopatch-187-21696-tmpdir/preinv.xml"
    ========================================================
    GENERIC OPATCH VERSION - FOR USE IN SAP ENVIRONMENT ONLY
    ========================================================
    Oracle Interim Patch Installer version 11.2.0.3.3
    Copyright (c) 2012, Oracle Corporation.  All rights reserved.
    Oracle Home       : /oracle/<SID>/11203
    Central Inventory : /oracle/<SID>/oraInventory
       from           : /oracle/<SID>/11203/oraInst.loc
    OPatch version    : 11.2.0.3.3
    OUI version       : 11.2.0.3.0
    Log file location : /oracle/<SID>/11203/cfgtoollogs/opatch/opatch2014-08-06_15-01-56PM_1.log
    List of Homes on this system:
    Inventory load failed... OPatch cannot load inventory for the given Oracle Home.
    Possible causes are:
       Oracle Home dir. path does not exist in Central Inventory
       Oracle Home is a symbolic link
       Oracle Home inventory is corrupted
    LsInventorySession failed: OracleHomeInventory gets null oracleHomeInfo
    OPatch failed with error code 73
    Getting pre-run patch inventory...failed.
    Cannot get pre-run patch inventory.  Exiting.
    I would appreciate if you folks can help me out on this
    Thanks
    APS

    FOLLOW UP QUESTION BRANCHED:
    Oracle Upgrade from 10g to 11g [BRANCHED BY MODERATOR]

  • Images after upgrade from 10g to 11g

    We recently upgraded from 10g to 11g and all the images are broke in the dashboard.
    Can anyone provide the steps needs to be done in order to fix the broken images?
    Thanks.

    Put image files at
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images
    If required
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\s_blafp\images
    Call them using fmap
    Syntax: fmap:images/imagename.imageformat
    for e.g: fmap:images/geograph.jpg
    Pls mark correct/helpful if helps

  • Database upgradation from 10.2.0.3 to 11 R2

    Hi
    I am planning to upgrade my production database from 10.2.0.3 to 11.2. Before doing into production am testing it into our Test server in Linux OS. I got manual procedure of database upgradation from metalink. I installed Oracle 11g as software only into my test server. Now in step 2 , they describe as under
    $ sqlplus '/ as sysdba'
    SQL> spool upgrade_info.log
    SQL> @utlu112i.sql
    SQL> spool off
    SQL>
    My query is : I will run the script utlu112i.sql from which home ? Oracle 10g ? oracle 11g?
    Please give me your wise suggestion.
    Regards
    Rabi

    Hi Rabi,
    First of all go to location (Oracle 11g) $ORACLE_HOME/rdbms/admin and
    copy the utlu112i.sql script to /tmp directory.
    Now login to 10g database “/ as sysdba” and startup the 10g database, then:
    SQL> spool /tmp/upgrade_info.log
    SQL> @/tmp/utlu112i.sql
    SQL> spool off
    Hope this will help you.
    Regards
    Malay

  • Database upgrade from 10.2.0.3.0 to 11.1.0.7

    Hi All,
    OS:linux 86x64 Red Hat linux
    We would like to perform Database upgrade from 10.2.0.3.0 to 11.1.0.7.
    I do have quick questions regarding the upgrade.
    1. When we upgrade the Database to version 11, do we need to update the client also? What is Oracle recommendation?
    2. Do we need to take any DB backup before the upgrade?
    3. How will the OBIEE windows box ODBC connect to the upgraded 11 g instance? Will the version 10 driver work to connect to version 11 databases?
    4. We have Informatica,DAC in the existing instance. Will the DB upgrade have any impact on them?
    Could anyone please share their experience/thoughts on the above like the steps to perform the upgrade.
    Thanks for your time!

    Hi,
    Hi All,
    OS:linux 86x64 Red Hat linux
    We would like to perform Database upgrade from 10.2.0.3.0 to 11.1.0.7.
    I do have quick questions regarding the upgrade.
    1. When we upgrade the Database to version 11, do we need to update the client also? What is Oracle recommendation?Just 11g upgrade will include all cient/Server tools on you Linux Box. On client side its recommended to upgrade client version 11.1.0.7.
    Please refer MOS tech note:
    *Oracle 10g Client Connecting To Oracle 11g Database Gets ORA-01017 invalid username/password [ID 888432.1]*
    2. Do we need to take any DB backup before the upgrade?Yes, perform full cold backup of Database as well as 10G $ORACLE_HOME binaries including inventories.
    3. How will the OBIEE windows box ODBC connect to the upgraded 11 g instance? Will the version 10 driver work to connect to version 11 databases?AFAIK, it should work. What is the version of OBIEE?
    4. We have Informatica,DAC in the existing instance. Will the DB upgrade have any impact on them?Again AFAIK, there should not be any effect. I would recommend you to log a S.R and verify the same from support.
    thanks,
    X A H E E R
    http://appsdbaworkshop.blogspot.com

  • Migration of Oracle Database 8i from Windows 2000 to Windows XP

    Hi experts,
    I have to migrate Oracle 8i database from windows 2000 platform to windows XP platform.
    What are the steps that I need to follow in order to migrate.
    Please help me out..
    Waiting for your response.
    Regards,
    Imtiyaz

    Hi;
    Please see below note which could be helpful for you:
    Different Upgrade Methods For Upgrading Your Database [ID 419550.1]
    Minimizing Downtime During Production Upgrade [ID 478308.1]
    Master Note For Oracle Database Upgrades and Migrations [ID 1152016.1]
    Oracle Database on Unix AIX,HP-UX,Linux,Mac OS X,Solaris,Tru64 Unix Operating Systems Installation and Configuration Requirements Quick Reference (8.0.5 to 11.2) [ID 169706.1]
    Please check my blog
    http://heliosguneserol.wordpress.com/2010/06/17/move-to-oracle-database-11g-release-2-wiht-mike-dietrich/
    In this pdf you can see patch of to upgrade db from x to n wiht many senerios wiht all related metalinks notes which is created by Oracle worker Mike Dietrich
    Regard
    Helios

  • Need to upgrade from 8i OCP to 11g OCP

    I had my 8i DBA OCP a long time ago (2002). Now I'm planning to upgrade it to 11g OCP. I have a couple of questions about my options.
    I know one of my options is to upgrade to 10g first and them upgrade from 10g to 11g.
    But what about if I would like to take 11g tests, such as 1Z0-052, 1Z0-053? This will be my second option.
    1) In my second option, will my exsiting IZO-001 (Introduction to Oracle SQL and PL/SQL) pass remains valide as an SQL exemption?
    2) Since I already have OCP, will I exempt for oracle hands on training?
    BTW, I already have an account in CertView and see all my certification information.
    Thanks very much for any help.
    Best Regards
    Cindy

    1004605 wrote:
    I had my 8i DBA OCP a long time ago (2002). Now I'm planning to upgrade it to 11g OCP. I have a couple of questions about my options.
    I know one of my options is to upgrade to 10g first and them upgrade from 10g to 11g.
    But what about if I would like to take 11g tests, such as 1Z0-052, 1Z0-053? This will be my second option.
    1) In my second option, will my exsiting IZO-001 (Introduction to Oracle SQL and PL/SQL) pass remains valide as an SQL exemption?Yes.
    2) Since I already have OCP, will I exempt for oracle hands on training?
    You will be exempt.
    BTW, I already have an account in CertView and see all my certification information.
    Thanks very much for any help.
    Best Regards
    CindyI dont have time to seek out the authorive posts from times past.
    But for an 8i DBA OCP with 1z0-001 then passes in 1z0-052 + 1z0-053 will achieve 11g DBA OCP certification with no additional training.
    I will often recommend raising an Service Request to confirm this; as it would be a very expensive investment in money/time if it were not to be the case.
    Thankou for giving all relevant information which has made the answer easy for me to give.

  • Testing while doing the database upgrade from 9.2.0.6 to 11.2.0.2 apps ?

    Dear Experts,
    Please note that we are in process of doing database upgrade from 9.2.0.6 to 11.2.0.2 ?
    We have gone through the interoperablity note id for 11i 11gr2 ?
    Step 1
    upgrading the database from 9.2.0.6 to 9.2.0.8 ?
    Step 2-
    Upgrading the Forms patchset to 19 ?
    Step-3
    Applying the Rollup-6 patch ?
    Step -4
    Upgrading the database from 9.2.0.8 to 11.2.0.2 ?
    We would like to know whether after each step do we have to do any kind of testing on the Oracle Application Instance and the database?
    Please advise.
    Regards
    Mohammed.

    We would like to know whether after each step do we have to do any kind of testing on the Oracle Application Instance and the database?There is no such a list. However, you can refer to the documents referenced in each task above and it should cover if any testing need to be done or not (for example, the Developer Patchset doc). For the rest of the docs you will have to do your regular testing (test the application/database and make sure it is working properly).
    Also, make sure you review (Known issues on Top of 11i.ATG_PF.H. delta.6 (RUP6) - 5903765 [ID 459353.1]).
    ATG RUP 7 is the latest 11i.ATG_PF patch.
    About Oracle Applications Technology 11i.ATG_PF.H.delta.7 (RUP 7) [ID 783600.1]
    Known Issues On Top of 11i.ATG_PF.H.delta.7 (RUP7) - 6241631 [ID 858801.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Link a Crystal Report report with an SQL Azure database

    Hi, I want to use my database on SQL Azure in Crystal Report. So I want to link my reports with data contained not in a local db, but in a SQL Azure one. Insiede Crystal Report I have created a new ADO connection to my SQL Azure, providing server, db

  • #multivalue error for detail object in webi report

    Hi, I am facing #multivalue error in my webi report. I am using 2 queries  Query 1 Account Number Cost Center Query 2 Account Number Order Number Now I want to display Account Namer,Cost Center and Order Number in the report. So I merged Account Numb

  • Pre-populated in user create form

    Hello there, I want to have user create form that displays some pre-populated fields in Access Manager. I have added the new fields and can see on the user create form but I want to populate these fields with the values from database or some other re

  • Thumbnail shows but the photo does not open

    I can see the thumbnails for the pictures in an album, but when I click on the picture I get a large exclamation point in a triangle. Do I have to rebuild?

  • MacBook Pro (15-inch Core 2 Duo) early 2008 can boot (usb or firewire) Linux

    MacBook Pro (15-inch Core 2 Duo) early 2008 can boot (usb or firewire) Linux or cdrom boot Linux? where can view my Registered Apple Products?