SQL Insert Error - Please help. RESOLVED

I have a page with several VOs and search options. One of the search options is a list of Emp IDs which (when one is selected and user clicks 'search') results in an editable table of profiles for that Emp Id.
I have in the Footer of the results table an input field and a button 'add' bound to a method that takes two params and inserts a 'new' profile for the searched Emp Id and the value entered in the input field.
When I enter a value and click 'add' I get the following:
JBO-29000: Unexpected exception caught: oracle.jbo.DMLConstraintException, msg=JBO-26048: Constraint "BADGE_ACCESS_EMP_FK" violated during post operation:"Insert" using SQL Statement "BEGIN INSERT INTO BADGE_ACCESS(EMPLOYEE_ID,BADGE,ROW_ID) VALUES (?,?,?) RETURNING ROW_ID INTO ?; END;".
JBO-26048: Constraint "BADGE_ACCESS_EMP_FK" violated during post operation:"Insert" using SQL Statement "BEGIN INSERT INTO BADGE_ACCESS(EMPLOYEE_ID,BADGE,ROW_ID) VALUES (?,?,?) RETURNING ROW_ID INTO ?; END;".
ORA-02291: integrity constraint (HR.BADGE_ACCESS_EMP_FK) violated - parent key not found ORA-06512: at line 1
My Emp table is simple - just an ID, First and Last names with ID as PK. My profile table (called Badge_Access) has the EmpId as FK and it's own PK set by a DBSequence. The other column in Badge_Access is for the input value (number).
I do not know how to debug in JDeveloper such that I can see the values that are being passed to the method. My 'add' button method is:
public void createBadgeAccess(Number empId, Number badge) {
BadgeAccessImpl ba = (BadgeAccessImpl)getDBTransaction().createEntityInstance(BadgeAccessImpl.getDefinitionObject(), null);
ba.setEmployeeId(empId);
ba.setBadge(badge);
getDBTransaction().commit();
I have the 'value' of the empId param = ${bindings.AccessByEmployeeEmployeeId.inputValue}
This is the selectOneChoice field the user uses to search...
and the 'value' of the badge param = ${bindings.Badge.inputValue}
This is the input field the user fills in before clicking 'add'...
The values I think I am passing are empId=106 and badge=102 - both are valid & the 'parent key' 106 is valid...
any help will be greatly appreciated!!! Thanks
Ginni
Message was edited by:
ginnim
I found a Tip that described what was happening.

Wrap some try/catch around the statements instead of trying to decipher the Java junk. Could be a problem in the PS, could be a number of things. At least figure where in the application the error takes place.

Similar Messages

  • SQL INSERT trouble- please help

    I'm having an trouble,to INSERT a record to my db.(MySQL)
    This is the condition.
    There is a form to validate the NicNo,which is input by the user.If it it exist, then the system displays an error msg. If it is not,display a new form to enter the candidate details.Then the user can save them to the db.These are working well.But,when I go to the mySQL console and check,the record is nicely saved except 2 fields.(civilStatus and eduQua).
    Did you know why? I check my prepared statement,I think it's OK.
    Here are the codes:
    The form which is used by the user to input NicNo.
    <%@ page session="false" %>
    <%@ page import="java.sql.*,java.util.*,javax.servlet.http.*" %>
    <form method="POST" action="EntInterProcess.jsp">
        <center>
            <div align="center">
        <center>
       <TABLE borderColor=burlywood cellSpacing=0 cellPadding=1
                width="256" borderColorLight=moccasin border=1>
          <tr>
            <td noWrap style="background-color: #DEB887" width="80"><B>NIC No</b></td>
            <td width="106">
            <input type="text" name="nicno" size="14" style="border:1px solid #0000FF;
    color: #FF0000; font-weight: bold"></td>
            <td width="56"><input type="submit" value="Select" name="B1"></td>
          </tr>
         </table>
           </center>
      </div>
    </form>The file called "EntInterProcess.jsp"
    <%@ page import="core.CandidateMgr" %>
    <jsp:useBean id="CandidateMgr" class="core.CandidateMgr" scope="session"/>
    <jsp:setProperty name="CandidateMgr" property="*"/>
    <%
    String nextPage ="MainForm.jsp";
    if(CandidateMgr.verifyNicNo()){
         nextPage="InterviewForm.jsp";
         }else{
         nextPage="ExitError.jsp";
    %><jsp:forward page="<%=nextPage%>"/>I didn't copy here the page called "InterviewForm.jsp",because it has many fields.If you want please tell me.So I copy here the CandidateMgr.java file, which is the javaBean.
    package core;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import javax.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class CandidateMgr
       private String nicno;
       private String name
       private String address;
       private String civilStatus;
       private String tele;
       private String eduQua;
         // Constructor
         public CandidateMgr()
       * Returns the nicno.
       public String getNicno()
          return nicno;
       * Sets the nicno.
       public void setNicno(String nicno)
          this.nicno = nicno;
       * Returns the name.
       public String getName()
          return name;
       * Sets the name.
       public void setName(String name)
          this.name = name;
       * Returns the address.
       public String getAddress()
          return address;
       * Sets the address.
       public void setAddress(String address)
          this.address = address;
       * Returns the civilStatus.
       public String getCivil()
          return civilStatus;
       * Sets the civilStatus.
       public void setCivil(String civilStatus)
          this.civilStatus= civilStatus;
       * Returns the tele.
       public String getTele()
          return tele;
       * Sets the tele.
       public void setTele(String tele)
          this.tele= tele;
       * Returns the eduQua.
       public String getEdu()
          return eduQua;
       * Sets the eduQua.
       public void setEdu(String eduQua)
          this.eduQua= eduQua;
         public boolean verifyNicNo(){
              boolean nic_no_select_ok = false;
              String nic="xxxx";
              try{
                   String DRIVER = "com.mysql.jdbc.Driver";
                   java.sql.Connection conn;
                   String URL = "jdbc:mysql://localhost:3306/superfine";
                    //Open the database
                   Class.forName(DRIVER).newInstance();
                   Connection con=null;
                   PreparedStatement pstmt1 = null;
                   con = DriverManager.getConnection(URL);
                   String sql="SELECT * FROM Candidate where nicNo= ?";          
                   pstmt1 = con.prepareStatement(sql);
                   pstmt1.setString(1,nicno);
                   ResultSet rs1 = pstmt1.executeQuery();
                                while(rs1.next()){
                        nic=rs1.getString("nicNo");
                   if(nic=="xxxx")
                        nic_no_select_ok = true;
                   } else{
                        nic_no_select_ok = false;     
                   rs1.close();
                           pstmt1.close();
                   con.close();
                catch(ClassNotFoundException e1){
                   System.err.println(e1.getMessage());
                catch(SQLException e2){
                           System.err.println(e2.getMessage());
               catch (java.lang.InstantiationException e3) {
                    System.err.println(e3.getMessage());
              catch (java.lang.IllegalAccessException e4) {
                    System.err.println(e4.getMessage());
              catch (java.lang.NullPointerException e5){
                   System.err.println(e5.getMessage());
              return nic_no_select_ok;
         public boolean addInter(){
              boolean add_inter_ok = false;
              try{
                   String DRIVER = "com.mysql.jdbc.Driver";
                   java.sql.Connection conn;
                   String URL = "jdbc:mysql://localhost:3306/superfine";
                    //Open the database
                   Class.forName(DRIVER).newInstance();
                   Connection con=null;
                   PreparedStatement pstmt3=null;
                   con = DriverManager.getConnection(URL);
                   String sqle ="INSERT INTO Candidate VALUES(?,?,?,?,?,?)";
                   pstmt3 = con.prepareStatement(sqle);
                   //assign value for ???
                   pstmt3.setString(1, nicno);
                   pstmt3.setString(2, name);
                   pstmt3.setString(3, address);
                   pstmt3.setString(4, civilStatus);
                   pstmt3.setString(5, tele);
                   pstmt3.setString(6, eduQua);
                   if(pstmt3.executeUpdate()==1) add_inter_ok=true;
                   pstmt3.close();
                           con.close();
                catch(ClassNotFoundException e1){
                   System.err.println(e1.getMessage());
                catch(SQLException e2){
                           System.err.println(e2.getMessage());
               catch (java.lang.InstantiationException e3) {
                    System.err.println(e3.getMessage());
              catch (java.lang.IllegalAccessException e4) {
                    System.err.println(e4.getMessage());
              return add_inter_ok;
    }These are the codes which I use to do this task.I don't know what happend to that 2 fields(they save in the db as NULL).Is there a nice method to do this database declaration? I try to declare that part as
    a seperate class,but I don't know how to code that by using java and call it to other sections for reuse.
    Anyone can answer these questions,please tell me how to do this,because it's urgent.
    Thanks.

    Hi Casabianca,
    Your code looks okay. I have just a couple of questions:
    (1) Are you 100% certain that those columns are of type VARCHAR/String in your MySQL database?
    (2) You only have a default ctor for your core.CandidateMgr class, and it has no implementation at all. That means that the six private member Strings are all set to null.
    Your addInter() method inserts the current values of the private data members into MySQL. If it so happened that those two fields, civilStatus and eduQua, were never initialized using calls to their respective setters, then their values would still be null because you never set them to sensible values inside the constructor.
    I'd do two things:
    (1) Add code to your default constructor to set all the strings to the empty string.
    (2) Write a second constructor that allows a user to initialize all six strings when the object is created. That way you can have a fully-initialized instance of CandidateMgr without having to call the setters. Have your default ctor simply call this second ctor:
    public CandidateMgr()
        this("", "", "", "", "", "");
    public CandidateMgr(final String nicno, final String name, final String address, final String civilStatus, final String tele, final String eduQua)
      this.nicno = nicno;  
      this.name  = name;
      this.address = address;  
      this.civilStatus = civilStatus;  
      this.tele = tele;  
      this.eduQua = eduQua;
    }Always write a constructor so the object is ready for use right away.
    See if that fixes your problem. The JDBC code looks okay.

  • Dynamic sql giving error --please help

    Hi ,
    I have written the following code --
    CREATE OR REPLACE FUNCTION tabcount (
    tab IN VARCHAR2, field IN VARCHAR2 ,whr IN VARCHAR2)
    RETURN INTEGER
    IS
    retval INTEGER;
    BEGIN
    DBMS_OUTPUT.PUT_LINE ('whr' ||whr);
    DBMS_OUTPUT.PUT_LINE ('field1' ||field);
    EXECUTE IMMEDIATE
    ' SELECT COUNT(*) FROM ' || tab ||
    ' WHERE ' || field || 'like '/'%'||whr ||'%'/''
    INTO retval;
    DBMS_OUTPUT.PUT_LINE ('countis!' ||retVal);
    RETURN retval;
    END tabcount;
    It is giving the following error--
    ORA-00920: invalid relational operator
    ORA-06512: at "TABCOUNT", line 10
    ORA-06512: at line 2
    I am not sure how to enclose the like operator within the single quotes.Double quotes is not working for me.
    Thanx in advance,
    Ira

    Offhand, it looks like you may still have some syntax problems -- probably need a blank space before the WHERE --maybe some other stuff too.
    What you need to do to debug it is this (and this works just about anytime you are having trouble with dynamic SQL):
    1. store the sql statement in a variable.
    2. Use DBMS_OUTPUT to display your select statement BEFORE calling execute immediate.
    3. copy/paste that select into a separate window and run/debug it.
    4. Once you know what is wrong with that statement, go back and fix the code accordingly.
    Have fun,
    --scott                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • SQL SCRIPT ERROR PLEASE HELP!!!

    DROP TABLE CUSTOMERUSER CASCADE CONSTRAINTS;
    CREATE TABLE CUSTOMERUSER
    ( Username VARCHAR(10) NOT NULL,
    UserID VARCHAR(15) NOT NULL,
    Pword VARCHAR(30),
    Street VARCHAR(15),
    City VARCHAR(15),
    Postalcode VARCHAR(15),
    Phone VARCHAR(10),
    Email VARCHAR(16),
    PRIMARY KEY (Username,UserID));
    DROP TABLE ADMINISTRATOR CASCADE CONSTRAINTS;
    CREATE TABLE ADMINISTRATOR
    ( Username VARCHAR(10) NOT NULL,
    EmployeeID VARCHAR(15) NOT NULL,
    Pword VARCHAR(30),
    AdminType VARCHAR(15),
    PRIMARY KEY (Username,EmployeeID));
    DROP TABLE FLIGHT CASCADE CONSTRAINTS;
    CREATE TABLE FLIGHT
    ( FlightID VARCHAR(10) NOT NULL,
    FlightNumber VARCHAR(15) NOT NULL,
    Airline VARCHAR(30),
    AvailableSeats INT,
    PRIMARY KEY (FlightID));
    DROP TABLE RESERVATION CASCADE CONSTRAINTS;
    CREATE TABLE RESERVATION
    ( ReservationNumber VARCHAR(10) NOT NULL,
    IsPaid VARCHAR(4) NOT NULL,
    dayof VARCHAR(10),
    FlightID VARCHAR(10) NOT NULL,
    UserID VARCHAR(15) NOT NULL,
    PRIMARY KEY (ReservationNumber,UserID),FOREIGN KEY (FlightID) REFERENCES FLIGHT(FlightID),FOREIGN KEY (UserID) REFERENCES customeruser(UserID));
    DROP TABLE PAYMENT CASCADE CONSTRAINTS;
    CREATE TABLE PAYMENT
    ( PaymentID VARCHAR(10) NOT NULL,
    PaymentAmount VARCHAR(15) ,
    PaymentDate VARCHAR(30),
    ReservationNumber INT NOT NULL,
    PRIMARY KEY (PaymentID),FOREIGN KEY (ReservationNumber) REFERENCES RESERVATION(ReservationNumber));
    DROP TABLE FLIGHTSCHEDULE CASCADE CONSTRAINTS;
    CREATE TABLE FLIGHTSCHEDULE
    ( FlightNumber VARCHAR (15) NOT NULL,
    Fromw VARCHAR(25) ,
    Wto VARCHAR(25),
    DepatureDate VARCHAR(10) ,
    ArrivalDate VARCHAR(10),
    Class VARCHAR(10) ,
    DepatureTime VARCHAR(8),
    ArrivalTime VARCHAR (8) NOT NULL,
    PRIMARY KEY (FlightNumber),FOREIGN KEY (FlightNumber) REFERENCES FLIGHT(FlightNumber));
    When i execute the RESERVATION section. it gaving me a error called " *
    ERROR at line 7:
    ORA-02270: no matching unique or primary key for this column-list
    How to fix that?

    in TABLE RESERVATION the FOREIGN KEY (UserID) REFERENCES customeruser(UserID) expects the primary key of TABLE CUSTOMERUSER to be UserID (not PRIMARY KEY (Username,UserID) as in your case) or the TABLE CUSTOMERUSER having an unique index on UserID.
    Regards
    Etbin
    Edited by: Etbin on 3.12.2011 22:22
    You might be sorry defining DepartureDate as VARCHAR2(10) and DepartureTime as VARCHAR2(8) instead of Departure DATE (time component included)
    the same for ArrivalDate in TABLE FLIGHTSCHEDULE
    in TABLE RESERVATION there is dayof VARCHAR(10) too

  • Trying to update photoshop and repeatedly get error code U44M1P7, can anyone please help resolve this?

    Trying to update photoshop and repeatedly get error code U44M1P7, can you please help resolve this?

    JJMack, Thanks for the info. Let this old man digest it and see if I can put the info into action. I'll give you a feedback. Thanks for your help in this matter. I am not a tech savvy person. 
    Rueben Rueben D. Olivas Home Ph:  1-671-969-2452
    Cell Ph:  1-671-747-2453La Luz Photography
    Email: [email protected]/Guam Firehouse Cook: http://guamfirehousecook.blogspot.com/BBQGuam: http://bbqguam.blogspot.com/My Photostream: http://ruebenolivas.megashot.net/photostream

  • SQL Insert Error Error in allocating a connection. Cause: No PasswordCreden

    Friends,
    While testing my connection in the Sun java Application Server , I get the following error .
    "SQL Insert Error Error in allocating a connection. Cause: No PasswordCredential found "
    Can somebody please guide ?
    regards
    Dhiraj

    If you are using Netbeans, then this link might help:
    http://forum.java.sun.com/thread.jspa?forumID=136&threadID=598423
    Otherwise, have you try this ?
    Verify your sun-ejb-jar.xml does not use default-resource-princinpal element:
    <res-ref-name>jdbc/pdisasdb</res-ref-name>
    <jndi-name>jdbc/pdisasdb</jndi-name>
    <default-resource-principal>
    <name>myname</name>
    <password>geheim</password>
    </default-resource-principal>
    </resource-ref>

  • I am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    i am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    Hey alkarim2008,
    If you are having an issue with being unable to update or restore your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    Resolve iOS update and restore errors in iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • I am geting following error please help

    ERROR-
    RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://www.nature.com/principles/webservice/login" errorID=2032]. URL: http://www.nature.com/principles/webservice/login"]
    code-
    operation = new Operation(null, "login");
      operation.url = "login";
      argsArray = new Array("login_id", "login_password", "unique_machine_id");
      operation.argumentNames = argsArray;
      operation.method = "POST";
      operation.serializationFilter = filter;
      operations.push(operation);
      public function login(loginId:String, loginPassword:String, uniqueMachineId:String):AsyncToken
           trace(loginId, loginPassword, uniqueMachineId);
           var _internal_operation:AbstractOperation = _service.getOperation("login");
           var _internal_token:AsyncToken = _internal_operation.send(loginId, loginPassword, uniqueMachineId);
           return _internal_token;
    login service is being called from server that is in java-
    package com.nature.ebook.components.auth
      import com.nature.ebook.data.UserInfo;
      import com.nature.ebook.services.CallStatus;
      import com.nature.ebook.services.IEBookService;
      import com.nature.ebook.services.XMLServiceParser;
      import flash.events.EventDispatcher;
      import flash.events.IEventDispatcher;
      import mx.controls.Alert;
      import mx.rpc.AsyncToken;
      import mx.rpc.Fault;
      [ManagedEvents("authSuccess, authFail")]
      public class AuthCommand extends EventDispatcher
      public function AuthCommand(target:IEventDispatcher=null)
      [Inject]
      public var service:IEBookService;
      [Inject]
      public var auth:AuthModel;
      //  Methods
      * This command dispatches  event AuthenticationEvent.AUTH_FAIL when the service return failt
      * @param fault Fault
      public function error(fault:Fault):void
      trace(fault);
      var e:AuthenticationEvent = new AuthenticationEvent(AuthenticationEvent.AUTH_FAIL, null, null, CallStatus.getServerFaultCall());
      dispatchEvent(e);
      * This command dispatches event when the service return rezult Array
      * @param result Array
      * if cs.success <code>true </code> dispatch AuthenticationEvent.AUTH_SUCCESS
      * if cs.success <code>false</code> dispatch AuthenticationEvent.AUTH_FAIL
      public function result(result:*):void
      if (result)
      var cs:CallStatus = XMLServiceParser.getCallStatus(result);
      if (cs.success)
      var us:UserInfo = XMLServiceParser.getUserInfo(result);
      var e:AuthenticationEvent = new AuthenticationEvent(AuthenticationEvent.AUTH_SUCCESS, us, null, cs);
      dispatchEvent(e);
      else
      e = new AuthenticationEvent(AuthenticationEvent.AUTH_FAIL, null, null, cs);
      dispatchEvent(e);
      public function execute(event:AuthenticationEvent):AsyncToken
      return service.login(event.user.loginId, event.magicWord, event.user.uniqueMachineId);

    Sorry for the confusion. After starting the WLS 6.0 server, use your browser
    to launch the console, verify that the Frobable EJB is correctly deployed as
    frobtarget with the correct class path specified. The 6.0 JAAS sample is
    trying to invoke on examples.security.acl.Frobable, make sure this is the
    deployed instance. This is an error in the JAAS example SampleAction.java
    file since the JAAS sample actually builds examples.security.jaas.Frobable,
    this bug will be corrected in service pack 1 which will be available
    shortly.
    nancy coelho <[email protected]> wrote in message
    news:3a9ee0af$[email protected]..
    Hi! I am new to JAAS and also to Weblogic server6.0. I am trying to run
    JAAS sample and geting the following error . please help
    Thanks,
    Nancy
    E:\bea\wlserver6.0\samples>java examples.security.jaas.SampleClient
    t3://localho
    st:7001
    Using Configuration File: Sample.policy
    Login Module Name: examples.security.jaas.SampleLoginModule
    Login Module Flag: required
    username: ncoelho
    password: prabhala
    javax.naming.NameNotFoundException: Unable to resolve frobtarget.Resolved:
    '' U
    nresolved:'frobtarget' ; remaining name ''
    at
    weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOut
    boundRequest.java:90)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.lookup(ServerNamingNod
    e_WLStub.java:121)
    at
    weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:323)
    at javax.naming.InitialContext.lookup(InitialContext.java:350)
    at examples.security.jaas.SampleAction.run(SampleAction.java:61)
    at javax.security.auth.Subject.doAs(Subject.java:80)
    at examples.security.jaas.SampleClient.main(SampleClient.java:114)
    Failed to frob
    E:\bea\wlserver6.0\samples>

  • HT201210 cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    If you mean updae server
    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem
    Otherwise what server are you talking about

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • My ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    my ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    Hey erinoneill24,
    Thanks for using Apple Support Communities.
    Sounds like you can't update your device. You don't mention an error that it gives you. Take a look at both of these articles to troubleshoot.
    iPod displays "Use iTunes to restore" message
    http://support.apple.com/kb/ts1441?viewlocale=it_it
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808?viewlocale=de_DE_1
    If you started your device in recovery mode by mistake, restart it to exit recovery mode. Or you can just wait—after 15 minutes the device will exit recovery mode by itself.
    Have a nice day,
    Mario

  • I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    Although your message isn't mentioned in the symptoms, let's try the following document with that one:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • HT201442 I did this but still i am getting the same error , please help me .

    I did this but still i am getting the same error , please help me .
    <Email Edited by Host>

    Look at http://support.apple.com/kb/ts4451
     Cheers, Tom

  • My iphone won't pass the connect to itunes. when i try to restore is says that there is an error. please help!

    hi my iphone is broken. it won't pass the connect to itunes. when i try to restore is says that there is an error. please help!
    thanks,
    jg2013
    <Subject Edited by Host>

    Hello, 02633. 
    Thank you for visiting Apple Support Communities. 
    If your iPhone is disabled, you will need to process the steps in the article below.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Cheers,
    Jason H.

  • HT4623 I have updated my iphone with the current software but it is showing you need to connect to  of itunes to activate your phone, when i did that it is continuously showing an error.please help me to get through.

    I have updated my iphone with the current software but it is showing you need to connect to  of itunes to activate your phone, when i did that it is continuously showing an error.please help me to get through.
    Kindly Activate my phone.

    Rajan Gupta wrote:
    ...it is continuously showing an error.
    See here  >  http://support.apple.com/kb/TS3424
    Also see this discussion.
    https://discussions.apple.com/message/21189708

Maybe you are looking for

  • How can I control my Iphone from my PC/laptop/Mac without VNC(requires WiFi

    Hi, Is there a way to control my Iphone from my computer without a WiFI connection? I was able to do this on my treo via USB cable. Anyone help?

  • Need help in design/framework of a project requirements

    Hi there. I need some input/design suggestion and/or comments regarding 2 projects that I'm undertaking currently. The project duration is 8 weeks starting now. Some background information of the current technology we are using right now. We are usin

  • Need Urgent Help on Upgradation from 10.2.0.3 to 10.2.0.5

    Dear Gurus, Please help out on this to get some documentation Steps to Upgrade the DB version from 10.2.0.3 to 10.2.0.5-------- a) What are the specific server patches, kernel parameters required b) Do we need to apply any application patches c) High

  • Documentation of the audit trail in IdM?

    Hello guys, I've searched high and low for some documentation of the audit information availablein IdM. Would anyone of you have an idea, where I can find it? I found some documentation on reporting, but I would be interested in some information on w

  • Disk utility wont create images

    i have my Mac OS X Leopard install on a partition of my external HD and im trying to make a copy of it as a DMG on my desktop but when i hit new image i get "unable to create mac os x leopard install.dmg (resource busy)". i tried restarting to see if