Is XML DB versions tied to RDBMS versions?

Hi,
Can new functionality of XML DB be deployed to older versions of a database? I currently have RDBMS version of 92060 (yes, old, and yes it's Oracle EBS)
Is it possible to install 10g XML DB functionality into this database? without first upgrading to 10g?
Regards,
Alex

9.2.0.6.0 can provide 9.2.0.6.0 XML DB functionality. If XML DB is not enabled it can be enabled by running catqm. However since XML DB functionality is native to the database and tightly integrated with the kernel you cannot install functionality that was introduced in a later release of the database.

Similar Messages

  • Optimizer bug in RDBMS versions 9.2.0.7.0 and 9.2.0.8.0

    This listing below demonstrates a bug in the Oracle optimizer that causes incorrect results to be returned after a table is analyzed. Rule based optimizer gives correct results.
    Under cost-based optimization the predicate includes a condition from a check constraint on a nullable field. When the value of this field is NULL the record is excluded from the results even though that record does not violate the check constraint.
    I have verified that this bug exists on both RDBMS versions 9.2.0.7.0 and 9.2.0.8.0.
    ORA92080>
    ORA92080>DROP TABLE test1;
    Table dropped.
    ORA92080>DROP TABLE test2;
    Table dropped.
    ORA92080>
    ORA92080>CREATE TABLE test1
    2 ( id     NUMBER NOT NULL
    3 , date1     DATE NOT NULL
    4 , date2     DATE
    5 );
    Table created.
    ORA92080>
    ORA92080>ALTER TABLE test1
    2 ADD ( CONSTRAINT test1_chk_date1
    3      CHECK ( date1 > TO_DATE( '01-JAN-1960', 'DD-MON-YYYY' ) )
    4      );
    Table altered.
    ORA92080>
    ORA92080>ALTER TABLE test1
    2 ADD ( CONSTRAINT test1_chk_date2
    3      CHECK ( date2 >= date1 )
    4      );
    Table altered.
    ORA92080>
    ORA92080>/* date2 is NULL */
    ORA92080>INSERT INTO test1 VALUES ( 1, TO_DATE('16-JUN-2005 11:30:01', 'DD-MON-YYYY HH24:MI:SS'), NULL );
    1 row created.
    ORA92080>
    ORA92080>/* date2 is filled in */
    ORA92080>INSERT INTO test1 VALUES ( 2
    2                     , TO_DATE('16-JUN-2005 11:30:01', 'DD-MON-YYYY HH24:MI:SS')
    3                     , TO_DATE('16-JUN-2005 11:40:01', 'DD-MON-YYYY HH24:MI:SS')
    4                );
    1 row created.
    ORA92080>
    ORA92080>CREATE TABLE test2 AS
    2 SELECT * FROM test1
    3 WHERE 1=2;
    Table created.
    ORA92080>
    ORA92080>ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYYY HH24:MI:SS';
    Session altered.
    ORA92080>
    ORA92080>SELECT * FROM test1;
    ID DATE1 DATE2
    1 16-JUN-2005 11:30:01
    2 16-JUN-2005 11:30:01 16-JUN-2005 11:40:01
    2 rows selected.
    ORA92080>SELECT * FROM test2;
    no rows selected
    ORA92080>
    ORA92080>/*
    DOC>| Since no statistics were gathered, rule-based optimizer will be used.
    DOC>| The correct count of two is returned.
    DOC>*/
    ORA92080>SELECT COUNT(*) FROM test1 t
    2 WHERE EXISTS
    3      ( SELECT 'X'
    4      FROM ( SELECT id, date1
    5                FROM test1
    6           MINUS
    7           SELECT id, date1
    8                FROM test2
    9           ) i
    10      WHERE i.id = t.id
    11           AND i.date1 = t.date1
    12      );
    COUNT(*)
    2
    1 row selected.
    ORA92080>
    ORA92080>EXPLAIN PLAN FOR
    2 SELECT COUNT(*) FROM test1 t
    3 WHERE EXISTS
    4      ( SELECT 'X'
    5      FROM ( SELECT id, date1
    6                FROM test1
    7           MINUS
    8           SELECT id, date1
    9                FROM test2
    10           ) i
    11      WHERE i.id = t.id
    12           AND i.date1 = t.date1
    13      );
    Explained.
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | | | |
    | 1 | SORT AGGREGATE | | | | |
    |* 2 | FILTER | | | | |
    | 3 | TABLE ACCESS FULL | TEST1 | | | |
    | 4 | VIEW | | | | |
    | 5 | MINUS | | | | |
    | 6 | SORT UNIQUE | | | | |
    |* 7 | TABLE ACCESS FULL| TEST1 | | | |
    | 8 | SORT UNIQUE | | | | |
    |* 9 | TABLE ACCESS FULL| TEST2 | | | |
    Predicate Information (identified by operation id):
    2 - filter( EXISTS (SELECT 0 FROM ( (SELECT "TEST1"."ID"
    "ID","TEST1"."DATE1" "DATE1" FROM "TEST1" "TEST1" WHERE
    "TEST1"."DATE1"=:B1 AND "TEST1"."ID"=:B2)MINUS (SELECT "TEST2"."ID"
    "ID","TEST2"."DATE1" "DATE1" FROM "TEST2" "TEST2" WHERE
    "TEST2"."DATE1"=:B3 AND "TEST2"."ID"=:B4)) "I"))
    7 - filter("TEST1"."DATE1"=:B1 AND "TEST1"."ID"=:B2)
    9 - filter("TEST2"."DATE1"=:B1 AND "TEST2"."ID"=:B2)
    Note: rule based optimization
    28 rows selected.
    ORA92080>
    ORA92080>BEGIN
    2 DBMS_STATS.GATHER_TABLE_STATS
    3      ( ownname     => USER,
    4      tabname     => 'TEST2',
    5      estimate_percent => DBMS_STATS.AUTO_SAMPLE_SIZE,
    6      cascade     => TRUE
    7      );
    8 END;
    9 /
    PL/SQL procedure successfully completed.
    ORA92080>
    ORA92080>/*
    DOC>| This is the identical query as above. With statistics gathered, the
    DOC>| cost-based optimizer is used. An incorrect count of 1 is returned.
    DOC>*/
    ORA92080>SELECT COUNT(*) FROM test1 t
    2 WHERE EXISTS
    3      ( SELECT 'X'
    4      FROM ( SELECT id, date1
    5                FROM test1
    6           MINUS
    7           SELECT id, date1
    8                FROM test2
    9           ) i
    10      WHERE i.id = t.id
    11           AND i.date1 = t.date1
    12      );
    COUNT(*)
    1
    1 row selected.
    ORA92080>
    ORA92080>/* Using rule-based optimizer, the result is correct. */
    ORA92080>SELECT /*+ RULE */ COUNT(*) FROM test1 t
    2 WHERE EXISTS
    3      ( SELECT 'X'
    4      FROM ( SELECT id, date1
    5                FROM test1
    6           MINUS
    7           SELECT id, date1
    8                FROM test2
    9           ) i
    10      WHERE i.id = t.id
    11           AND i.date1 = t.date1
    12      );
    COUNT(*)
    2
    1 row selected.
    ORA92080>
    ORA92080>EXPLAIN PLAN FOR
    2 SELECT COUNT(*) FROM test1 t
    3 WHERE EXISTS
    4      ( SELECT 'X'
    5      FROM ( SELECT id, date1
    6                FROM test1
    7           MINUS
    8           SELECT id, date1
    9                FROM test2
    10           ) i
    11      WHERE i.id = t.id
    12           AND i.date1 = t.date1
    13      );
    Explained.
    ORA92080>
    ORA92080>SET ECHO OFF
    Wrote file reset.sql
    Session altered.
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 1 | 44 | 11 |
    | 1 | SORT AGGREGATE | | 1 | 44 | |
    |* 2 | HASH JOIN SEMI | | 1 | 44 | 11 |
    | 3 | TABLE ACCESS FULL | TEST1 | 82 | 1804 | 2 |
    | 4 | VIEW | | 1 | 22 | 8 |
    | 5 | MINUS | | | | |
    | 6 | SORT UNIQUE | | 1 | 31 | |
    |* 7 | TABLE ACCESS FULL| TEST1 | 1 | 31 | 2 |
    | 8 | SORT UNIQUE | | 1 | 22 | |
    |* 9 | TABLE ACCESS FULL| TEST2 | 1 | 22 | 2 |
    Predicate Information (identified by operation id):
    2 - access("I"."ID"="T"."ID" AND "I"."DATE1"="T"."DATE1")
    7 - filter("TEST1"."DATE1">TO_DATE(' 1960-01-01 00:00:00',
    'syyyy-mm-dd hh24:mi:ss') AND "TEST1"."DATE2">TO_DATE(' 1960-01-01
    00:00:00', 'syyyy-mm-dd hh24:mi:ss'))
    9 - filter("TEST2"."DATE1">TO_DATE(' 1960-01-01 00:00:00',
    'syyyy-mm-dd hh24:mi:ss'))
    Note: cpu costing is off
    27 rows selected.
    ORA92080>/*
    DOC>| Workaround: change the check constraint on the test1 table that is causing the problem.
    DOC>*/
    ORA92080>ALTER TABLE test1
    2 DROP CONSTRAINT test1_chk_date2;
    Table altered.
    ORA92080>
    ORA92080>ALTER TABLE test1
    2 ADD ( CONSTRAINT test1_chk_date2
    3      CHECK ( date2 >= date1 OR date2 IS NULL )
    4      EXCEPTIONS INTO exceptions
    5      );
    Table altered.
    ORA92080>
    ORA92080>SELECT COUNT(*) FROM test1 t
    2 WHERE EXISTS
    3      ( SELECT 'X'
    4      FROM ( SELECT id, date1
    5                FROM test1
    6           MINUS
    7           SELECT id, date1
    8                FROM test2
    9           ) i
    10      WHERE i.id = t.id
    11           AND i.date1 = t.date1
    12      );
    COUNT(*)
    2
    1 row selected.
    ORA92080>
    ORA92080>EXPLAIN PLAN FOR
    2 SELECT COUNT(*) FROM test1 t
    3 WHERE EXISTS
    4      ( SELECT 'X'
    5      FROM ( SELECT id, date1
    6                FROM test1
    7           MINUS
    8           SELECT id, date1
    9                FROM test2
    10           ) i
    11      WHERE i.id = t.id
    12           AND i.date1 = t.date1
    13      );
    Explained.
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 1 | 44 | 11 |
    | 1 | SORT AGGREGATE | | 1 | 44 | |
    |* 2 | HASH JOIN SEMI | | 1 | 44 | 11 |
    | 3 | TABLE ACCESS FULL | TEST1 | 409 | 8998 | 2 |
    | 4 | VIEW | | 20 | 440 | 8 |
    | 5 | MINUS | | | | |
    | 6 | SORT UNIQUE | | 20 | 440 | |
    |* 7 | TABLE ACCESS FULL| TEST1 | 20 | 440 | 2 |
    | 8 | SORT UNIQUE | | 1 | 22 | |
    |* 9 | TABLE ACCESS FULL| TEST2 | 1 | 22 | 2 |
    Predicate Information (identified by operation id):
    2 - access("I"."ID"="T"."ID" AND "I"."DATE1"="T"."DATE1")
    7 - filter("TEST1"."DATE1">TO_DATE(' 1960-01-01 00:00:00',
    'syyyy-mm-dd hh24:mi:ss'))
    9 - filter("TEST2"."DATE1">TO_DATE(' 1960-01-01 00:00:00',
    'syyyy-mm-dd hh24:mi:ss'))
    Note: cpu costing is off
    26 rows selected.
    ORA92080>

    Justin,
    Thanks for the reply. I have sent this test case to my DBA who may submit it to Metalink.
    Since I have found and implemented a workaround, I can wait for the next service release. I just thought that this might be of interest to other Oracle users.
    My work-around (buried near the end of my original post) was to modify all check constraints that fit the pattern:
    ( not_nullable_column condition IS TRUE )
    AND ( nullable_column condition IS TRUE )
    To:
    ( not_null_column condition IS TRUE )
    AND ( nullable_column condition IS TRUE OR nullable_column IS NULL )
    Redefining a check constraint in this way prevents it from being used in the optimizer's predicate.
    If someone at Oracle Support wanted to submit code that identifies such potential problem constraints in the data dictionary, that would be great too.
    - Doug

  • I have successfully exported subtitles (XML files) from FC version 7 to FC version 6, by choosing Apple XML Interchange Format Version 4. Now the exported subtitles suddenly read in one long line, at the top, not registering any "Enter" keystrokes.

    I have successfully exported subtitles (XML files) from FC version 7 to FC version 6, by choosing Apple XML Interchange Format Version 4. Now the exported subtitles suddenly read in one long line, at the top, not registering any "Enter" keystrokes. The same happens even if I re-import the XML file into Final Cut Version 7 (from where I exported the subtitles). Any tips on how to fix this?

    You might see if you can bring the xml file into Title Exchange Pro
    http://www.spherico.com/filmtools/TitleExchange/
    It's a great program and the author was very responsive when I had a problem.
    If it reads correctly, you can probably save it back out. 
    If you want to send it to me, I'll see if it opens.
    [email protected]

  • RDBMS Version 8.0.5.0.0  Start시 mount 상태로 있어요.

    alert 로그 파일을 보면 아래와 같이 마지막 부분에 alter database mount 상태로 있습니다..
    db를 mount 후 open 하고 싶습니다.
    방법이 없나요...
    Wed Aug 12 17:47:01 2009
    Shutting down instance (abort)
    License high water mark = 3
    Instance terminated by USER, pid = 9937
    Wed Aug 12 17:50:12 2009
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    LICENSE_MAX_USERS = 0
    Starting up ORACLE RDBMS Version: 8.0.5.0.0.
    System parameters with non-default values:
    tracefiles_public = TRUE
    processes = 150
    event = 10210 trace name context forever, level 2, 10211 trace name context forever, level 2, 10235 trace name context forever, level 1, 10246 trace name context forever, level 2, 7267 trace name errorstack level 4, 3106 trace name errorstack level 4, 10076 trace name context forever, level 1
    shared_pool_size = 128000000
    enqueue_resources = 5000
    nls_language = american
    nls_territory = america
    nls_sort = binary
    nls_date_format = DD-MON-RR
    nls_numeric_characters = .,
    control_files = /d01/oradata/PRD/cntrl01.ctl
    db_block_buffers = 500
    db_block_size = 8192
    log_buffer = 327680
    log_checkpoint_interval = 10000
    db_files = 200
    db_file_multiblock_read_count= 32
    dml_locks = 500
    row_locking = always
    rollback_segments = RBS01, RBS02, RBS03, RBS04, RBS05, RBS06, RBS07
    sequence_cache_entries = 100
    sequence_cache_hash_buckets= 89
    sort_area_size = 256000
    db_name = PRD
    open_cursors = 255
    optimizerundo_changes = TRUE
    optimizer_mode = rule
    utl_file_dir = /usr/tmp, /d01/app/applmgr/1103/common/TMP, /d01/app/applmgr/1103/ja/11.0.28/out
    background_dump_dest = /d01/app/oracle/admin/PRD/bdump
    user_dump_dest = /d01/app/oracle/admin/PRD/udump
    max_dump_file_size = 10240
    core_dump_dest = /d01/app/oracle/admin/PRD/cdump
    aq_tm_processes = 1
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    QMN0 started with pid=8
    Wed Aug 12 17:50:13 2009
    alter database mount

    장애 상황으로 open이 안되는 건지 아니면 startup mount를 통한 startup인지 구분이 필요하겠지만
    만약 장애 상황이 아니라면
    alter database open;
    명령어로 mount 단계에서 open 단계로 넘어갈 수 있습니다.
    만약 장애 상황에 따른 open 불가 상황이라면 장애를 복구하는 방향으로 접근해야 합니다.

  • Native pkg - "Detected [iscc.exe] version 0.0 but version 5.0 is required."

    Hello,
    I'm trying and failing to generate an .exe native package following the instructions in this blog post:
    https://blogs.oracle.com/talkingjavadeployment/entry/native_packaging_for_javafx
    I'm on Windows XP SP3 using the 32-bit versions of the recommended JDK and JavaFX SDK. I have installed Inno Setup version 5.5.1 (although I also tried 5.5.0 and 5.2.3, also without success) and have added iscc.exe to the system path. I'm running an unmodified version of the SwingInterop build.xml included in the javafx-samples-2.2.0-beta bundle. The fx:deploy task, which looks like this:
    <fx:deploy width="960" height="720" includeDT="true"
    nativeBundles="all"
    outdir="${basedir}/${dist.dir}" embedJNLP="true"
    outfile="${application.title}">
    <fx:application refId="swingFXApp"/>
    <fx:resources>
    <fx:fileset dir="${basedir}/${dist.dir}"
    includes="SwingInterop.jar"/>
    </fx:resources>
    <fx:permissions/>
    <info title="Sample app: ${application.title}"
    vendor="${application.vendor}"/>
    </fx:deploy>
    skips the .exe bundler with this error message: "Detected [iscc.exe] version 0.0 but version 5.0 is required."
    Thanks for any advice or assistance.
    -JP

    This is working for me now. I believe what happened was that I had launched the IDE in which I was running the ant build script prior to installing ISCC, so the IDE wasn't picking iscc.exe up off the system path. After restarting my IDE, everything works great.
    A big thanks to you, Igor, for going above and beyond to help me out, even emailing me directly to do so.
    Keep up the great work guys.
    -JP

  • The latest upgrade is not compatible. it says error run platform 17.0.1 is not compatible with min version 17.0 max version 17.0

    the latest upgrade is not compatible and is not allowing me to open firefox. the error message says run error platform 17.0.1 is not compatible with min version >17.0 max version <17.0

    hello paisley157, this error might be caused by security programs such as zone alarm - please temporarily disable those programs for the following procedure:
    *download the full firefox setup file from getfirefox.com
    *uninstall firefox on the machine (but don't chose to delete your custom files & settings in the uninstaller!)
    *manually delete all remaining files in the firefox program folder, which usually resides in ''C:\Program Files (x86)\Mozilla Firefox\''
    *reinstall firefox

  • WHEN RYING TO OPEN GETTING MESSAGE PLATFORM VERSION 8.0, MIN VERSION 7D MAX VERSION 7D

    ''duplicate of https://support.mozilla.com/en-US/questions/903944''
    WHEN I TRY TO OPEN FIREFOX AS AN INTERNET BROWSER I GET A MESSAGE PLATOFORM VERSION 8.0 NO COMPATIBABLEW WITH MIN VERSION 7.D MAX VERSION 7.D

    I suggest you download a fresh copy from getthunderbird.com and reinstall. I do not know what has caused it, but a reinstall should refresh the files and fix it.

  • Ever since Firefox 3, I have never been able to upgrade easily. I always get a message telling me I am replacing my version with an older version. How is that possible?

    When I download the newest version (this time it was 5, but I had the same problem with 4) and I drag the Firefox Logo to my Applications folder in Mac OSX (10.6.7) I get a message saying I am replacing my version with an OLDER VERSION. How can this be? When I check the Firefox "About" tab, it tells me I am still using 4, so how, if I just dragged 5 to my Applications folder, can I be replacing 4 with an "older" version? Truth be told, my Firefox has never functioned properly since 4, and now I have little "Firefox hard drive icons" all over my desktop. What happened?
    I am having trouble with Comcast's XFINITY and they told me to update and maximize my browser. I don't seem to be able to do that. I just downloaded Firefox 5.0, but my version still says 4.1.

    When I download the newest version (this time it was 5, but I had the same problem with 4) and I drag the Firefox Logo to my Applications folder in Mac OSX (10.6.7) I get a message saying I am replacing my version with an OLDER VERSION. How can this be? When I check the Firefox "About" tab, it tells me I am still using 4, so how, if I just dragged 5 to my Applications folder, can I be replacing 4 with an "older" version? Truth be told, my Firefox has never functioned properly since 4, and now I have little "Firefox hard drive icons" all over my desktop. What happened?
    I am having trouble with Comcast's XFINITY and they told me to update and maximize my browser. I don't seem to be able to do that. I just downloaded Firefox 5.0, but my version still says 4.1.

  • HT4623 I having difficulty in updating my iphone 3GS software from version 4.1 to version 5.1. I cannot update through my iphone & through itunes. Each time I tried a message appeared saying iphone software server cannot be contacted. Please, help

    I am having difficulty in updating my iphone 3GS software from version 4.1 to version 5.1. I tried using my phone but cannot find the update software button even when I have gone through the right process by tapping SETTING, then GENERAL, yet could not find Update Software button. I mean the update Software button is not seen there.
    I tried using itunes, yet no way. Each time I connect my iphone to my laptop itunes software comes up automatically and alerts me that a newer version of software for my iphone is available, It usually gives me the option of Download & Install or Download Only. Whichever of the option I click a message will always appear telling me that the iphone update server could not be contacted, then asking me to make sure that my network settings are correct and active or try again latter. Sometimes, when click on the Update button on my itune software. It will display an error has occured.
    I have even tried to Restore iphone from itunes, yet the problem  keep repeating itself.
    Can anyone help me?

    Dear Tim,
    I saw your message. Below are the problems:
    Whenever I connect my iphone 3GS to my PC through a USB. My itunes software comes up automatically.
    1. After that a message appears from the itunes that states that 'itunes could not connect to the itunes store, an unknown error cccured (306).
    2. After the above, an alert message comes up which states that A new iphone software version 5.1 is availlable for my iphone. It then states would you like to download it and update your iphone now? With the options buttons as Cancel or Download and Update or Download Only. Whenever I clicked on Download and Update or Download Only, the next message that comes up is that The iphone Software Update Server Could not be Contacted and suggest make sure your network setting are correct and active or try again later.
    The above is the challenges I am facing now.

  • I am running Windows 7  and trying to update to iTunes version 10.5 (from version 10.3.1.55) and I keep getting the following error message, 'Error occurred while installing the updates. If the problem persists, choose Tools Download Only and try instal

    I am running Windows 7 home edition and trying to update to iTunes version 10.5 (from version 10.3.1.55) and I keep getting the following error message, ‘Error occurred while installing the updates. If the problem persists, choose Tools > Download Only and try installing manually’ which I do only to have the same error message pop up.

    Try updating your iTunes using an iTunesSetup.exe (or iTunes64Setup.exe) installer file downloaded from the Apple website:
    http://www.apple.com/itunes/download/

  • HT1444 how can I upgrade my macbook from 10.5.8 version to the latest version

    how can I upgrade my macbook from OS X 10.5.8 version to the latest version?

    Start by checking if you can run Snow Leopard:
    Requirements for OS X 10.6 'Snow Leopard'
    http://support.apple.com/kb/SP575
    Whilst Apple have withdrawn Snow Leopard from their stores, you can still get it from Apple by calling 1-800-MY-APPLE (if you are in the USA) and they will supply the SL DVD for $20 for a single user, or $30 for a family pack that covers up to 5 Macs.  You can also purchase the code to use to download Lion from the same number (Lion requires an Intel-based Mac with a Core 2 Duo, i3, i5, i7 or Xeon processor and 2GB of RAM, running the latest version of Snow Leopard), or you can purchase Mountain Lion from the App Store - if you can run that:
    http://www.apple.com/osx/specs/
    If you are outside the US call your national Apple Helpline:
    http://support.apple.com/kb/HE57
    If you're in the UK, use this number: 0871 508 4400
    When you have installed it, run Software Update to download and install the latest updates for Snow Leopard.
    To use iCloud you have to upgrade all the way to Mountain Lion:
    http://support.apple.com/kb/HT4759

  • How to install P6 version 6.0 & P6 version 7 on the same PC

    HI All
    I am trying to install P6 version 6.0 & P6 version 7 on the same computer, but only the recent installation works.
    If I try to repair one of the version installations, the other does not work.
    Some body please advise.
    Many thanks
    Rikesh

    The reason is,
    The key registry entries are common and shared by All Client Versions on your machine and not separate for each installation.
    Even if you being an expert find a method of running multiple versions, the chances of having problems in future are very high.
    Note:
    Oracle Primavera may not provide full support in case something goes wrong on a machine having multiple P6 client nstallations.
    Jawad
    Novo Rail, Sydney

  • I've just brought some video from itune, but realised the I should have brought the SD version instead of HD version as my iPad didn't have enough storage. Can I change that from HD to SD?

    I've just brought some video from itune, but realised the I should have brought the SD version instead of HD version as my iPad didn't have enough storage. Can I change that from HD to SD?
    Does it mean that I can't watch it if I cannot download it?

    this helps. check it out! http://support.apple.com/kb/ht3209

  • HT4972 I am using iphone 3g and it is having currently IOS 4.1 version,till what IOS version can i upgrade ? please help me many of my apps are not working esp whatsapp.

    am using iphone 3g and it is having currently IOS 4.1 version,till what IOS version can i upgrade ? please help me many of my apps are not working esp whatsapp.

    iOS 4.2.1 is the latest version of iOS for the 3G.
    Facebook and Whatsapp both require 4.3 or higher.
    If you want to use those apps, either use the old version that should be in your iTunes library or upgrade the hardware to a 3GS or newer device.

  • Hi, i try to migrate the HSC0 from version 6.1 to version 7.1 HELP !!!

    Hi, i try to migrate the HSC0 from version 6.1 to version 7.1 and take this opportunity to consult on the installation of HSC0 where the PARMLIB member LKEYINFO (LKEYDEF) Product for this new version V 7.1 is telling me no longer supported, please I would like to confirm if this is so, and where i set the license application for this new version.
    SLS1511I LKEYDEF DSN('SYS3.ORA.ELS.V700.TGT.VEN1.PARMLIB(-
    SLS1511I LKEYINFO)')
    SLS4639I LKEYDEF COMMAND IS NO LONGER SUPPORTED

    Hi;
    Is it related with Configuring and Managing SMC? If yes review:
    http://docs.oracle.com/cd/E21395_02/en/E28330_02/E28330_02.pdf
    Regard
    Helios

Maybe you are looking for

  • Without loops how can i read data from associative Array??

    Hi all, I am facing scenario like... i need to read data from associative array  without using loops is it possible, CREATE OR REPLACE PACKAGE BODY test_pkg IS     TYPE t1 IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;    -- in array we can expect more

  • Certification Exam content  clarification - Message mapping patterns

    I was going through the Exam content for  SAP NetWeaver´04 - Exchange Infrastructure & Integration  Dev.Cons. Link Check out this part - " 4. Mapping (++) Concepts / Overview Test / Debug Environment Standard functions User-defined Functions Message

  • Extenal component not rendering file links properly

    Hi Adobe CQ expert, We need to include an external web app (based on asp) into our new CQ website. The asp web app is a search engine which searches another internal document database and returnes a list of files such as powerpoints, pdfs etc. These

  • Using JavaFX directly in Java without scripting

    Group group = new Group(); group.set$translateX(this.translateX); group.set$translateY(this.translateY);How can I now set the content of the group for example a rectangle and a text? Has anybody an idea?

  • J2SE to J2EE, beginning and need help

    I am a J2SE developer and I need to learn J2EE. I am trying to figure out how to compile .java files that I write that use J2EE such as servlets. I am using eclipse and Textpad but I can't get either program to recognize J2EE classes. Is this possibl