ORA-03127 : no new operations allowed until active operation ends

Hi people,
[9.2.0.4.0 on Windows 2003]
Anyone else getting this error on an attempt to register an XSD?
This is a recent change in behaviour but I can't isolate why...
Thanks,
Lachlan

Never seen this one...

Similar Messages

  • Error ORA-03127: no new operations allowed until the active operation ends

    I have a function that retrieves some values for all the cutomers
    with all different types,and then concatenates all those values
    (format in XML ) and return the concatenated value as clob.
    vClob1 & vAllClob is Clob type.
    My function:
    for recCustomer in CustCursor
    begin
    cust := recCustomer .name;
    vClob1 := ...;--(manipulated using select statement)
    for recType in TypeCursor
    begin
    typ := recType.value;
    vClob1 := vClob1 || ...;--(manipulated using select statement)
    end
    vAllClob := vAllClob || vClob1;
    vClob1:='';
    end
    executing ,it gives an error
    ORA-03127: no new operations allowed until the active operation ends
    if the statement
    vAllClob := vAllClob || vClob1;
    is commented it does not give an error
    The output of each vClob1 is got correctly as expected
    value of vClob1 when loop executed first time =
    {color:#c0c0c0}{color:#999999}<WorkOrder>
    <CUSTOMER>ABC</CUSTOMER>
    <NOOFWORKORDERS type="Planned">10</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Preventive">22</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Corrective">9</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Implementation">5</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Provisioning">46</NOOFWORKORDERS>
    </WorkOrder>{color}
    {color}
    at the next loop
    vClob1 =
    {color:#999999}<WorkOrder>
    <CUSTOMER>XYZ</CUSTOMER>
    <NOOFWORKORDERS type="Planned">17</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Preventive">20</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Corrective">37</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Implementation">80</NOOFWORKORDERS>
    <NOOFWORKORDERS type="Provisioning">20</NOOFWORKORDERS>
    </WorkOrder>
    {color}
    and so on...
    My actual requirement is to concatenate all vClob1 values into a variable to pass
    it the front end to use it as an XMLDocument.
    Pls help.

    Did you try the create index from sqlplus?

  • DBIF_REPO_SQL_ERROR in CRMD_ORDER (CRM 2007) - ORA-03127: no new operations

    Dear Friends,
    I am using CRM 2007. I am facing below run time error: This problem comes frequently....
    Runtime Errors:  DBIF_REPO_SQL_ERROR
    Transaction......... "CRMD_ORDER"
    Program............. "????????????????????????????????????????"
    Screen.............. " "
    Screen Line......... 0
    Short text
        SQL error 3127 occurred when accessing program "SAPMS380 " part "LOAD".
    How to correct the error
        Database error text........: "ORA-03127: no new operations allowed until the
         active operation ends"
        Triggering SQL statement...: "SAPMS380 "
        Internal call code.........: "[REPO/*/43/LOAD/SAPMS380 ]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_REPO_SQL_ERROR" " "
        "????????????????????????????????????????" or " "
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
    Internal notes
        The termination was triggered in function "db_info"
        of the SAP kernel, in line 251 of the module
         "//bas/700_REL/src/krn/runt/abload5.c#3".
        The internal operation just processed is " ".
        Internal mode was started at 20100119091358.
        Internal call code.........: "[REPO/*/43/LOAD/SAPMS380 ]"
    I have checked in SAP note also. But, i didnt get....
    Suggest me...
    Note: I dont know, how to create questions for SAP BASIS issue. If any body know, kindly suggest me...
    Thanks & Regards,
    Rajagopal
    Chennai - INDIA

    Looks like something you have to ask one of your SAP Basis administrators at your company (client). Tell them about Oracle db error. They will probably know what to do.
    what do you mean by:
    I dont know, how to create questions for SAP BASIS issue. If any body know, kindly suggest me...
    Just step up to one of them, and show him the error.

  • What does ORA-03127: "no new operations allowed" mean?

    I got this error message when testing a prrocedure with incoming XML file.
    Does it come from my program or I can't use PL/SQL developer to test xml file?
    Thank you

    create or replace package body my_ORDER is
    ------------------------------ Function ---------------------------------
    FUNCTION get_order_xml (p_order_xml IN CLOB ) RETURN my_order%ROWTYPE IS
    in_order_entry_rec my_order%ROWTYPE;
    BEGIN
    SELECT '1' AS QUEUEID,
    INTO in_order_entry_rec.QUEUEID
    FROM TABLE(xmlsequence(extract(xmltype(p_order_xml), '/Order/Header'))) x;
    RETURN in_order_entry_rec;
    END;
    ------------------------------ INSERT ORDER ENTRY ---------------------------------
    PROCEDURE insert_entry
    ( p_status IN VARCHAR2,
    p_transitionid IN OUT NUMBER,
    p_order_entry_rec IN OUT order_entry_rec_type
    ) IS
    BEGIN
    INSERT INTO my_order ( QUEUEID ) VALUES (p_transitionid );
    END insert_entry;
    ------------------------------------ SAVE ORDER -----------------------------------
    PROCEDURE save_draft
    ( p_order_xml IN OUT CLOB,
    p_transitionid IN OUT NUMBER
    ) IS
    in_order_entry_rec my_order%ROWTYPE;
    BEGIN
    in_order_entry_rec := get_order_xml (p_order_xml ) ;
    p_transitionid := 1;
    insert_entry (p_status => 'DRAFT', p_transitionid => p_transitionid, p_order_entry_rec => in_order_entry_rec);
    END save_draft;
    end CS_ORDER_API;

  • Outer Join problems - "ORA-30563 outer join operator (+) not allowed in select-list"

    Products: Discoverer 4.1.33.0.2
    (Admin and User/Plus)
    8i EE 8.1.7 (Discoverer server)
    8i EE 8.1.5 ('source data' server)
    Background assumptions: (1) If a column from an "outer-joined" table is compared to a constant, the outer join operator must be applied to that column in order for the outer join to work. (2) A 'Condition' specified in Discoverer User/Plus manifests as a comparison to a constant.
    I created a join in Admin between two folders, selected 'outer join on detail' option. In User/Plus, created worksheet containing columns from the joined folders. When no Conditions are NOT specified, results seem ok. However, when Condition IS added, worksheet encounters "ORA-30563 outer join operator (+) not allowed in select-list" and returns blank sheet.
    To workaround, created Custom folder with outer join in place. Didn't work either with Conditions specified. No error, but I think that because Discoverer did not 'outer join' the Condition column, the outer join was ignored.
    Any insights, ideas, or workarounds are much appreciated.
    -Jim

    If you build a query that uses an outer join then any items from the potentially deficient side of the join will have (+) appended to them everywhere in the sql. Up until 8.1.7 this was OK in the select list as it was just treated as noise and ignored - However this now fails with ORA-30563:
    outer join operator (+) not allowed in select-list...
    In 4.1.33.1.6 you get the error 'ORA-30563 outer join operator(+) not allowed in select list'.
    In 4.1.36.1.10 the query runs OK.. Your work around I would guess would be to create a custom folder as you suggested.

  • ORA-01719: outer join operator (+) not allowed in operand of OR or IN

    I am getting the following Error when I tried to execute my Query.
    Error : ORA-01719: outer join operator (+) not allowed in operand of OR or IN
    select unique t.estblmt_src_typ_id as estblmt_src_typ_id,
    t.name as name from estblmt_src_typ t, src_estblmt_unknown_data u, estblmt_src eSrc, estblmt e,
    additional_addr aa, country c, src_country_state_region scsr
    where
    (t.estblmt_src_typ_id=u.estblmt_src_typ_id and
    e.state_region_id=scsr.state_region_id and
    upper(scsr.code1)='UNKNOWN' and
    u.processed_ind = 'N' and
    eSrc.Estblmt_Alt_Id = u.estblmt_alt_id and
    u.estblmt_src_typ_id = eSrc.estblmt_src_typ_id and
    eSrc.Estblmt_Id = e.estblmt_id and
    e.country_id = c.country_id and
    u.estblmt_element = 'State Region' and
    scsr.estblmt_src_typ_id = u.estblmt_src_typ_id and
    aa.estblmt_id(+)=e.estblmt_id and
    e.end_dt is null) or
    (t.estblmt_src_typ_id=u.estblmt_src_typ_id and
    aa.state_region_id=scsr.state_region_id and
    upper(scsr.code1)='UNKNOWN' and u.processed_ind = 'N' and
    eSrc.Estblmt_Alt_Id = u.estblmt_alt_id and
    u.estblmt_src_typ_id = eSrc.estblmt_src_typ_id and
    eSrc.Estblmt_Id = aa.estblmt_id and aa.country_id = c.country_id and (u.estblmt_element = 'Additional State Code' or u.estblmt_element = 'Additional State Province') and scsr.estblmt_src_typ_id = u.estblmt_src_typ_id
    and aa.estblmt_id=e.estblmt_id and e.end_dt is null) order by t.name

    First, is this query being executed within Apex or at the SQL prompt or in SQL Workshop, or something else? Some context of where it's being executed may help.
    Next, that's a query from hell. How about rewrting it to use ANSI join syntax instead, so it'a bit more readable?
    A quick example for part of it would be:
    FROM (additional_addr aa LEFT OUTER JOIN estblmt e ON aa.estblmt_id = e.estblmt_id )
    etc.
    Just add additional parenthesis for each additional table join, similar to:
    FROM ((additional_addr aa LEFT OUTER JOIN estblmt e ON aa.estblmt_id = e.estblmt_id )
    LEFT OUTER JOIN src_country_state_region scsr ON aa.state_region_id = scsr.state_region_id )
    In the long run it will make the query a bit more legible, so your where clause only lists the query conditions, not the join conditions. Then it becomes easier to quickly glance at it and see where potential problems may be.
    Bill Ferguson

  • I have a Mac OS X version 10.5.8 and recently got an Iphone4. I can not access Icloud from my computer. Is there any software, new operating system or anything I can purchase that will allow me access to the cloud?

    I have a Mac OS X version 10.5.8 and recently got an Iphone4. I can not access Icloud from my computer. Is there any software, new operating system or anything I can purchase that will allow me access to the cloud?

    Upgrading to Snow Leopard, Lion, or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    You can purchase Snow Leopard by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The price is $19.99 plus tax. You will receive physical media - DVD - by mail.
    Third-party sources for Snow Leopard are:
    Snow Leopard from Amazon.com
    Snow Leopard from eBay
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
    Be sure your computer meets the minimum requirements:
    Apple - OS X Mountain Lion - Read the technical specifications.
    Macs that can be upgraded to OS X Mountain Lion
      1. iMac (Mid 2007 or newer)
      2. MacBook (Late 2008 Aluminum, or Early 2009 or newer)
      3. MacBook Pro (Mid/Late 2007 or newer)
      4. MacBook Air (Late 2008 or newer)
      5. Mac mini (Early 2009 or newer)
      6. Mac Pro (Early 2008 or newer)
      7. Xserve (Early 2009)
    Are my applications compatible?
    See App Compatibility Table - RoaringApps - App compatibility and feature support for OS X & iOS.
    Am I eligible for the free upgrade?
    See Apple - Free OS X Mountain Lion upgrade Program.
    For a complete How-To introduction from Apple see Apple - Upgrade your Mac to OS X Mountain Lion.
    Model Eligibility for Snow Leopard and Lion.
    Snow Leopard General requirements
      1. Mac computer with an Intel processor
      2. 1GB of memory
      3. 5GB of available disk space
      4. DVD drive for installation
      5. Some features require a compatible Internet service provider; fees may
          apply.
      6. Some features require Apple’s MobileMe service; fees and terms apply.
    Lion System Requirements
      1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or
          Xeon processor
      2. 2GB of memory
      3. OS X v10.6.6 or later (v10.6.8 recommended)
      4. 7GB of available space
      5. Some features require an Apple ID; terms apply.

  • Cannot upgrade an app..purchased under old id and password help is blocked..want to purchase again under new id will not allow until old is cancelled can't cancel

    cannot upgrade an app...
    purchased under old apple id and password not known and is now blocked
    want to purchase the app again under new id won't allow until old app is removed

    SIgn out of old ID and sign in with new ID
    Settings>iTune and App Stores>Apple ID

  • Why r we allowed to create String objects with & without using new operator

    While creating any object, usage of the new operator is a must...but only for the string object we can create it with and also without new operator how is it possible to create an object without using new operator.

    Because Mr. (Dr.?) Gosling is a kindly soul who realizes that programmers have deadlines and, when he designed Java, was not so rigid or unbending as not to realize that from time to time, certain shortcuts are warranted, even in a relatively pure language such as Java. The direct String literal assignments are a shortcut over using the new operator making Java programming (and execution; there's also a performance benefit) more streamlined.
    So look not the gift horse in the mouth, but simply bask in the simplification and ease on the eyes and directly assign your little literals to your heart's content.

  • How can I keep my MacBook safe is Apple is no longer supporting Snow Leopard? My MacBook was purchased in 2006 and cannot be upgraded to the newer operating systems.

    I have a MacBook which I purchased in 2006. It cannot upgrade to newer operating systems.Since Apple has stopped support to Snow Leopard, how can I keep my MacBook safe? Buying another computer is not an option. Any ideas or suggestions? Many thanks.

    Klaus1 wrote:
    Apple still sell, and therefore support, Snow Leopard.
    For what it's worth, from my reading of the Snow Leopard EULA (and I would  assume that there is similar language in the EULAs for all other operating systems, as well), I'm not seeing any obligation on the part of Apple to provide Security Updates of any kind, period/full stop. The wording appears to be completely "use at your own risk." I have no idea whether this "use at your own risk" would survive a legal challenge, or if such a legal challenge would depend on whether or not Apple is still selling (or even giving away for free) an OS, or whether local law would, according to this, override the EULA. Perhaps this is why Apple never formally announces EOL or discontinuance of support for an OS. They can always claim that they are still supporting an OS, whether or not in any practical sense, they are. There was even a very late Flashback detection and removal script which Apple issued for 10.5 well after it was clear that they had stopped supporting Leopard. This hardly constituted ongoing support, but perhaps it was to deter the threat of legal action, or maybe it was simply out of benevolence. I don't know.
    Besides that, even when Apple was still actively "supporting" Snow Leopard, which I don't think it is any longer, "use at your own risk" would still have applied to a case where Apple may have been late with a patch, or a response, or an adequate response, to a zero-day threat, such as Flashback was, which was constantly evolving. Many thousands were affected by that, and, to my knowledge, at least, there was no legal action directed at Apple throughout or after that episode. If there was any, I don't think it succeeded.
    7. Disclaimer of Warranties. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT, TO THE EXTENT PERMITTED BY APPLICABLE LAW, USE OF THE APPLE SOFTWARE AND ANY SERVICES PERFORMED BY OR THROUGH THE APPLE SOFTWARE (COLLECTIVELY “SERVICES”) IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE AND SERVICES ARE PROVIDED “AS IS” AND “AS AVAILABLE”, WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS “APPLE” FOR THE PURPOSES OF SECTIONS 7 and 8) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE AND SERVICES, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE AND SERVICES, THAT THE FUNCTIONS CONTAINED IN, OR SERVICES PERFORMED OR PROVIDED BY, THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE OR SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, THAT ANY SERVICES WILL CONTINUE TO BE MADE AVAILABLE, THAT THE APPLE SOFTWARE OR SERVICES WILL BE COMPATIBLE OR WORK WITH ANY THIRD PARTY SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES, OR THAT DEFECTS IN THE APPLE SOFTWARE OR SERVICES WILL BE CORRECTED. INSTALLATION OF THIS SOFTWARE MAY AFFECT THE USABILITY OF THIRD PARTY
    SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES. YOU FURTHER ACKNOWLEDGE THAT THE APPLE SOFTWARE AND SERVICES ARE NOT INTENDED OR SUITABLE FOR USE IN SITUATIONS OR ENVIRONMENTS WHERE THE FAILURE OR TIME DELAYS OF, OR ERRORS OR INACCURACIES IN THE CONTENT, DATA OR INFORMATION PROVIDED BY, THE APPLE SOFTWARE OR SERVICES COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE, INCLUDING WITHOUT LIMITATION THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, LIFE SUPPORT OR WEAPONS SYSTEMS. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE SOFTWARE OR SERVICES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU.
    8. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE AND SERVICES OR ANY THIRD PARTY SOFTWARE OR APPLICATIONS IN CONJUNCTION WITH THE APPLE SOFTWARE, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose.
    http://images.apple.com/legal/sla/docs/osx_snow_leopard_sec_upd.pdf

  • The problem is with the new operating system  and sending photo via email when used in my iPad.   From photo I selected 3 photos to send via email. I choose the upload key and choose to send by email. Typing text on the email is very slow.

    The problem is with the new operating system  and sending photo via email when used in my iPad.
    From photo I selected 3 photos to send via email. I choose the upload key and choose to send by email. Typing text on the email is very slow. This is solved by saving the email as a draft and opening the email again from mail.
    Can you amend he system to allow emails to be sent from photo as previously.

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"

  • I erased my HD and could not install lion. if I turn on the mac now all I see is a folder with a question-mark. How can I install a new operation system?

    I erased my HD and could not install lion. if I turn on the mac now all I see is a folder with a question-mark. How can I install a new operation system?

    Install or Reinstall Mavericks, Lion/Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
            the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion, Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • My computer has had a new operating system put on Windows 7 but I did not de-authorise my old computer which was Windows Vista and now I cannot sync my Ipod Classic as it keeps saying I have exceeded my maximum of 5 computers being authorised.

    My computer has had a new operating system put on (Windows 7) but I did not de-authorise my old computer which was Windows Vista and now I cannot sync my Ipod Classic as it keeps saying I have exceeded my maximum of 5 computers being authororized.  I tried doing this via my account in the Itunes Store but it still won't allow me to do this.  Can anyone help?

    Contact Apple customer support, they can reset your authorizations.
    http://www.apple.com/contact

  • Error message when updating to new operating system

    I just bought the iPhone 4 and it did not have the new operating system.  When I try to download it my itunes goes through the whole process and then tells me there was an error and to make sure to check my network settings are correct and my network connection is active.  Any ideas??

    Hi there! I'm new to Apple Discussions but I'm willing to help in anyway I can. Please correct me if I am wrong.
    Try turning off your firewall, something could be blocking it. I also suggest a restart of your computer system, it may fix a few of those pesky bugs. It usually works with my other application problems.
    Hope I helped.
    iOS-Apple

  • Since I downloaded the new operating system to my iPod touch I can no longer update my Apps or download new ones.  My password is recognized but the download process is immediately interrupted when I touch update (all) or download.

    Since I downloaded the new operating system (6.1.3) to my iPod touch I can no longer update my Apps or download and new Apps.  My password is recognized but when touching the update (all) button or download, the screen immediately reverts to the earlier screen and no updating or downloading occurs.

    Try This...
    Close All Open Apps...  Sign Out of the Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If no joy...
    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414

Maybe you are looking for

  • HT4623 wifi not working after upgrading ro ioz 7

    after updating my ipad via wifi, to ios 7 my network connection doesnt work. it s_hows as if it ia connected to wifi, but norhing works. i cant access anyrhing bia the internet. pla hwlp

  • Need help in knowing how to debug the data using the data monitor

    Hi All,   I am working on the BW3.X system, In my system instead of directly mapping the currency field in the update rule between DSO and the INFOCUBE, they have done it indirectly(I am unable to see that field getting mapped to any field), I want t

  • Java aplication in the internet

    Hi I've wrote a java aplication (about 30 clases) and I need to make an internet site that the user will be able to activate my program from it. what should I do? when running the main class a GUI is showed and I want the user to "play" with the GUI.

  • Problem installing adobe x11 trial Error 1935

    after downloading with adobe download assistant it gets about 90% through the installation then encounters a problem and undose everything and the green status bar goes back to the left. what can i do i really need to use this trial by morning. pleas

  • Delete a line from a file using Oracle .

    Hi Gents, Is there any option from oracle to delete the last line in a file using utl_file ? apart from sed or other UNIX commands> Regards Fento.