Update QueryDataSet

Hi,
I try to update records in QueryDataSet in JBuilder.
I use the JDBC of MS for SQL Server 2000.
The same code works fine with JDBC of Oracle dataBase.
queryDataSet1.first();
queryDataSet1.setFloat("field_name",varFloat);
while (queryDataSet1.next()){
queryDataSet1.setFloat("field_name",varFloat);
queryDataSet1.saveChanges();
I get an error :
com.borland.dx.dataset.DataSetException: The row specified
by the resolution query was not found.
Typical reasons are:
Somebody deleted or changed this row.
A floating point comparison failed to match.
A CHAR field needs space padding (see
Database.setUseSpacePadding).
Can you tell me what's wrong?
Thanks

I haven't tried MS SQL but, in working with MSAccess I found that if I ran a query and got the value of even one of the fields retrieved I would get the message that you received if I tried the update. If I ran a query and then did the update it worked fine.
To me, this seems a bit odd. If I retrieve a row I usually want to use the data retrieved for some purpose. I may or may not update it after that.
A workaround is to have each row with a unique value, select it, work with it then do the "update tablename set column = 'value' where column = 'keyvalue'". It is kludgy but works.

Similar Messages

  • Problems with updating data in excel spreadsheet using ODI

    That's my first post on this forum, therefore I'd like to say Hello to everybody reading it before I present my problem.
    First I configured the ODBC connection to the xls file which conteins my data - the file isn't defined as read-only in the ODBC connection. The next step was setting up a Microsoft Excel Data Server in the topology manager in which I inserted the physical model and of course a logical one referencing the physical one. These steps allowed me to insert a model with my table in the Designer - I can view data throug the option 'view data' appearing after the right-click on the datastore. One of the columns was defined as primary key in constraints. I can use this xls file datastore as a source in an interface - loading the target finishes with a success. But I can't update the data in the xls file using the 'data' option appearing after right-click on the datastore correspondig to it in the designer. The new window with data from file appears without any problem, but when I try to update any of the fields I recieve an error:
    *"See com.borland.dx.dataset.DataSetException error code: BASE+37*
    *com.borland.dx.dataset.DataSetException: DataSet has no unique row identifiers.*
    *Note: For QueryDataSets you need to disable metaDataUpdate.ROWID in the MetaDataUpdate property, in addition to setting the RowId property on a column.* - don't know where to configure it
    at com.borland.dx.dataset.DataSetException.c(Unknown Source)
    at com.borland.dx.dataset.DataSetException.kb(Unknown Source)
    at com.borland.dx.dataset.StorageDataSet.fb(Unknown Source)
    at com.borland.dx.dataset.StorageDataSet.a(Unknown Source)
    at com.borland.dx.dataset.DataSet.startEditCheck(Unknown Source)
    at com.borland.dx.dataset.DataSet.startEdit(Unknown Source)
    at com.borland.dbswing.TableMaskCellEditor.textModified(TableMaskCellEditor.java:340)
    at com.borland.dbswing.TableMaskCellEditor.insertUpdate(TableMaskCellEditor.java:319)
    at javax.swing.text.AbstractDocument.fireInsertUpdate(Unknown Source)
    at javax.swing.text.AbstractDocument.handleInsertString(Unknown Source)
    at javax.swing.text.AbstractDocument.insertString(Unknown Source)
    at javax.swing.text.PlainDocument.insertString(Unknown Source)
    at com.borland.dbswing.DBPlainDocument.insertString(DBPlainDocument.java:77)
    at javax.swing.text.AbstractDocument.replace(Unknown Source)
    at javax.swing.text.JTextComponent.replaceSelection(Unknown Source)
    at javax.swing.text.DefaultEditorKit$DefaultKeyTypedAction.actionPerformed(Unknown Source)
    at javax.swing.SwingUtilities.notifyAction(Unknown Source)
    at javax.swing.JComponent.processKeyBinding(Unknown Source)
    at javax.swing.JComponent.processKeyBindings(Unknown Source)
    at javax.swing.JComponent.processKeyEvent(Unknown Source)
    at com.borland.dbswing.TableMaskCellEditor.processKeyEvent(TableMaskCellEditor.java:627)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)"
    What should I do to be able to modify data from the xls file that way (is it possible in any way)?

    It is not possible to update the data directly from ODI on some technologies, mainly due to some driver limitations.
    I would suggest to edit the spreadsheet in Excel.
    Thanks,
    Julien

  • Inserting Rows in a QueryDataSet

    I use Oracle JDeveloper 1.1.
    When i try to insert a DataRow in a
    QueryDataSet, works al lfine, bute the
    DataRow is at the end of the DataSet.
    I need a methode to insert a DataRow
    an the top of the QueryDataSet.
    Is there any way?
    Thnks for help.

    Hi,
    I am trying to insert a row in a table using the
    follwing code:
    String Query_String = "Insert into Table_Name
    (Field_1, Field_2, Field_3)" +
    "Values (Value_1,
    "Values (Value_1, Value_2, Value_3)";
    stmt.executeUpdate (Query_String);
    Field_1 is a Date field, Field_2 is a String, and
    Field_3 is an integer.
    Any of the fields could be null. If the user does not
    enter a value for any
    one of these fields what would be the values for
    Value_1, Value_2, or Value3 in the Query_String?
    Thanks.Keep in mind that each database server probably has their own way of storing date values. For now, I'm going to assume that you're going to be using MySQL.
    // Initialize variables to null
    String Value_1 = "";
    String Value_2 = "";
    String Value_3 = "";
    try
    // Get Date
    Date date = new Date();
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
    Value_1 = dateFormat.format(date);
    // Get String value
    Value_2 = "some string";
    // Get Integer value
    Value_3 = String.valueOf("2");
    String query = INSERT INTO T_NAME VALUES('" + Value_1 +"', '" + Value_2 + "', '" + Value_3 + "');
    int iUpdated = stmt.executeUpdate(query);
    catch(Exception e)
    // Catch Code
    System.out.println("Number of records updated: " + iUpdated);
    This will just enter empty string values if the strings are empty.
    Is this what you wanted to know?
    If not, provide a bit more information and I'll try to help as best as I can

  • Database just updated sometimes??

    Hi,
    Please help, I am new at JBuilder and jsp pages and don�t know what is wrong when my database is just updated sometimes but not always. I run my jsp page where I type in a name of a person that I then want to insert in my database. This is just working if I test the Query in JBuilder�s design. But if I try to run the application jsp page that that then shall connect to the database, it says there is something rong with my SQL question.
    Here is part of my code:
    ********My jsp page**************
    <html>
    <head>
    <title>
    Jsp1
    </title>
    </head>
    <jsp:useBean id="jsp1BeanId" scope="session" class="myapp1.Jsp1Bean" />
    <jsp:setProperty name="jsp1BeanId" property="*" />
    <body>
    <h1>
    Personal Planner<br><hr>
    </h1>
    <%--The java file that should receive the data typed in in the name field--%>
    <FORM ACTION="http://localhost:8080/Jsp1.jsp" form method="get">
    <%--Olika f�llt med persondata--%>
    Enter following data:
    <pre><br> First name: <input type="text" name="firstname" size="20">
    <input type="submit" name="Submit" value="Submit">
    <input type="reset" value="Clear">
    <br>
    <br><br><br><br><br>Value of Bean property is :<jsp:getProperty name="jsp1BeanId" property="firstname" />
    </form>
    <% if(request.getParameter("firstname")!= null ) {
    String name = request.getParameter("firstname");
    DBapplication Db = new DBapplication(name);
    %>
    <%
    %>
    </body>
    </html>
    ******My DB connection*************
    package myapp1;
    import javax.swing.UIManager;
    import java.awt.*;
    import com.borland.dx.sql.dataset.*;
    public class DBapplication {
    boolean packFrame = false;
    Database database1 = new Database();
    QueryDataSet queryDataSet1 = new QueryDataSet();
    String firstname = new String("");
    /**Construct the application*/
    public DBapplication(String name) {
    firstname = name;
    System.out.println(firstname);
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    /**Main method*/
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e) {
    e.printStackTrace();
    //new DBapplication( );
    private void jbInit() throws Exception {
    queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "INSERT INTO Persondata VALUES (\'7730\'," firstname ",\'0730555582\')\n", null, true, Load.ALL));
    database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:mindsn", "xxxxx", "xxxxx", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
    *****Bean file****************
    package myapp1;
    public class Jsp1Bean {
    private String firstname = "null";
    /**Access firstname property*/
    public String getFirstname() {
    return firstname;
    /**Access sample property*/
    public void setFirstname(String newValue) {
    if (newValue!=null) {
    firstname = newValue;
    /Thanks in advance

    I am getting data into the firstname field in the jsp page typed in when I run the application. I also get the name of the person typed in to the method jbInit(), but the next to lines that has with the connection to to is not working properly.
    queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "INSERT INTO Persondata VALUES (\'7731\'," + firstname + ",\'07555563282\')\n", null, true, Load.ALL));
    database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:mindsn", "xxxx", "xxxx", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
    Now I do not get any errors, but the database is still not getting any data. Is the format for sending a variabel \'," + firstname + ",\' right???

  • NullPointerException while closing window and cancel updates

    I have a Quit button(a JButton) in a JFrame, when pressed, it
    check whether the QueryDataSet associated with the frame has been
    modified, if yes, then prompt user a Confirm Dialog. In the
    dialog, if user clicks YES, then the cancelUpdates() method in
    the Frame will be called to cancel all the updates, and close the
    window.
    But when I quited and closed the window, I got the following
    exception messages, none of them points out which line of code in
    my program is the one that produced the NullPointerException.
    Does anyone have the same experience? Any other idea about where
    the NullPointerException is from?
    Thanks.
    Shaomei Ruan
    Exception:
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at
    javax.swing.text.LabelView.syncFragments(LabelView.java:110)
    at
    javax.swing.text.LabelView.getPreferredSpan(LabelView.java:290)
    at
    javax.swing.text.ParagraphView.calculateMinorAxisRequirements(Par
    agra
    phView.java:642)
    at
    javax.swing.text.BoxView.checkRequests(BoxView.java:822)
    at
    javax.swing.text.BoxView.getMinimumSpan(BoxView.java:285)
    at
    javax.swing.text.BoxView.calculateMinorAxisRequirements(BoxView.j
    ava:
    794)
    at
    javax.swing.text.BoxView.checkRequests(BoxView.java:822)
    at javax.swing.text.BoxView.layout(BoxView.java:637)
    at javax.swing.text.BoxView.setSize(BoxView.java:151)
    at javax.swing.text.BoxView.modelToView(BoxView.java:198)
    at
    javax.swing.plaf.basic.BasicTextUI$RootView.modelToView(BasicText
    UI.j
    ava:1059)
    at
    javax.swing.plaf.basic.BasicTextUI.modelToView(BasicTextUI.java:6
    77)
    at
    javax.swing.text.DefaultCaret.repaintNewCaret(DefaultCaret.java:8
    28)
    at
    javax.swing.text.DefaultCaret$1.run(DefaultCaret.java:807)
    at
    javax.swing.SystemEventQueueUtilities.processRunnableEvent(System
    Even
    tQueueUtilities.java:354)
    at
    javax.swing.SystemEventQueueUtilities.access$0(SystemEventQueueUt
    ilit
    ies.java:350)
    at
    javax.swing.SystemEventQueueUtilities$RunnableTarget.processEvent
    (Sys
    temEventQueueUtilities.java:391)
    at
    java.awt.Component.dispatchEventImpl(Component.java:2376)
    at java.awt.Component.dispatchEvent(Component.java:2289)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:258)
    at
    java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at
    javax.swing.text.LabelView.syncFragments(LabelView.java:110)
    at
    javax.swing.text.LabelView.getPreferredSpan(LabelView.java:290)
    at
    javax.swing.text.ParagraphView.calculateMinorAxisRequirements(Par
    agra
    phView.java:642)
    at
    javax.swing.text.BoxView.checkRequests(BoxView.java:822)
    at
    javax.swing.text.BoxView.getMinimumSpan(BoxView.java:285)
    at
    javax.swing.text.BoxView.calculateMinorAxisRequirements(BoxView.j
    ava:
    794)
    at
    javax.swing.text.BoxView.checkRequests(BoxView.java:822)
    at javax.swing.text.BoxView.layout(BoxView.java:637)
    at javax.swing.text.BoxView.setSize(BoxView.java:151)
    at javax.swing.text.BoxView.modelToView(BoxView.java:198)
    at
    javax.swing.plaf.basic.BasicTextUI$RootView.modelToView(BasicText
    UI.j
    ava:1059)
    at
    javax.swing.plaf.basic.BasicTextUI.modelToView(BasicTextUI.java:6
    77)
    at
    javax.swing.text.DefaultCaret.repaintNewCaret(DefaultCaret.java:8
    28)
    at
    javax.swing.text.DefaultCaret$1.run(DefaultCaret.java:807)
    at
    javax.swing.SystemEventQueueUtilities.processRunnableEvent(System
    Even
    tQueueUtilities.java:354)
    at
    javax.swing.SystemEventQueueUtilities.access$0(SystemEventQueueUt
    ilit
    ies.java:350)
    at
    javax.swing.SystemEventQueueUtilities$RunnableTarget.processEvent
    (Sys
    temEventQueueUtilities.java:391)
    at
    java.awt.Component.dispatchEventImpl(Component.java:2376)
    at java.awt.Component.dispatchEvent(Component.java:2289)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:258)
    at
    java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at
    javax.swing.text.LabelView.syncFragments(LabelView.java:110)
    at
    javax.swing.text.LabelView.getPreferredSpan(LabelView.java:290)
    at
    javax.swing.text.ParagraphView.calculateMinorAxisRequirements(Par
    agra
    phView.java:642)
    at
    javax.swing.text.BoxView.checkRequests(BoxView.java:822)
    at
    javax.swing.text.BoxView.getMinimumSpan(BoxView.java:285)
    at
    javax.swing.text.BoxView.calculateMinorAxisRequirements(BoxView.j
    ava:
    794)
    at
    javax.swing.text.BoxView.checkRequests(BoxView.java:822)
    at javax.swing.text.BoxView.layout(BoxView.java:637)
    at javax.swing.text.BoxView.setSize(BoxView.java:151)
    at javax.swing.text.BoxView.modelToView(BoxView.java:198)
    at
    javax.swing.plaf.basic.BasicTextUI$RootView.modelToView(BasicText
    UI.j
    ava:1059)
    at
    javax.swing.plaf.basic.BasicTextUI.modelToView(BasicTextUI.java:6
    77)
    at
    javax.swing.text.DefaultCaret.repaintNewCaret(DefaultCaret.java:8
    28)
    at
    javax.swing.text.DefaultCaret$1.run(DefaultCaret.java:807)
    at
    javax.swing.SystemEventQueueUtilities.processRunnableEvent(System
    Even
    tQueueUtilities.java:354)
    at
    javax.swing.SystemEventQueueUtilities.access$0(SystemEventQueueUt
    ilit
    ies.java:350)
    at
    javax.swing.SystemEventQueueUtilities$RunnableTarget.processEvent
    (Sys
    temEventQueueUtilities.java:391)
    at
    java.awt.Component.dispatchEventImpl(Component.java:2376)
    at java.awt.Component.dispatchEvent(Component.java:2289)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:258)
    at
    java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
    null

    Used onunload event of html page. it looks working.
    Thanks,
    Alok

  • Tecra M9-136 - BSOD during Vista SP2 update

    Tecra M9-136 asked this morning to update to Vista SP2 and during the process the BSOD 0x0000007E arrived. Restarted in Safe Mode and the installer continued and then finally reported that the update had failed - and reverted to SP1. This took most of the morning.
    It will start in Safe Mode but on a normal boot-up, Vista SP1 gets through the fingerprint recognition and then fails with the same BSOD (it doesn't get as far as displaying the desktop).
    The laptop has BIOS level 1.80. I've tried in Safe mode to install 1.90 but it tells me that the battery has insufficient charge and the power adapter isn't attached. Both untrue.
    Stuck - need advice. Could this be a hard fault? Can't see how I can update anything if it's a soft fault.
    thanks

    The message with the BSOD mentioned checking BIOS and driver versions. Anyway, no change made to that.,
    I tried System Restore but the only available restore point was the SP2 installation. I thought Vista was supposed to save a restore point every 24 hours even if nothing new had been installed.
    I've now found in System Information / Windows Error Reporting several messages like this:
    28/09/2009 12:08 Windows Error Reporting Fault bucket 0x7E_NULL_IP_DRVNDDM+57bd, type 0&#x000d;&#x000a;Event Name: BlueScreen&#x000d;&#x000a;Response: None&#x000d;&#x000a;Cab Id: 0&#x000d;&#x000a;&#x000d;&#x000a;Problem signature:&#x000d;&#x000a;P1: &#x000d;&#x000a;P2: &#x000d;&#x000a;P3: &#x000d;&#x000a;P4: &#x000d;&#x000a;P5: &#x000d;&#x000a;P6: &#x000d;&#x000a;P7: &#x000d;&#x000a;P8: &#x000d;&#x000a;P9: &#x000d;&#x000a;P10: &#x000d;&#x000a;&#x000d;&#x000a;Attached files:&#x000d;&#x000a;C:\Windows\Minidump\Mini0928 09-04.dmp&#x000d;&#x000a;C:\Users\me\AppData\Local\Te mp\WER-75660-0.sysdata.xml&#x000d;&#x000a;C:\Users\me\AppData\L ocal\Temp\WER7D78.tmp.version.txt&#x000d;&#x000a;& #x000d;&#x000a;These files may be available here:&#x000d;&#x000a;C:\Users\me\AppData\Local\Mic rosoft\Windows\WER\ReportArchive\Report06d1c4b5

  • Cannot open and update IPhoto after upgrading to OXYosemite

    From the App store, I downloaded and installed OXYosemite. There are 2 more updates available: iPhoto and iMovie. When I try to upload them, the notice I get is "Update Unavailable with This Apple ID  This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."
    I have 2 apple IDs when I inquire about my ids. Signing in App Store with either of them, doesn't resolve the problem. I get the same notice. iTunes, Mac, mobile downloads, all use the same apple IP, only for the computer downloads from App Store isn't working.
    What should I do?
    Thanks, Sev

    I have the same problem and can't find out how to correct it.  Unable to update iPhoto or iMovie .. I get the same message as above user.  Help!

  • Error message: "playlists selected for updating no longer exist"

    I tried to update my ipod nano and I guess I had deleted a playlist, but since then, I have not been able to update. Every time I try, I get the following message:
    "Cannot be updated because all of the playlists selected for updating no longer exist."
    I haven't been able to highlight which playlists are selected to begin with.
    I read through the manual and thought that maybe rebooting the whole system might work. So I deleted Itunes from my computer and re-installed.
    Then I tried re-setting my ipod. So now I have nothing on my ipod.
    I also deleted everything from my library, thinking it might help to start from scratch. Nothing has worked.
    How do I "select" and "unselect" playlists so I can get up and running again?

    Here you go.
    http://discussions.apple.com/thread.jspa?messageID=607312&#607312

  • Error message iPod cannot update b/c all of the playlists no longer exist

    Hello. I have been getting this error message. "Songs on the iPod "MAR(the name of my iPod)" cannot update because all of the playlists selecting for updating no longer exist." And my playlists are still on the left side in my iTunes. They do exist. I have a feeling ths might have to do with the fact that on vacation the person I was visiting gave me a gift of putting all of his music that would fit into the external hard drive part of my iPod, and for the past week or so I have been putting that music onto my 40 GB portable hard drive at home. I suspect I took a vital folder out of my iPod by accident. Right now I have the folder iPod_control if I open my iPod up in My Computer. Am I missing something? Right now my iPod is empty because iTunes made a composite playlist last week and I deleted it thinking I could get my real playlists back. Can you help me, or reccomend a site/someone who can? Thank you.
    PC   Windows XP  

    hiya!
    And my playlists are still on the left side in my iTunes. They do exist.
    let's just doublecheck this. folks get this message if they have "automatically update selected playlists only" selected in their itunes "ipod" preferences tab. so bring up that tab ("edit > preferences", click "ipod" while the ipod is showing up in the source list), and do a playlist by playlist crosscheck of the playlists selected in that tab, and the playlists showing up in the itunes sourcelist.
    is there any playlist selected in the preferences tab that isn't showing up in the sourcelist?
    love, b

  • Video IPOD no longer recognized by Itunes and wont Update

    This is a long complicated issue. My Ipod has been working flawlessly until 2 weeks ago. Someone tried to plug it up to their computer to charge it and it wiped out my library and added their library. At first i was thinking no big deal, i will just reconnect it with my computer and it will load my library back on. However once connected to my computer it is not recognized by itunes. So i did a reset , which seemed to be working great and it started "updating" about 80% through that process it gave me an error message that says " This disc can not be written to or written from" now I have no idea why it would say that? and although it seems completely wiped out and useless, it still shows that much memeory is missing in the "about ipod" screen on the ipod. So i know the information is there somewhere , somehow?... Anyway I dont know what to do, Does anybody have any suggestions?
    Oh and I have also uninstalled and reinstalled the Itunes program to make sure it is up to date. WOuld adding new songs to my library have caused this problem?

    1. Try Resetting the iPod. Hold Select and Menu for 6-10 seconds - until you see the Apple Symbol.
    2. Use iPod Updater to restore your iPod to factory settings.
    See if those two steps clear up your problem.

  • Error during OS 4.2 update; Ipod no longer recognized by windows or itunes;

    I've had my 3G 8gb since last Feb and never updated the OS (3.1.3). Yesterday I tried updating to 4.2. (OS: Windows Vista 64bit Home Premium; iTunes: 10.1.1.4) There was an error (unfortunately did not make a note of). Now my ipod touch is stuck in "Recovery Mode" and cannot be seen by Windows or iTunes. Windows does detect new hardware but when I browse for the drivers, I get the error "Could not find driver software" after I pointed exactly where it was located in C:\Program Files\Common Files\Apple\Mobile Device Support and C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers. I've tried removing all Apple software from my computer and then reinstalling iTunes but I get the same results. I don't know what else to try. Any ideas? Thanks!

    I found a solution last night through http://support.apple.com/kb/ts1538. But thank you for trying. The worst part was that I was doing the right thing all along but I think there is a bug in Vista (or I don't understand why I couldn't do it the way I was). On the window that appears after I clicked "Browse my computer for driver software", there are 2 options. The first says "Browse for driver software on your computer" which has an edit box under it and a "Browse" button next to the edit box which allows you to pick the parent directory that driver is in. The second option says "Let me pick from a list of device drivers on my computer". I knew where the drivers were so I was doing option one and it would not work (many repeated attempts after re-installing iTunes, etc.) - VERY FRUSTRATING. But now I'm up and running!!!

  • Error while updating a plan

    Hi,
    I have encountered an error while updating a plan. While i update the uplan , the grid gets filled but it throws a message stating
    "Maximum Number of Result Blocks has been reached"
    Maximum number of Result Blocks has been reached.
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0xD4]
    Error while processing the data for the step 'Grid'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    Maximum number of Result Blocks has been reached.
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0xD4]
    Error while processing the data for the step 'Grid'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    Update of Plan "deposittest created 7/19/2007 5:11:50 PM" failed.
    [Oracle BAM Enterprise Link error code:  PlanMgr -- 0x1, PlanMgr -- 0xD5]
    The data updation stops after the row count 49900.
    Please help to resolve this error .
    Thanks in advance.
    Regards,
    Lathika

    Hi,
    in BAM-Administrator you should rraise Parameter "MaxResultBlocks".
    BAM originaly is al licensed Software from Group1 named "Sagent Data Flow".
    This may help searching the web.
    Greetz,
    GOI

  • Macbook4,1 10.6.8 and firmware update - what went wrong?

    Macbook 4,1 2008 2.4Ghz (not unibody). I recently reformatted my hard drive and reinstalled 10.6 from the Retail DVD and all seemed to go well. The MB was working fine up to that point. I then set up the MB (network, date and time, etc.) and repaired permissions.
    I then checked Software Update and downloaded and installed the recommended updates to 10.6.8.
    Again, all seemed to go fine. System booted and I repaired Permissions again. I went to the Apple web site, a couple of other web sites, and Software Update found another update to install: Firmware. Though I don't remember what version.
    I clicked OK and it installed.
    Upon reboot, it seemed to install okay.
    But then I left the Macbook and it went into Sleep.
    I didn't come back to it again until the next day.
    When I pressed a key to wake it, I got what I now know is the screen that appears after you wake it from SAFE SLEEP. As per this Apple KB article: http://support.apple.com/kb/HT1757.
    And this is where the problems started.
    After the MB woke to the Safe Sleep screen, which shows the desktop a little "out of focus", the progress bars started filling in from left to right, BUT before they completed, the screen went BLACK.
    And it has had a problem with black screen ever since. I can boot the MB from internal or external HD or from DVD, and it seems to boot fine. Boot chime, Apple logo, spinning wheel, then at the point where it pauses, blue screen, then goes to desktop, instead the screen goes black.
    It finishes booting, but seems to go into Sleep.
    I can wake it by pressing a key, but the screen either comes on and goes black again after 10 seconds, or I get the Safe Sleep wake screen, and then it goes black after 10 seconds.
    And at boot or when waking the MB, the front LED flashes 5 times. There are no error beeps.
    I've tried changing RAM, but problems remain.
    So what's all this? Any ideas?
    The display doesn't seem dead, as it works to boot and wake. The MB works fine with external monitor.
    It's weird, but I can't think of anything apart from the Firmware update. The problems started right after installing it.
    Unfortunately, this model of Macbook doesn't have a Firmware Restoration image to download and burn to CD. It is the ONLY Mac at this point that doesn't have this!
    I called Apple support and even bought the 49 Euro Pay Per Incident service, which proved to be the same as throwing 49 Euro out the window. The only "technical" support they provided was to Reset the SMC, which you can find out about FOR FREE at the Apple website. And which I'd done anyway. I'd also reinstalled the MacOS. Don't want to beef too much, but sheesh, you've already got a Macbook that might need costly repairs, and they make you pay 49 Euro BEFORE they even ask you about the problem and what you've done to try to solve it. I'm tempted to say "ripoff". I mean, if all they can offer you is the advice to reset the SMC - which Apple offers for free at their website - then that's pretty poor service for 49 Euro, to say the least.
    Apart from the wasted 49 Euro, I'm pretty peeved about the Firmware update (or so it seems) wrecking a perfectly working 2008 Macbook. I don't know how to convince Apple of this, but I'm certainly going to try.

    Thanks for the reply.
    Re. the Displays setting, the Macbook display isn't recognized and mirroring isn't an available option.
    I've scoured the net and the idea of replacing the PRAM battery may be something to try. I read a post by a guy with a Macbook logic board screwed up by a Firmware update, which he solved by replacing the PRAM battery, as when you disconnect it you reset the logic board.
    Which capacitor?
    No luck so far with talking to Apple. I will try to get hold of someone a little more tech savvy and/or in a position of authority, as it seems that the Firmware is the culprit. Obviously a million other things could go wrong with a Macbook, but given the timing here it looks like the Firmware. Firmware updates can and occasionally do screw up a computer, as most manufacturers will warn you before you apply the update: PC makers, printer makers, etc. And they probably warn you that it's all your responsibility if anything goes wrong. But re. the Apple Firmware update:
    1) it came thru Software Update
    2) there was no warning
    3) to make things worse, there's no Firmware Restoration image that I can burn to a CD to reflash the logic board: this is the only Apple computer that doesn't have a Firmware Restoration option
    I'll try to get thru to a manager and convince him/her that the firmware may have been the cause.
    Do you think an authorized Apple tech might have access to some way to do a firmware restoration? Something not avaiable to mere mortals? Because if not, the only solution looks like a new logic board.

  • I tried to install latest OS update. Recd error installing. IT tried to load the upgrade in Safe Mode. Now system will not boot up. IT says I have to do a clean install which loses all data.

    After receiving an error when I try to install the latest update of OS-X, I took my laptop to oour schools IT dept. They tried to run the update in safe mode and then they got an error saying the system could not find the hard drive. Now they want to run a clean install which loses 1000's of docs and pictures. I have Block I exams in med school next Monday and all of my notes and slides are on that hard drive.
    The IT dept took the hard drive out and tried to back it up and they said they other computer could not connect or find my hard drive.
    Major panic....
    I have Norton antivirus and have never found any viruses on the system. I also have a program called ExamSoft which some other students here have noted they had similar crashes. Not sure if that is the issue...

    Several take home messages here:
    always back up before you update.
    always back up anything you don't want to lose. Kind of like flossing. Only floss the teeth you don't want to lose.
    Norton is very, very bad software, and you should get rid of it.
    You don't need antivirus software on your mac. Antivirus software on macs causes more trouble than it is worth.
    Your hard drive may be failing and thus may not be salvageable.
    You could try booting into the recovery partition and seeing if you can repair your hard drive.
    If that doesn't work, then there is a small chance that a third party utility (like Disk Warrior or TechTool) might be able to fix your drive (if it is not failing).
    If that doesn't work, you may be able to send your drive and a lot of cash to a drive recovery service and see if they can get your files off it.
    In the mean time, get notes and slides from a (smart) friend.

  • Adobe Photoshop CS2 Error messages after update to mac os 10.4.6

    After updated to mac os 10.4.6 everytime I use Photoshop CS2 I receive an error message "Could not complete your request because of a program error"
    I did all the workarounds that were described in document 331627 from Adobe's website and nothing worked.
    I also subscribe to maxosx.com support and someone suggested removing the legal.localized/Tien...file from the photoshop cs2/legal directory, but everytime I tried to select the directory "legal" from within the finder view, it disappeared and closed the finder window.
    HELP!

    Did you upgrade from a previous version of OS X like 10.3.x or 10.2.x or from a prior version of 10.4.x? If the former, there are probably some files in your previous system folder that need to be restored.
    Otherwise, double click Photoshop when it's closed, and then IMMEDIATELY hold Command + Option + Shift. You'll get a box for resetting the settings. Select Yes and maybe that will help.
    --Ryan

Maybe you are looking for

  • I am suddenly unable to receive calls on my iPhone 4S.  Is it possible that the age of the phone will affect its ability to receive calls? HELP!

    I am suddenly unable to receive calls on my iPhone 4S.  I have spent 2 hour-long sessions with technical support and although they were very nice, it is still not fixed. When I try to call the phone from a land line, it doesn't ring AND it doesn't re

  • Dual boot Win7/Win8 not showing

    Hi, after installing Windows 8 parallel to Windows 7, Windows 7 loads without showing dual boot. But: dual boot shows when inserting the Windows 8 installation dvd (without booting from it, though!). I thought that maybe the problem is about two volu

  • Album name change

    Hi, Change I do in iTunes gets reflected to actual music file stored in PC ie if i set Artists as SSS for songs in iTunes then if I check properties of a song it has Artists set to SSS. But if i do a change to a song which was already imported to iTu

  • Explain Customer Exit (ABAP) Written in CMOD

    Hi Experts, Please explain what this Customer Exit (CMOD) is performing Here var1 is the user entered expiry date and test1 is the newly created customer exit variable. What happens if user enters 01.05.2008 to 31.05.2008 data: yrr1(4) type n, mn(2)

  • Query to get the Quantities on Reservations window in Inventory

    Hi All, how can I get the Onhand Quantity and Available quantity on Item Reservations Details window( Inventory-->On hand Qunatity-->Reservations) in Oracle Apps 11i.I need to build a query wih all the reservation details.I need help in calculating t