Upgrade XE10 to XE11?

Installation is openSUSE 11.2 32bit (XE10 WE)
and 64bit (XE11 Universal)
I did it as described:
- install XE 10 in 32bit linux
- install XE 11 on 64bit linux
- copied gen_inst.sql from 64bit linux(XE11) to 32bit linux(XE10)
- run gen_inst.sql on 32bit linux(XE10)
- created a DUMP_DIR
- grant read/write access to usr oracle:dba
- export as described
- copy the dump-files and log-files to a stick
- 64bit linux(XE11)
- created a DUMP_DIR
- grant read/write access to usr oracle:dba
- copy the dump-files and log-files to DUMP_DIR
- import as described
- generated install.sql:
set define off
alter session set current_schema = APEX_040000;
@ws.sql
commit;
- generated gen_apps.sql:
set verify off
set feedback off
set serveroutput on size 1000000
set linesize 1000
- generated ws.sql is empty
The import breaks:
Connected to: Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Beta
ORA-39002: invalid operation
ORA-39070: Unable to open the log file.
ORA-29283: invalid file operation
ORA-06512: at "SYS.UTL_FILE", line 536
ORA-29283: invalid file operation
Is it correct that impdp uses the log-file "expdpDB10G1.log"?
I see the different log-file-names (expdpDB10G.log, expdpDB10G2.log, expdpDB10G1.log, expdpDB10G1b.log):
export is:
expdp system/<passwd> full=Y EXCLUDE=SCHEMA:\"LIKE \'APEX_%\'\",SCHEMA:\"LIKE \'FLOWS_%\'\"
directory=DUMP_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
expdp system/<passwd> TABLES=FLOWS_FILES.WWV_FLOW_FILE_OBJECTS$
directory=DUMP_DIR dumpfile=DB10G2.dmp logfile=expdpDB10G2.log
import is:
impdp system/<passwd> full=Y directory=DUMP_DIR
dumpfile=DB10G.dmp logfile=expdpDB10G1.log
impdp system/<passwd> directory=DUMP_DIR
TABLE_EXISTS_ACTION=APPEND TABLES=FLOWS_FILES.WWV_FLOW_FILE_OBJECTS$ dumpfile=DB10G2.dmp logfile=expdpDB10G1b.log
Did someone tried this?
Should impdp and expdp use the same log-files?
Where should they stored?
What's going wrong?
Best regards
Edited by: Achim Klausmann on 06.06.2011 09:15

Hello Achim,
I'm sorry I hadn't tested this before on XE - it was the workaround suggested by MOS to solve that problem. Unfortunately, I couldn't find any xsl on my 11.2 XEs either. It seems to be some missing part similar to a few others reported in the beta forum, e.g. {thread:id=2204216}, {thread:id=2217556}
I had expected these missing parts to be there in the final release, but apparently, there are still some gaps.
So the only option left for the moment would be, as suggested by Etore, to take it from some other 11.2 release.
-Udo
P.S.:
So i can install 11gR2 with a test installation on WIN7 64b without having a license?The OTN license allows you to install any release for evaluation and development purposes.
Edited by: Udo on 27.09.2011 05:56

Similar Messages

  • Does Oracle 11g Express Edition 11.2.0.0 support the impdp utility ?

    Hi,
    We are trying to import an Oracle dump within a Express Edition, without success. We got the error message: ORA-39213: Metadata processing is not available.
    A) Source data base: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    B) Target data base: Oracle Database 11g Express Edition Release 11.2.0.2.0
    Searching for solution led us to following forum entries:
    1. http://kmpdba.wordpress.com/2012/05/02/ora-39213-metadata-processing-is-not-available/ Cause: DBMS_METADATA_UTIL package does not successfully ran. Solution: to install (among others) SQL> @$ORACLE_HOME/javavm/install/initjvm.sql
    2. But: there is no @$ORACLE_HOME/javavm/install/initjvm.sql scrript -> http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html -> Oracle 11g EX does not support java
    Questions:
    a) Does support Oracle 11g EX the impdp utility at all ?
    b) How would it be possible to import the above mentioned dump from (A) into (B) ?
    Thanks in advance,
    Michel

    Sounds like the messing xsl files issue here: Upgrade from XE10 to XE11
    Try
    execute sys.dbms_metadata_util.load_stylesheets;and see if you get the missing xsl files error.
    The XSL files are not distributed with Oracle 11g XE, but seems to be pre-loaded in the default database created by the installer. If you try to create your own database it wont have the stylesheets loaded and you'll need the xsl files to load them up.
    The quick solution will be to copy the 180 xsl files from an Oracle 11.2.0.2 Enterprise to your Oracle 11g installation ($ORACLE_HOME/rdbms/xml/xsl/) and load the stylesheets.

  • XE11: expdp/impdp

    Hello,
    i would like to use expdp and impdp.
    As i installed XE11 on Linux, i unlocked the HR account:
    ALTER USER hr ACCOUNT UNLOCK IDENTIFIED BY hr;
    and use the expdp:
    expdp hr/hr DUMPFILE=hrdump.dmp DIRECTORY=DATA_PUMP_DIR SCHEMAS=HR
    LOGFILE=hrdump.log
    This quits with:
    ORA-39006: internal error
    ORA-39213: Metadata processing is not available
    The alert_XE.log reported:
    ORA-12012: error on auto execute of job "SYS"."BSLN_MAINTAIN_STATS_JOB"
    ORA-06550: line 1, column 807:
    PLS-00201: identifier 'DBSNMP.BSLN_INTERNAL' must be declared
    I read some entries here and did:
    sqlplus sys/******* as sysdba @?/rdbms/admin/catnsnmp.sql
    sqlplus sys/******* as sysdba @?/rdbms/admin/catsnmp.sql
    sqlplus sys/******* as sysdba @?/rdbms/admin/catdpb.sql
    sqlplus sys/******* as sysdba @?/rdbms/admin/utlrp.sql
    I restarted the database, but the result of expdp was the same:
    ORA-39006: internal error
    ORA-39213: Metadata processing is not available
    What's wrong with that? What can i do?
    Do i need "BSLN_MAINTAIN_STATS_JOB" or can this set ro FALSE?
    I created the database today on 24.07. and the next run for "BSLN_MAINTAIN_STATS_JOB"
    is on 29.07. ?
    In the Windows-Version it is working correct, but not in the Linux-Version.
    Best regards

    Hello gentlemen,
    back to the origin:
    'Is expdp/impdp working on XE11'
    The answer is simply yes.
    After a view days i found out that:
    - no stylesheets installed are required for this operation
    - a simple installation is enough
    And i did:
    SHELL:
    mkdir /u01/app > /dev/null 2>&1
    mkdir /u01/app/oracle > /dev/null 2>&1
    groupadd dba
    useradd -g dba -d /u01/app/oracle oracle > /dev/null 2>&1
    chown -R oracle:dba /u01/app/oracle
    rpm -ivh oracle-xe-11.2.0-1.0.x86_64.rpm
    /etc/init.d/./oracle-xe configure responseFile=xe.rsp
    ./sqlplus sys/********* as sysdba @/u01/app/oracle/product/11.2.0/xe/rdbms/admin/utlfile.sql
    SQLPLUS:
    ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;
    GRANT CONNECT, RESOURCE to hr;
    GRANT read, write on DIRECTORY DATA_PUMP_DIR TO hr;
    expdp hr/hr dumpfile=hr.dmp directory=DATA_PUMP_DIR schemas=hr logfile=hr_exp.log
    impdp hr/hr dumpfile=hr.dmp directory=DATA_PUMP_DIR schemas=hr logfile=hr_imp.log
    This was carried out on:
    OEL5.8, OEL6.3, openSUSE 11.4
    For explanation:
    We did the style-sheet-installation for XE10 to have the expdp/impd functionality.
    Thanks for your assistance
    Best regards
    Achim
    Edited by: oelk on 16.08.2012 10:20

  • IPod no longer works with car stereo since upgraded MBA & iTunes

    My iPod classic has worked just fine connected to my car stereo since i bought it last june. I just bought a new Macbook Air (OS 10.7.3) & installed ITUNES 10.6.1. After I synched my ipod for the first time its recognised by the car but i get a "can't read data" message. I re-formatted my ipod but its exactly the same. Do you think its the upgrade- or the cable? Has anyone else found a bug with this version of Itunes or the OS? I have my doubts a cable would make the difference, and my old ipod nano that i haven't synched for a while works fine.

    If standalone works fine, then, most likely the 30 pin connect may have some dirt or lint, prevent data transfer.
    You can try to blow it clean, if you have a can of compressed air or gas.
    Alternatively you can connect it to the car stereo and do the RESET, while connnected.as follows
    Toggle the Hold switch, make sure you dont see the red mark when you do the  next step
    Reset the iPod -> Press Menu and Center button simultaneously for about 10 secs or till the Apple Logo comes ON
    Then release the buttons
    Select your preferred language.
    Here is the Apple support Article on the 5Rs
    http://www.apple.com/support/ipod/five_rs/classic/
    The Reset sequence may send a signal to the Car stereo to do the right thing

  • Brand new IPOD Touch Apps no longer work after upgrading software

    I got a Ipod touch for my wife Today at Wal-Mart. I brought it home, connected to wifi and downloaded some apps and also payed for some. They all worked fine. Then I connected to computer to transfer songs. It told me to upgrade the Ipod software so i Did. After it restarted none of the downloaded apps work anymore. I have read MANY MANY MANY discussions on this and there is no fix. I am not wiping out all the songs and reload everything all over again. It will take forever. My wifes BD is Friday and this is making me so mad after I just dropped $300 on this thing. APPLE!!! Where is the fix? I deleted the apps and reinstalled they still don't work. Anybody got this figured out? I am getting ready to get my money back and tell everyone to avoid buying ipod until they get this upgrade bug fixed.
    Message was edited by: 2009 IPOD TOUCH

    I have the same problem. Brand new two days ago. I synched the touch with Itunes but wasn't hooked up to the internet at the time so didn't do the software upgrade right away. Then I downloaded about a dozen apps (free and paid) with wifi directly to the touch. They all worked fine. Then I plugged it back in to Itunes and had it upgrade it to 3.1.2. It locked up Itunes several times since then and the downloaded apps no longer work (they start to open then disappear).
    The problem is, no one is listening to this problem (including Anna above)! Everyone says "just do a hard reboot, or restore to factory settings, reload the apps, etc." I've tried all the standard troubleshooting but none of it fixes this. It sure seems to me this is a problem with 3.1.2 but Apple isn't helping out here. Where are you APPLE? Use some of those outrageous profits you're making to fix the problem you have created. Here's $300 of my hard earned dollars pretty much down the drain.
    Message was edited by: IPatronius

  • Ipod touch can no longer connect to XP following Apple upgrade, HELP !

    This is a nightmare. My son has an ipod touch (8gb)purchased a couple of months, and it's been fine until a couple of days ago. I downloaded some music for him, and just about to synch when Apple informed me on itunes of a software upgrade, so naturally I did this. However, it could not complete it saying there was a problem installing the hardware. The ipod then had a permanent picture of a usb cable pointing towards the itunes logo. Itunes no longer recognises this ipod or my own ipod as a device.
    I'm not a techhie expert, but I generally know my way around computers, however I could not resolve this.
    I called the Apple technical support desk, where I spent 1 hour 45 minutes with 2 different advisors who could not resolve this. We installed and re-installed various components from drivers to itunes to anti virus software, however nothing could change. There was simply no recognition of the ipod at all when connected.It does give a pop up message to restore the ipod, however you can't actually click on the restore button because to have to get rid of the pop up message first, then the screen with the restore facility disappears.
    Windows xp is continually popping up a message saying " FOUND NEW HARDWARE WIZARD There was a problem installing this hardware. Apple Mobile USB driver. An error occured during the installation of the device. The system cannot find the file specified."
    You then have to click on finish, however the message keeps coming back. We kept going round and round in circles with the technical support people, where it was left that I should start removing programmes on my computer to see if any of those are causing a problem. I have had the same spyware for the last 12 months now and never had a problem before, nor any other programmes.
    I booked a genius appointment at my local Apple store today where the assistant reset the ipod to factory settings so it could at least work. I explained the situation, however 15 minutes was never going to be long enough to look into it, and a restore was all they did. Obviously all of my programmes were lost, however when I got home and plugged it back into the computer again, it could not be recognised by itunes and i got the same pop up message. Luckily we have not spent alot on downloads, however my son has lost his music now and it cannot be connected or upgraded. It's under guarantee however a software upgrade by Apple has totally messed my computer up. I really don't know who to turn to now as both the service support and store has not rectified this, something I feel has been caused by Apple.
    Any advice is appreciated. Thanks

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network       
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Just upgraded HDD, now how do I get my data back??

    I just upgraded my stock 60GB HD to a 120GB Seagate Momentus 5400 ($100). This is what I did:
    1. Before removing the 60GB HD, i created a read-only disk image of my HD(with Disk Utility on the OSX install CD). I put this disk image on my USB external hard drive.
    2. Physically replaced the 60GB with the 120GB.
    3. Now, I boot up the computer to the OSX install CD (since it is a blank new HD). I open up Disk Utility on the install CD, and try to restore the image i created (on my external USB HD) to my new 120GB internal drive. I am able to select the image to restore, but cannot select my internal drive as the destination.
    I have all sorts of music, movies, applications...etc. on my old HD that I want on my new drive.
    I want to have my computer be identical to before I upgraded, just with a larger HD. Is this possible?
    I have tons of external USB HD space to use if needed, and I also still have the old HD... if I need to create a different kind of disk image or something.
    Please help!
    Macbook 2.0GHz (White)   Mac OS X (10.4.8)  

    I did this already. I failed to mention it in my first post. I have my HD "111.8 GB Seagate..." and underneath it: "Macintosh HD". Still can't restore an image to the "Macintosh HD" volume.

  • BSI Tax Factory Upgrade 8.0 to 9.0

    Hi BSI,
    We are upgrading our BSI tax Factory from 8.0 to 9.0. We are running:
    Windows 2008 R2
    SQL Server version 10.50.1777
    I'm able to connect to the database using login TF90 through SQL Server Management Studio, the ODBC Data Source Administrator and the TaxFactory Client is connecting fine too.
    But when running report RPUBTCU0 from the SAP system , its caught under ABAP dump-> SYSTEM FAILURE.
    Looking at the error.txt.
    =Running connect_db_taxfactory
    BSI dataset                  -> 101
    ConnectToDataSource... Starting 
    ConnectToDataSource...Succeeded 
    Connect to Dataset Error string =  101
    ConnectToDataSet... Starting 
    ConnectToDataSet...failed 
    Error String ->  4020 - THERE IS NO VALID LICENSE INSTALLED FOR HOST HCA-MSAP68:UNKNOWN.
    =RFC error
    operation/code connect_db_payroll_tax_calc_us
    key RFC_ERROR_SYSTEM_FAILURE
    status
    message See RFC trace file or SAP system log for more details
    internal status .
    The machine key is successfully installed.
    Please guide what we are missing here.
    Please contact me at +60123675076 (malaysia) at anytime.
    Thanks.
    Thava

    We managed to solve this by changing tf90server.bat file.
    from - I:
    CD I:\BSI\Server9.0
    tf90server.exe %*
    To - I:\BSI\Server9.0\tf90server.exe %*
    Now we could run report RPUBTCU0 without error.
    Thanks.
    Thava

  • Upgrade to ERp6 phase STARTSAP_NBAS error: DDIC login fails

    Hi
    During an upgrade from 4.7  to ERP6  I get the following error
    message in phase STARTSAP_NBAS:
    SYSTEM START failed, code -2
    -2: the test rfc did not work.
    Try to log on to the system with user DDIC
    When I try to log on to the system as user DDIC, I get the following
    error message:
    DB-Error -0
    SAP* can log in .The password I submit is correct. I have not changed this password at
    any time.
    Any ideas are most welcome

    Hi,
    DB-Error -0 indicate problem with kernel, try to upgrade kernel.
    check Note 760175 - 6.20: Logon not possible (after DB export or system copy)
    regards,
    kaushal

  • Lock-ups on MCS-7825 after after OS Upgrade to 2000.4.4aSR6

    About 3 weeks ago, I upgraded some MCS-7825 & MCS-7835 servers to 2000.4.4aSR6. Since then, one of the 7825's has been rebooting on its own almost twice a day. The other 7825 and 7835s are operating fine.
    Anybody else encountering a problem with this? I see in the release notes, some BIOS and firmware updates are included for the 7825, and am suspecting this is the problem.

    My problems actually turned out to be hardware, I think. I reviewed the logs and found out it had been happening for several months.

  • Can I upgrade my laptop?

    I have the Satellite X205-S7483  w/ 2gb ram.
    Can I add more memory and can I possibly upgrade the video card? I have a Geoforce 8700m gt 256MB
    Thanks!

    You have a User's Manual right there on your desktop.  Go to Start/All Programs/My Toshiba/User's Guide. Or you can click on Download at the top of this page, enter the model info requested and you'll find the User's Guide and lots of other info for your model.
    C.B.
    Toshiba Sat. C75D-B7260 Win 8.1 64 Bit--Toshiba Sat. L775D-S7132 Win 7 HP SP1 64 Bit and Win 10 PRO Technical Preview--Toshiba Sat. L305-S5921 Win Vista SP2 32 Bit

  • Graphic Card Upgrade for HP-Pavilion dv6t-7000

    Hello. I have the HP Pavlilion dv6t-7000 with the NVIDIA GT650M 1GB grpahics card. Now because of my work, i need to extends my graphic card memory. So I want to ask if my laptop is possible to upgrade to GT650M 2GB card.
    My product number is A5F74AV. And my wannary is end on 8/24/2013.
    And this laptop is a gift of my aunt from USA, and I'm living in Viet Nam now. So if yes, can HP Vietnam do the upgrade for me? My aunt's family is very busy so I can't resend my laptop and ask them to return to you.
    Thank you very much!

    Hi:
    The only way to upgrade the video card in your notebook is to replace the entire motherboard which would cost as much as buying a new notebook with better graphics.
    If you had HP do the upgrade, it would probably cost more than buying 2 notebooks with better graphics than yours.

  • Voice Memos Issues After IOS 8 Upgrade

    After upgrading to IOS 8 on my iPhone 5s, the majority of my voice memos are missing and the ones that remain no longer have titles or even play back on my phone.  Any ideas?
    Thanks.

    I was able to recover my voice memos, though the original titles are gone.
    I opened my Voice Memos app like everyone else and I saw each memo quickly deleting and acting glitchy. I then connected my iPhone to my macbook so I could attempt to restore the backup I had made before the ios8 update. It said it couldn't be done because there wasn't enough room. However, when I opened my memos app again, the voice recordings were there! I can't verify if it's all of them but I'm grateful I was able to recover some.
    I use this app to record lyrics on the go and I'd really like Apple to step up and fix this.

  • NULL and Unspecified in Dashboard prompts after upgrading 10g to 11g OBIEE

    Hi All,
    We are working on OBI upgradation project from 10g to 11.1.1.6.5. We are facing one issue in Dashboard prompt level. If we can create Dashboard prompt on a column, its giving "NULL", "Unspecified" additionally. But, in 10g there are no extra values.
    And the 10g, 11g instances are pointing to the same database and there are no NULL, Unspecified values in Database level.
    Through some blogs and articles we found some solutions n are below.
    To remove NULL:
    -->Go to the Physical Column properties in Physical Layer and Disable the Nullable option by uncheck the box.
    -->Go to the Database Features in Physical Layer and disable value to NULL_SUPPORTED.
    -->Go to Edit Dashboard Prompt, in Choice List Values drop-down list select SQL Results.
    To remove Unspecified:
    -->Go to Edit Dashboard Prompt, in Choice List Values drop-down list select SQL Results, then write the SQL statements as columnname is not equals to "Unspecfied" ( In this way we can able to remove Null's also.)
    -->Go to Content tab of LTS, in Where clause write an SQL query to restrict Unspecified values.
    Note: CHeck with ETL, because if they maintains the Default value is Null when the Datatype is Character and they can maintain 9999 or #### if the datatype is Numeric. And check the Physical query and debug it carefully.
    But, we have very big Repository and we have huge no.of Dashboard prompts. So, its not an easy thing to manage by using above solutions. Correct me if there are any mistakes in above.
    Any ideas on this...?
    Appreciate your help on this..!
    Thanks in Advance,
    Raghu Nagadasari

    Hi Frnds,
    As of now, i found the only solution for the above mentioned issue that how to avoid NULL in dashboard prompt level:
    Go to the Physical Column properties in Physical Layer and Disable the Nullable option by uncheck the box.
    We have done this manually for all tables.
    Appreciate if u have any other ideas.!!
    Thanks,
    Raghu Nagadasari

  • I have upgraded from 3.5 to 4.1 , it downloads to the folder but still uses the 3.5

    I'm getting an urgent to update on my screen so I have updated from 3.5 to 4.1 , it has down loaded to the firefox folder but still brings up the old firerfox.
    I have downloaded it 3 times and rebooted around 6 times but still the same screen telling me to upgrade as the older version is not now protected.
    Kind Regards
    Dennis

    It looks that the update wasn't successful because your "More system details" list still shows a Firefox 3.5.19 version.
    If there are problems with updating then best is to download the full version and uninstall the currently installed version.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

Maybe you are looking for

  • Any ideas? Boot troubles on a MS-6380

    The system posts fine and the LED lights on the MB come up all green, yet whenever I try to boot up the system hangs. When I try to boot from the HD, it tries to load windows and eventually hangs up. Hangs up in safe mode and normal mode. When I try

  • Problem with Smart Albums in iPhoto 5

    I have created a number of Smart Albums using 2 criteria: a selected date range and that the keyword is not "icons". Every time I close iPhoto, the 2nd criteria seems to get reversed so that the only photos in the album are the ones that DO have the

  • Music auto start on Bluetooth iOS

    I have experienced a problem with Music on my iPhone (4,5 & 6) auto starting when I connect it to my Bluetooth device (Acura TL, Bose speakers, etc.).  This is not isolated to the car and appears to be an issue with my iPhone and not the Bluetooth de

  • Any way to restore music and photos if iPod when all erased due to interrupted sync?

    is there any way to restore music and photos on iPod when all erased due to interrupted sync?

  • HELP - single user terminated, restarting

    my 17 inch powerbook is about 2 years old, froze so I restarted it, the normal grey apple screen comes up & then switches to a black screen with this flashing text? dyld: -sh undefined symbols: - environ Oct 25 21:32:09 init: single user shell termin