An absurd problem

dear all
one of my method in a session bean(WebSphere) runs very fine when called from ejb but gives error when the same code is written and directly called in jsp file. actually this method saves data in DB2.the method uses a helper class and the fields of that class are initialized and an instance is passed in the method, but time and again, when directly called it gives the same error
COM.ibm.db2.jdbc.DB2Exception: [IBM][CLI Driver][DB2/NT] SQL0010N The string constant beginning with "'" does not have an ending string delimiter. SQLSTATE=42603
the code is --
String ins = " insert into CONTRACT(I_CONTRACT_ID,I_PROPOSITION_ID,S_NEGOTIATION_ID,S_SNO,V_BUYER_ID,V_BUYER_REF_ID,V_SELLER_ID,V_SELLER_REF_ID,V_PRODUCT_NAME,V_TYPE,C_ORIGIN,I_SPEC_DETAILS_ID,T_CREATED_ON,C_CREATED_BY,V_UNIT,F_TOTAL_QUANTITY,R_MIN_LOT_SIZE,V_PACKING,R_TOLERANCE,C_PRICE_OPTION,C_CURRENCY,F_UNIT_PRICE,T_FIXED_DATE,F_EXCH_PRICE_FIXED,C_OPT_TO_FIX,D_FIXED_FROM_DATE,R_DIFFERENTIAL,V_EXCH_CONTRACT,C_BASE_MONTH,V_EXCHANGE,V_PER_UNIT,V_PARITY,V_PORT,C_COUNTRY,C_SCHEDULE,V_PAYMENT_MODE,C_LC_TYPE,V_NEGOTIATING_BANK,C_CONFIRM_OPT,D_OPEN_BY,D_LC_VALIDITY,C_DESPATCH_OPT,V_DESPATCH_ADD,V_PAYMENT_PLACE,S_DAYS_DEFER,V_DEFER_FROM,R_RATE_INTEREST,V_OTHER_PAYMENT_TERMS,V_LOAD_RATE_UNIT,R_LOAD_RATE,V_LOAD_RATE_EX,C_LOAD_RATE_EX_OPT,V_DISCH_RATE_UNIT,R_DISCHARGE_RATE,V_DISCH_RATE_EX,C_DISCH_RATE_EX_OPT,V_OTHER_CONDITIONS,V_BASE_CONTRACT_ASSOC,V_BASE_CONTRACT_NO,V_LAW_JURISDICTION,V_FINAL_WT_OPT,V_FINAL_WT_DTL,D_DLVRY_FROM,D_DLVRY_TO,C_SQUARED,C_DLVRY_PERIOD_TYPE,S_DLVRY_PERIOD,S_DLVRY_YEAR,V_DLVRY_SCHEDULE_ID,V_ARBITRATION,V_DEMRAGE_DESPATCH,V_PACK_OPT,I_BUYER_ORG_ID,I_SELLER_ORG_ID,V_MTPL_DLVRY_TYPE,V_MTPL_DLVRY_QTY,V_MTPL_DLVRY_PERIOD,V_SYMBOLS) values(" + ci.I_CONTRACT_ID + "," + ci.I_PROPOSITION_ID + "," + ci.S_NEGOTIATION_ID + "," + ci.S_SNO + ",'" + ci.V_BUYER_ID + "','" + ci.V_BUYER_REF_ID + "','" + ci.V_SELLER_ID + "','" + ci.V_SELLER_REF_ID + "','" + ci.V_PRODUCT_NAME + "','" + ci.V_TYPE + "','" + ci.C_ORIGIN + "'," + ci.I_SPEC_DETAILS_ID + ", current timestamp,'" + ci.C_CREATED_BY + "','" + ci.V_UNIT + "'," + ci.F_TOTAL_QUANTITY + "," + ci.R_MIN_LOT_SIZE + ",'" + ci.V_PACKING + "'," + ci.R_TOLERANCE + ",'" + ci.C_PRICE_OPTION + "','" + ci.C_CURRENCY + "'," + ci.F_UNIT_PRICE + ",'" + ci.T_FIXED_DATE + "'," + ci.F_EXCH_PRICE_FIXED + ",'" + ci.C_OPT_TO_FIX + "','" + ci.D_FIXED_FROM_DATE + "'," + ci.R_DIFFERENTIAL + ",'" + ci.V_EXCH_CONTRACT + "','" + ci.C_BASE_MONTH + "','" + ci.V_EXCHANGE + "','" + ci.V_PER_UNIT + "','" + ci.V_PARITY + "','" + ci.V_PORT + "','" + ci.C_COUNTRY + "','" + ci.C_SCHEDULE + "','" + ci.V_PAYMENT_MODE + "','" + ci.C_LC_TYPE + "','" + ci.V_NEGOTIATING_BANK + "','" + ci.C_CONFIRM_OPT + "','" + ci.D_OPEN_BY + "','" + ci.D_LC_VALIDITY + "','" + ci.C_DESPATCH_OPT + "','" + ci.V_DESPATCH_ADD + "','" + ci.V_PAYMENT_PLACE + "'," + ci.S_DAYS_DEFER + ",'" + ci.V_DEFER_FROM + "'," + ci.R_RATE_INTEREST + ",'" + ci.V_OTHER_PAYMENT_TERMS + "','" + ci.V_LOAD_RATE_UNIT + "'," + ci.R_LOAD_RATE + ",'" + ci.V_LOAD_RATE_EX + "','" + ci.C_LOAD_RATE_EX_OPT + "','" + ci.V_DISCH_RATE_UNIT + "'," + ci.R_DISCHARGE_RATE + ",'" + ci.V_DISCH_RATE_EX + "','" + ci.C_DISCH_RATE_EX_OPT + "','" + ci.V_OTHER_CONDITIONS + "','" + ci.V_BASE_CONTRACT_ASSOC + "','" + ci.V_BASE_CONTRACT_NO + "','" + ci.V_LAW_JURISDICTION + "','" + ci.V_FINAL_WT_OPT + "','" + ci.V_FINAL_WT_DTL + "','" + ci.D_DLVRY_FROM + "','" + ci.D_DLVRY_TO + "','" + ci.C_SQUARED + "','" + ci.C_DLVRY_PERIOD_TYPE + "'," + ci.S_DLVRY_PERIOD + "," + ci.S_DLVRY_YEAR + ",'" + ci.V_DLVRY_SCHEDULE_ID + "','" + ci.V_ARBITRATION + "','" + ci.V_DEMRAGE_DESPATCH + "','" + ci.C_PACK_OPT + "'," + 12 + "," + 19 + ",'" + ci.V_MTPL_DLVRY_TYPE + "','" + ci.V_MTPL_DLVRY_QTY + "','" + ci.V_MTPL_DLVRY_PERIOD + "','" + ci.V_SYMBOLS + "')";               
st.executeUpdate(ins);
here it gives error
amazingly when i tried to get generated query string ins and ran it at DB2 command line it worked fine
plz help
thx
pawan

yeh some of the terms r not with single quotes caz either these r int,float or likes (as defined in helper class ContractInfo)which donot requires single quotes.
the amazing thing is when i run the generated String ins directly on DB2 command line it works very fine
the generated ins is
String ins="insert into CONTRACT(I_CONTRACT_ID,I_PROPOSITION_ID,S_NEGOTIATION_ID,S_SNO,V_BUYER_ID,V_BUYER_REF_ID,V_SELLER_ID,V_SELLER_REF_ID,V_PRODUCT_NAME,V_TYPE,C_ORIGIN,I_SPEC_DETAILS_ID,T_CREATED_ON,C_CREATED_BY,V_UNIT,F_TOTAL_QUANTITY,R_MIN_LOT_SIZE,V_PACKING,R_TOLERANCE,C_PRICE_OPTION,C_CURRENCY,F_UNIT_PRICE,T_FIXED_DATE,F_EXCH_PRICE_FIXED,C_OPT_TO_FIX,D_FIXED_FROM_DATE,R_DIFFERENTIAL,V_EXCH_CONTRACT,C_BASE_MONTH,V_EXCHANGE,V_PER_UNIT,V_PARITY,V_PORT,C_COUNTRY,C_SCHEDULE,V_PAYMENT_MODE,C_LC_TYPE,V_NEGOTIATING_BANK,C_CONFIRM_OPT,D_OPEN_BY,D_LC_VALIDITY,C_DESPATCH_OPT,V_DESPATCH_ADD,V_PAYMENT_PLACE,S_DAYS_DEFER,V_DEFER_FROM,R_RATE_INTEREST,V_OTHER_PAYMENT_TERMS,V_LOAD_RATE_UNIT,R_LOAD_RATE,V_LOAD_RATE_EX,C_LOAD_RATE_EX_OPT,V_DISCH_RATE_UNIT,R_DISCHARGE_RATE,V_DISCH_RATE_EX,C_DISCH_RATE_EX_OPT,V_OTHER_CONDITIONS,V_BASE_CONTRACT_ASSOC,V_BASE_CONTRACT_NO,V_LAW_JURISDICTION,V_FINAL_WT_OPT,V_FINAL_WT_DTL,D_DLVRY_FROM,D_DLVRY_TO,C_SQUARED,C_DLVRY_PERIOD_TYPE,S_DLVRY_PERIOD,S_DLVRY_YEAR,V_DLVRY_SCHEDULE_ID,V_ARBITRATION,V_DEMRAGE_DESPATCH,V_PACK_OPT,I_BUYER_ORG_ID,I_SELLER_ORG_ID,V_MTPL_DLVRY_TYPE,V_MTPL_DLVRY_QTY,V_MTPL_DLVRY_PERIOD,V_SYMBOLS,V_MTPL_DLVRY_PRICE,V_MTPL_DLVRY_DIFF,V_MTPL_DLVRY_BMONTH) values(0,0,0,0,'','','','','','','',0, current timestamp,'','',0.0,0.0,'',0.0,' ','',0.0,'2001-11-21 10:20:33.583',0.0,' ','2001-11-21',0.0,'','','','','','','',' ','',' ','',' ','2001-11-21','2001-11-21',' ','','',0,'',0.0,'','',0.0,'','','',0.0,'','','','','','','','','2001-11-21','2001-11-21',' ',' ',0,0,'','','','',0,0,'','10,20,30,40,50','','','5,6,7,8,9','1,2,3,4,5','')
if there is any single quotes error then why it would run on commandline?
really intriguing
pawan

Similar Messages

  • Absurd problem with MicroSDHC

    Hi all,
    I have a nintendo DS and I use it with a 4GB microSD card, initially both my computer and my DS could read the card without any problem but now my computer can't recognize any more the microSD while the nintendo works like a charm.
    I have 3 card reader:
    first one) Now this card reader doesn't work with my card and he also doesn't take notice when this microSD is inserted, dmesg doesn't says anything and no device is created. For him my card is totaly broken.
    second one)This card reader recognize when I insert the card but no device is created and the card reader keeps restarting every 5 seconds more or less.
    third one)If I'm lucky this card reader works and this is the output of dmesg:
    [ 88.198072] tifm_core: MMC/SD card detected in socket 0:1
    [ 88.307305] mmc1: new SDHC card at address d555
    [ 88.380612] mmcblk0: mmc1:d555 SU04G 3979776KiB
    [ 88.380777] mmcblk0: p1
    [ 88.440177] mmcblk0: error -110 transferring data
    [ 88.440192] end_request: I/O error, dev mmcblk0, sector 0
    [ 88.440199] Buffer I/O error on device mmcblk0, logical block 0
    [ 88.440213] end_request: I/O error, dev mmcblk0, sector 8
    [ 88.440218] Buffer I/O error on device mmcblk0, logical block 1
    [ 88.440223] end_request: I/O error, dev mmcblk0, sector 16
    [ 88.440227] Buffer I/O error on device mmcblk0, logical block 2
    [ 88.440233] end_request: I/O error, dev mmcblk0, sector 24
    [ 88.440237] Buffer I/O error on device mmcblk0, logical block 3
    [ 88.442603] mmcblk0: error -110 sending read/write command
    [ 88.442612] end_request: I/O error, dev mmcblk0, sector 0
    [ 88.442618] Buffer I/O error on device mmcblk0, logical block 0
    [ 88.450035] mmcblk0: error -110 sending read/write command
    [ 88.450048] end_request: I/O error, dev mmcblk0, sector 8192
    [ 88.450057] Buffer I/O error on device mmcblk0p1, logical block 0
    [ 88.450070] end_request: I/O error, dev mmcblk0, sector 8200
    [ 88.450075] Buffer I/O error on device mmcblk0p1, logical block 1
    [ 88.450081] end_request: I/O error, dev mmcblk0, sector 8208
    [ 88.450086] Buffer I/O error on device mmcblk0p1, logical block 2
    [ 88.450092] end_request: I/O error, dev mmcblk0, sector 8216
    [ 88.450096] Buffer I/O error on device mmcblk0p1, logical block 3
    [ 88.457250] mmcblk0: error -110 sending read/write command
    [ 88.457263] end_request: I/O error, dev mmcblk0, sector 8192
    [ 88.457272] Buffer I/O error on device mmcblk0p1, logical block 0
    [ 88.483545] mmcblk0: error -110 sending read/write command
    [ 88.483554] end_request: I/O error, dev mmcblk0, sector 8192
    [ 88.483562] end_request: I/O error, dev mmcblk0, sector 8200
    [ 88.483565] end_request: I/O error, dev mmcblk0, sector 8208
    [ 88.483568] end_request: I/O error, dev mmcblk0, sector 8216
    [ 88.486506] mmcblk0: error -110 sending read/write command
    [ 88.486515] end_request: I/O error, dev mmcblk0, sector 8192
    [ 88.488559] mmcblk0: error -110 sending read/write command
    [ 88.488567] end_request: I/O error, dev mmcblk0, sector 0
    [ 88.488575] end_request: I/O error, dev mmcblk0, sector 8
    [ 88.488580] end_request: I/O error, dev mmcblk0, sector 16
    [ 88.488585] end_request: I/O error, dev mmcblk0, sector 24
    [ 88.490056] mmcblk0: error -110 sending read/write command
    [ 88.490063] end_request: I/O error, dev mmcblk0, sector 0
    [ 88.491928] mmcblk0: error -110 sending read/write command
    [ 88.491935] end_request: I/O error, dev mmcblk0, sector 0
    [ 136.200925] mmcblk0: error -110 sending read/write command
    [ 136.200938] end_request: I/O error, dev mmcblk0, sector 0
    [ 136.200974] FAT: unable to read boot sector
    [ 136.533209] mmcblk0: error -110 sending read/write command
    [ 136.533221] end_request: I/O error, dev mmcblk0, sector 8192
    [ 136.533252] FAT: unable to read boot sector
    And mmcblk0 and mmcblkp1 are created, if I try to mount one of this device I got an error which says "superblock cannot be read".
    I have also tried to copy the content of the card with dd or dd_rescue but both of this programs reported an I/O error and no bytes are copied.
    If I try to format the card with cfdisk a "device cannot be read" error is reported.
    If I'm unlucky when I insert the card this error is reported by dmesg:
    [ 550.206893] tifm_core: MMC/SD card detected in socket 0:1
    [ 550.459351] mmc1: error -110 whilst initialising SD card
    And no device are created.
    Both of these 3 card reader works with every card I've tried so they aren't broken. It's possible that the nintendo DS break an sd card so badly? But the card works well with the DS and I don't figure out why mi pc can't read this thing anymore...
    Any advices?
    I'll thank you for reading my post and I apologize for my bad english
    Federico
    Last edited by Foschini (2008-09-14 10:50:25)

    iphitus wrote:Card readers need special support for SDHC - simply supporting SD isn't enough. Are all three SDHC rated readers?
    I've used this sdhc card whit the first card reader in the past so I'm sure this one is a sdhc rated reader, but they stopped reading my card about a week ago (as I've already wrote in the first post). I haven't another sdhc and I don't now if is my sdhc broken or is a reader fault...
    The second card reader is an old Hama so I don't know if he can read sdhc card.
    The third one (the only I can get some results) is a fairly new Texas instruments 5in1 card reader but I'm not sure if is sdhc ready.
    iphitus wrote:Second, is the card a cheap/generic one? Some cheap/generic ones from ebay and places tend not to last too long...
    Yeah the card is a cheap one but my Nintendo DS still reading it without a problem so I think this device break/corrupt the card in some way
    Last edited by Foschini (2008-09-14 14:10:22)

  • I'm asked to allow add-ons install after every reboot (all the add-ons list, one by one)

    Every time I reboot, when I lauch Firefox, I get one tab for each "installed" extension, asking to "allow the install" of the extension.
    Now that I'm thinking about it, the problem persists since firefox 5 or 6, but it is only now at 8 that it shows me a tab for each extension. Before the alerts were hidden in the extensions manager.
    So, After I installed the extension, there is no reason to ask me again and again to "install it" or "allow it".
    The "add-on compatibility reporter" I installed only a couple of days ago, so I can have Google toolbar back.
    How can I get rid of this absurd problem?

    Do not double-click the file, but use "Open with" in the right-click context menu to open the file in a text editor like Notepad.
    You can copy the file to another folder or let Windows create a copy with a number appended to the name in the same folder.

  • Issue with the Total in BW Report

    Hi,
    We have recently transported the Aggregates in the Production environment. Now we are facing absurd problem.When we are executing the report the Total given by BW is not matching with the exact total of the Values.
    Example:
                          Values (BW Total)    Values (Exact Totals)
    1                      10                            10
    2                     10                            10
    3                     10                             10
    4                     10                             10
    5                    10                             10
    Total Row         53                             50
    All the Characteristics or Nodes are same as before. We have issue with the Key Figure and Calculated Key Figure.
    There is no pattern followed in the variation of the totals.Please help; let me know if you need more information.

    Hi.
    Please check if ll the data is rolled up in the aggregates. Also check the consistency of aggregates from RSRV.
    Hope this helps.
    Thanks,
    Mayuri

  • Browser Virus Malware Adware etc.  HELP!

    I have been trying for 3 days to kick this absurd problem off of my Macbook Pro.  It feels like I have a virus/malware/adware situation that is making me feel like I'm back on a PC (UGHHHHH).
    BEFORE THE PROBLEM:
    I kept getting "scratchdisk" or "startup disk" is full notices so I could not download the new OS
    I started searching the web for solutions
    I started removing all unneeded files
    I used Clean My Mac to remove unwanted/unneeded files
    I downloaded OS X 10.9.5
    THE PROBLEM:
    The following things occur when I attempt to use any of the 3 browsers: Google Chrome, Safari, Firefox:
    pop up windows appear ALL over the place
    Pop up windows block my ability to use the intended web page
    tabs automatically open for Wix, Mackeeper, Credit Check websites etc.  (It's infuriating!)
    Sites I am attempting to use fail to respond
    ACTIONS TAKEN:
    run Clean My Mac (nada)
    delete all cookies (nada)
    trash or uninstall any/all unknown apps/programs
    uninstall Google Chrome
    uninstall Firefox
    reset Safari
    some terminal exercise from an Apple forum (did...nada)
    RESOLVE:
    NOTHING seems to be working...I'm about to launch my computer out the window... HELP!?

    There is no need to download anything to solve this problem.
    A.
    You may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Internet criminal behind VSearch has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    B.
    Remove "MacKeeper" as follows. First, back up all data.
    "MacKeeper" is a scam with only one useful feature: it deletes itself.
    Note: These instructions apply to the version of the product that I downloaded and tested in early 2012. I can't be sure that they apply to other versions.
    If you have incompletely removed MacKeeper—for example, by dragging the application to the Trash and immediately emptying—then you'll have to reinstall it and start over.
    IMPORTANT: "MacKeeper" has what the developer calls an “encryption” feature. In my tests, I didn't try to verify what this feature really does. If you used it to “encrypt” any of your files, “decrypt” them before you uninstall, or (preferably) restore the files from backups made before they were “encrypted.” As the developer is not trustworthy, you should assume that the "decrypted" files are corrupt unless proven otherwise.
    In the Finder, select
              Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A. The "MacKeeper" application is in the folder that opens. Quit it if it's running, then drag it to the Trash. You'll be prompted for your login password. Click the Uninstall MacKeeper button in the dialog that appears. All the other functional components of the software will be deleted. Restart the computer and empty the Trash.
    ☞ Quit MacKeeper before dragging it to the Trash.
    ☞ Let MacKeeper delete its other components before you empty the Trash.
    ☞ Don't try to drag the MacKeeper Dock icon to the Trash.

  • Lightroom not seeing RAW images from Canon 20D

    I am running Lightroom and if I take RAW images on the Canon 20D and I click Import, select the 20D as the source, it says "No images to import" now if I open the EOS transfer utility and download it there, save it as a CR2 and then Open it in Lightroom it all works fine. Am I doing something wrong?

    I'm having horrible problems uploading my RAW files, captured with my 20D, using a cardreader. More often than not, Lightroom hangs after a dozen or two files, though more are imported than are actually displayed. Even when a "successful" import occurs, at least ten or fifteen files are ignored or rejected for reasons that are utterly unclear. I never have similar problems with Photoshop Bridge.
    I'm running Windows XP with 2GB of RAM, an AMD Athlon 64 3400 Processor (2.2 GHz), NVidia GForce FX5500 graphics card, and an absurd amount of free space in my RAID array twin internal 250GB HD's and 320GB external drive. Courtesy of absurd problems with Roxio in the past, I've updated DirectX and all my drivers and UNinstalled and roll-back my OS to Windows MediaPlayer 10 (ver. 11 really screwed up my system, a problem lots of people, apparently, have encountered).
    PLEASE HELP! I've read and heard so much positive feedback on Lightroom - but for me, the darn thing, thus far, has been a bit of a waste of money. Workflow tools aren't worth anything if the beginning of the proces - uploading images - is a huge problem.
    Regards,
    Bill
    [email protected]

  • 1.4.1.1 many images still not loading in browser

    I can't believe it.
    A LOT of people use the smartphone to go online, I mean A LOT.
    and what did palm do with the browser? get a nice ACID3 score? how much day to day benefit does it have? ZERO
    and the problems. slight large images stop loading, this is absurd problem and I can't believe its not on the fix list with 1.4.1.1.
    Lets get real here, with this problem, it means it can't be used as a BASIC decent browser. Now thats a big problem if you want to compete with iPhone, Android.
    I would make other suggestions such as password remembering, inline search, etc, but for god sake, fix the basics!

    I couldn't agree more. I use this browser every day and it's a frustrating experience having seemingly half or more of all images on the internet unviewable! What is this arbitrary size limitation about?
    too many cards: please, can someone tell us? Will this be a permanent design flaw or can this be fixed? Give us some hope here. I love the potential of webos but is this Pre up to the task? I'm losing my patience. This is NOT the multitasking phone we were sold on and I tell people as much.

  • Hierarchy Table not shown

    Hi MDMTechies,
    I am facing a very absurd problem.
    The XSD that I have created is showing me the hierarchy table.
    But when I connect it to the syndicator through the destination properties, it is not showing me any of the hierarchy tables in the destination items.Rest all tables - flats as well as qualified are there.
    Has anybody come across the same problem??
    Thanks,
    Minaz

    Hi Aishwarya,
    The blackberry doesnt support a table with property "Grouped column" for its columns.
    Please try the following to display table in BlackBerry.
    1. Insert a table child ui element to your view.
    2. In the context menu of your table ui element, choose "Insert Column". Add as many columns to the table as you need.
    3. Now in the context menu of each column element, choose "Insert TableCellEditor - Text View".
    4. Now for each column element, do the context binding.
    Hope this solves your problem.
    Regards,
    Sunil

  • Absurd Startup Problems

    Installed Oracle 11g on Red Hat Enterprise Linux 6.4
    Background:
    I have...laughable linux knowledge,  combed through a lot of the google results, and still have nothing
    I get this message trying to start sqlplus (have tried ./sqlplus / as sysdba; gives same message)
    Error 6 initializing SQL*Plus
    Message file sp1<lang>.msb not found
    SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
    *Que in the laughable linux knowledge*  My PATH:
    /usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/victor/bin:$ORACLE_BASE/product/11.2.0/dbhome_1/bin
    ORACLE_HOME =  $ORACLE_BASE/product/11.2.0/dbhome_1
    ORACLE_BASE=HOME/app/oracle
    ORACLE_SID=orcl
    I have the .msb file
    I've set my ORACLE_HOME...did I set it correctly? If I didn't (and I know this is a very newbie question) may you please show me how?
    Even on the very off chance that I did set it correctly. I still get the same error.
    If the solution is a "simple" 'you need to set in bash.profile or you need to set this or w/e'... I can assure you that right now my mind is fuming and therefore I probably already tried the "simple" solution to the above mentioned PATH problem (I just don't remember having tried what).
    It is worth mentioning that even as superuser (#) I'm having trouble executing...everything (./bash....... ./bashrc ..... .listener.ora <-my findings indicate that the Error 6 problem may be connected with this and believe me that is whole other can of miserable worms on my system in order to set that)
    Nonetheless, please please help.

    406c9deb-3b62-417a-9019-c66a3ca44be2 wrote:
    Thanks for the reply PaulM.
    Thanks DK2010. It worked but now there's another problem.
    Username: SYS Password: CHANGE_ON_INSTALL gives
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or director
    "ORA-01034 and ORA-27101 normally indicate that the database instance you're attempting to connect to is shut down and that you're not connected as a user who has permission to start it up."
    How would I go checking?
    Do I have to reinstall...?
    Note: I've installed this on a laptop so I can practice for a DB Architecture/Backup & Recovery class. So, in regards to ORA_01034, does that mean I can't run sqlplus since there IS no DB instance to connect to?
    Again, sorry for the newbie questions. The info IS helpful though even if I need to reinstall.
    there IS no DB instance to connect to
    What, exactly, did you install?
    Obviously, you must have a database to work with.  SQLPlus is just a client interface TO a database.

  • The "hanging/freezing/not responding" problem that existed in all versions of Firefox 3.6 persists in Firefox 4.0

    Starting on April 14, 2011, I tried installing Firefox 4.0, which I downloaded from the Mozilla site. The first couple of times I tried to install it, it corrupted Firefox file places.sqlite. I know this because the install renamed the file to places.sqlite.corrupt. Luckily, I had recent backups. My previous installed versions were 3.5.18, which I had been using up to this time, and 3.6.16. I tried installing 4.0 with 3.6.16 installed, which I installed only for the sake of installing 4.0, and with no previous version installed and got the same bad results. I finally got a "successful" install on April 16, 2011, with no previous version installed.
    Early on I discovered that Firefox 4.0 hangs (Firefox not responding) when left to idle for exactly 5 minutes (I timed it several times after immediately starting Firefox), pegging a constant 50% of the CPU when it hangs. I left it in a hanging state for up to half an hour, but nothing changed. This problem existed for all versions of Firefox 3.6, which is why I didn't install version 3.6.16 until I was ready to install version 4.0. I never kept any version of Firefox 3.6 installed for more than a couple of hours because of this problem. I need to be able to let Firefox stay idle for long periods of time -- certainly for more than 4 minutes and 59 seconds -- without having it hang, and I was able to do that with all versions of Firefox prior to version 3.6. It's incomprehensible that Firefox 4.0 has to always hang if it's inactive for more than 4 minutes and 59 seconds, and it's incomprehensible that this problem has been present and persistent since version 3.6 was introduced. To believe that 4 minutes and 59 seconds is sufficient idle time for a browser is absurd. This was never an issue with any version of Firefox prior to version 3.6, this was never an issue with Netscape, and it's not an issue with IE 8.
    There are 2 other problems related to the hanging problem. If the browser and the bookmarks library are both open and the browser is closed normally, the bookmarks library remains open. After being left idle for exactly 5 minutes, the bookmarks library hangs, pegging a constant 50% of the CPU. If Firefox 4.0 is restarted before the 5 minute idle limit, it starts successfully. If an attempt is made to restart it after the 5 minute idle limit, it won't start. If the bookmarks library is left open for less than 5 minutes after the browser is closed, it can be closed successfully. In all versions of Firefox prior to version 3.6, the bookmarks library automatically closed when the browser was closed. The other related problem is that Firefox 4.0 occasionally pegs a constant 50% of the CPU without hanging even while it is being used and even if the only thing open is the home page, which in my case is google.com. Firefox can be used while this is happening, but it is worrisome and shouldn't be happening. Normally, Firefox 4.0 uses no CPU when it is left to idle within the 5 minute idle limit.
    Firefox 4.0 has not crashed on its own yet, so I've had no crash reports to send to Mozilla, but because I've had to use the "End Now" button on the Microsoft unresponsive program window numerous times to terminate it when it hangs, numerous Microsoft Windows dump reports have been generated, all of which I've sent to Microsoft.
    The last fully working version of Firefox I had was 3.5.18. Unfortunately, I don't have the installer for that version and Mozilla doesn't make it available anymore. Also, it looks like version 4.0 altered the places.sqlite file such that I might not be able to go back to version 3.5.18 even if I could. If I could reinstall version 3.5.18 and get it to work with the altered places.sqlite file, I would, but it is outdated and no longer supported by Mozilla, and I only want to use up-to-date and supported software.
    The hanging problem is totally intolerable and unacceptable. If I can't get a version of Firefox 4.0 anytime soon that doesn't hang after being idle for just 5 minutes (why 5 minutes???) or for any limited amount of time, I'll have to install and use Google Chrome as a permanent replacement for Firefox. (If I do have to replace Firefox with Google Chrome, how can I get my Mozilla Thunderbird e-mail links to open in Google Chrome when I click on them?) Based on other user feedback regarding this problem dating back to the very first Firefox 3.6 version, Mozilla has had ample time to resolve it. I have found other problems with Firefox 4.0, but I'm not going to bother telling Mozilla about them because if the hanging problem isn't resolved soon, I'll have to stop using Firefox permanently. I can't and won't tolerate the hanging problem. I have been using Firefox exclusively for many years, but my disappointment with it has been growing since version 3.6 was introduced and my patience has run out.
    I would appreciate Mozilla letting me know within a week of this posting if they can't or won't fix the Firefox 4.0 hanging problem. If I don't receive a substantive response to this problem within a week, I'm going to have to abandon Firefox permanently and switch to Google Chrome. I'm also going to leave a negative review of Firefox 4.0 on CNET to warn other potential users of the hanging problem.
    I am running Windows XP Media Center Edition 32-bit SP3 on a Dell XPS 400 desktop computer. I have an Intel Pentium D CPU 2.80GHz, 3.0GB Dual-Channel DDR2 RAM @ 265MHz, RADEON X300 SE 128MB HyperMemory, and 190GB of free space on my hard drive. I am using COMODO as my firewall and Avira AntiVir as my anti-virus software. I am also using WinPatrol and Secunia PSI. My ISP is AT&T. My download speed averages 2.5 Mbps, and my upload speed averages 0.65 Mbps. All of my software is up to date, thanks to Secunia PSI and CNET TechTracker, and my computer is free from infection.

    Another aspect of the Firefox 4.0 "hanging/freezing/not responding" problem has emerged. I have found that on the common occurrence when Firefox 4.0 occasionally pegs a constant 50% of the CPU while idling within the 5 minute idle limit and I close it normally, it disappears from the Task Bar but continues to run and continues to peg a constant 50% of the CPU. I tried restarting Firefox 4.0 and got the following message: "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." Before Firefox can be restarted, the existing Firefox process must be killed via the Task Manager or Process Explorer (I use the latter), after which a Microsoft Windows dump report is immediately generated. I always allow the dump to be sent to Microsoft.
    The three big questions that have gone unanswered by Mozilla are 1) why did the hanging problem start with the very first release of Firefox 3.6, 2) why was the problem allowed to continue on up to and through Firefox 4.0, and 3) why hasn't Mozilla fixed the problem yet? And what is the significance of the 5 minute idle limit? Do Firefox 3.6 through 4.0 try to launch something when the browser and/or the bookmarks library have been idle for exactly 5 minutes? Maybe it's a problem with the number and/or type of plugins and extensions and/or the number of bookmarks. Maybe Firefox 3.6 through 4.0 work just fine if there are few to no plugins, extensions, and bookmarks, but that doesn't realistically accommodate users. Whatever the cause of the problem, Mozilla should have had a handle on it by now.
    If anyone from Mozilla Support is reading this post, please let me know if it is possible to roll back Firefox 4.0 to Firefox 3.5.18. If it is possible, how do I do it, and where can I get the installer for Firefox 3.5.18? If I can reinstall it, I'll use it until Secunia Software Inspector informs me that it is insecure and no longer safe to use. At that point (maybe much sooner), I'll switch to Google Chrome exclusively because I don't want to use outdated software that is insecure and because I don't believe that Mozilla intends to fix the hanging problem and is willing to lose users over it. I certainly don't want to use software like Firefox 4.0 that has such an impactful problem. If I do have to abandon Firefox, how can I click on Mozilla Thunderbird e-mail links and get them to open in Google Chrome?

  • My iphone 4s crashes too much the screen became black slowly and restart the phone this happens when i use anything safari phone messages i think i am having big problem i hope someone help me

    I cant use the iphone its useless now :S i think its a software problem but i restored it many times

    I suffer same.  AppleCare can't seem to solve the problem.  I did a restore from backup. Then I did a restore as new phone (virgin). Then I did a restore as a new device and then backed up from a stored backup (which does not replace media).  To no avail.  Some days it works fine, and on others it's extremely bothersome. The major symptoms:
    1. It can take 5+ seconds to delete a photo.
    2. It can take 10+ seconds for the camera app to activate. In many instances, the moment is long gone.
    3. Switching from camera to video can take 5+ seconds.
    4. Saving a photo that's been optimized in iOS 5 can take 30 seconds. Absurd.
    Note that Photos and Camera aren't the only affected applications. What'sApp can have the same issues on occasion. Voice Memos don't respond like they should, either.  I suspect that there's some behind-the-scenes operations with network feed to which iOS gives its full attention (contrary to the UX getting full attention is is historically the case). This makes the user interface painfully slow at times — and, as most of us here would agree — painfully annoying.  This might have to do with changes designed around iCloud, but I'm not even (yet) using it.
    The bottom line is that what used to be a quick, pretty good phone camera is now totally lackluster and unreliable for fast shots.  Sometimes I think Apple spends too much time worrying about form and not enough about function.

  • There was a problem reading this document (14)

    As it is common for Adobe acrobat to fail on every other feature I use.  I now get this error, see above, when I try to extract pages from a PDF.  It as errors when I try to Export to Tiff.
    Anyone know what is causing this??
    PS. It is absolutely amazing to me how companies can work with this program.  For the size of Adobe, acrobat is just a pile of s***.  I spend an absurd amount of time troubleshooting problems from updates, older versions, scanned docs, OCR laying issues, memory errors, export errors, saving errors and on and on.  I want this country to succeed, and the waste we spend fixing your inadequacies, with your program, is a disappointment. I can't wait to see what goes wrong next week.

    Unfortunately we are not Adobe. You are simply talking to users, who for the most part are happy with Acrobat. If you have a problem, we can try to help resolve it, but otherwise you are effectively yelling in a vacuum since we have nothing to do with the development of the product.

  • HP DESKJET 2540 Printing Problem

    21-2015 08:06 AM
    Good evening everyone, I'm a professional that working in the computer industry , but alas this time are messed up with my work .
    The printer in question is a product that I give regularly , I will have installed a dozen , this today is really nasty . I completed the installation as always , the printer , when I send something to print from the PC , not the press , the beauty is that does everything as if he had printed , ditto if I print a test page . The printer is ' USB connected to the PC . Converting the door and turning it into a network printer, the IP they can control work it on the Web page , but if I put the IP as a TCP / IP port is the same as with USB .
    The scanner works perfectly from PC .
    If I send photos in Wireless all work perfectly even those from IPHONE IPAD etc.
    I tried HP SCAN AND PRINT DOCTOR , gives me an error in STEP DRIVER , but the driver is updated at last for the system I use, if I give him the test print from internal it give me the press !!! only by them can then print with the pc .
    And ' absurd all this . Anyway the PC in question is a pc just a year with Windows 8 64-bit a colleague has an idea ?

    Does this occur with every line printed or only on the last line of the page?
    If you change the print quality to "best"  does that clear up the issue?
    If the answer to either is "yes" then try cleaning the cartrdige contacts as shown here.
    Regards,
    Bob Headrick, Microsoft MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How to solve a problem about an Apple Authorized Distributor . . .

    hello to all ... I am Vlad from Romania
    from the beginning ... maybe I will not find an answer here
    but I reached a point of desperation ... so I will tell you my story ... and I hope that someone will hear me and maby help me
    in 13 December 1012 ...
    I placed an order in worth of over 10.000 USD to the only and exclusive Apple Authorized Distributor from Romania ... www.apcom.ro
    I even paid a percentage of the total amount in advance ... and now after 2 months I have not received my products
    so
    after heated discussions with the Apple Authorized Distributor from Romania (APCOM) ... the only thing they kept saying : it is not their fault !!! it is Apple's fault ... even a tiny bit my fault ... because I ordered for my 27" iMac's the Custom Configurations ... I used the Configure your iMac option
    now
    I bought these Apple products ... through a co-financing program with the European Union ... it is a special program to help business development in Romania ... an my deadline is at the end of this month February 2013 ... if I do not receive them by the end of February ... I lose everything ... all the money ... and most likely it will start a whole scandal along the line of these Apple products ... I already used all my rights for time extension / delivery time
    by myself ... I called all over ... Apple Customer Support in USA in UK ... even a phone number that Apple Authorized Distributor from Romania (APCOM) gave me (0800 894847) ... even gave me an order number (Proposal 2100545504) ... still no luck
    everybody keeps repeating : I can not help you !!! I can not help you !!! I can not help you !!!
    so I ask ... it is my fault I'm an Apple User ??? ... because I love Apple products ???
    what I can do ???
    who can help me ???
    who and how to contact at Apple ???
    that's my BIG BIG BIG problem ... and I do not know what to do ???
    thanks to all
    and I hope someone will guide me in the right direction
    K

    Hi..and thx for you replay ... this problem ... my problem started in September 2012
    in September 2012 I first order from Apple Authorized Distributor from Romania ... www.apcom.ro ... the older models but in custom configurations
    I made the order and I even paid 30% or 40% money in advance as required from Apple Authorized Distributor
    and after 30 days
    they called me and told me : we can no longer deliver the old models customized configurations ... because Apple blocked all the orders for customized configurations on older models ... only if you whant the standard configurations ...
    I have no use for the standard models ... old or new ... I need or better to say it is mandatory for me to have the processor Quad-Core Intel Core i7
    so you see this is absurd ... no older models and no new models 27" with i7 processor in standard configuration
    in Romania the new models ... Intel i5 standard configurations ... are no problem ... but for custom configurations it seems to be a big big problem
    so what can I do ???
    after 60 days of waiting from the order on the new models 27" with i7
    and
    after about 5 months of waiting from the initial order in September

  • Does Mackeeper cause problems?  What should I use instead?

    I have been using Mackeeper since getting my new Macbook Pro laptop in December 2013/Jan. 2014 (OS X 10.9.4).  I just now read it is not advised to use Mackeeper to 'clean' your computer, and I have since deleted it.  Have I caused my computer problems by using it since I purchased it in December 2013/January 2014?  What, if anything, should I use instead to help keep the system running smoothly, fast, and without issues?  (i.e. malware, viruses, trojans, etc.)
    This is my third Mac laptop and I've always used some type of Mackeeper cleaner; I'm somewhat lost as to what I should now do -- or if I caused my system problems. 
    Thanks in advance.

    What, if anything, should I use instead to help keep the system running smoothly, fast, and without issues?  (i.e. malware, viruses, trojans, etc.)
    No so-called "cleaning" programs are necessary or beneficial.
    All are capable of causing system corruption that, at an extreme, may require completely erasing your Mac and reconfiguring it from the ground up.
    Keep your Mac's operating system up to date with software updates from Apple.
    -- or if I caused my system problems.
    That is possible. If your Mac is not performing as you think it should, describe what you're observing that is causing you concern. Please be as specific as possible - for example, is it taking a long time to launch programs? Is Safari loading web pages slowly, or not at all?
    Whatever you do, if you believe something is wrong with your Mac, never install any product that claims to "clean up", "speed up",  "optimize", "boost" or "accelerate" it; to "wash" it, "tune" it, or to make it "shiny". Those claims are absurd.
    There are many such products and they're all scams designed for one and only one purpose - to take your money. They are very successful at that task. Once that is accomplished, their mission is complete. If your Mac subsequently behaves poorly, if your data becomes irretrievably lost, or if you just waste your time - is completely irrelevant to their true purpose.
    Describe what's wrong and the experienced users on this site will help you fix it.

Maybe you are looking for