My CLOB insert with PreparedStatements WORKS but is SLOOOOWWW

Hi All,
I am working on an application which copies over a MySQL database
to an Oracle database.
I got the code to work including connection pooling, threads and
PreparedStatements. For tables with CLOBs in them, I go through the
extra process of inserting the CLOBs according to Oracle norm, i.e.
getting locator and then writing to that:
http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/files/advanced/LOBSample/LOBSample.java.html (Good Example for BLOBs, CLOBs)
However, for tables with such CLOBs, I only get a Record per second insert
of about 1/sec!!! Tables without CLOBs (and thus, without the round-about-way)
of inserting CLOBs are approx. 10/sec!!
How can I improve the speed of my clob inserts / improve the code? At the moment, for
a table of 30,000 records (with CLOBs) it takes about 30,000 which is 8 hours!!!!
Here is my working code, which is run when my application notices that the table has
CLOBs. The record has already been inserted with all non-clob fields and the "EMPTY_BLOB()"
blank for the CLOB. The code then selects that row (the one just inserted), gets a handle on the
EMPTY_BLOB location and writes the my CLOB content (over 4000 characters) to that handles
and then closes the handle. At the very end, I do conn.commit().
Any tips for improving speed?
conn.setAutoCommit(false);
* This first section is Pseudo-Code. The actual code is pretty straight
* forward. (1) I create the preparedStatement, (2) I go record by record
* - for each record, I (a) loop through each column and run the corresponding
* setXXX to set the preparedStatement parameters, (b) run
* preparedStatement.executeUpdate(), and (c) if CLOB is present, run below
* actual code.
* During insertion of the record (executeUpdate), if I notice that
* a Clob needs to be inserted, I insert a "EMPTY_CLOB()" placeholder and set
* the flag "clobInTheHouse" to true. Once the record is inserted, if "clobInTheHouse"
* is actually "true," I go to the below code to insert the Blob into that
* newly created record's "EMPTY_CLOB()" placeholder
// clobSelect = "SELECT * FROM tableName WHERE "uniqueRecord" LIKE '1'
// I create the above for each record I insert and have this special uniqueRecord value to
// identify what record that is so I can get it below. clobInTheHouse is true when, where I
// insert the records, I find that there is a CLOB that needs to be inserted.
if(clobInTheHouse){
     ResultSet lobDetails = stmt.executeQuery(clobSelect);
     ResultSetMetaData rsmd = lobDetails.getMetaData();
     if(lobDetails.next()){
          for(int i = 1; i <= rsmd.getColumnCount(); i++){
             // if column name matches clob name, then go and do the rest
               if(clobs.contains(rsmd.getColumnName(i))){
                    Clob theClob = lobDetails.getClob(i);
                    Writer clobWriter = ((oracle.sql.CLOB)theClob).getCharacterOutputStream();
                    StringReader clobReader = new StringReader((String) clobHash.get(rsmd.getColumnName(i)));
                    char[] cbuffer = new char[30* 1024]; // Buffer to hold chunks of data to be written to Clob, the slob
                    int nread = 0;
                    try{
                         while((nread=clobReader.read(cbuffer)) != -1){
                              clobWriter.write(cbuffer,0,nread);
                    }catch(IOException ioe){
                       System.out.println("E: clobWriter exception - " + ioe.toString());
                    }finally{
                         try{
                              clobReader.close();
                              clobWriter.close();
                              //System.out.println("   Clob-slob entered for " + tableName);
                         }catch(IOException ioe2){
                              System.out.println("E: clobWriter close exception - " + ioe2.toString());
     try{
          stmt.close();
     }catch(SQLException sqle2){
conn.commit();

Can you use insert .. returning .. so you do not have to select the empty_clob back out.
[I have a similar problem but I do not know the primary key to select on, I am really looking for an atomic insert and fill clob mechanism, somone said you can create a clob fill it and use that in the insert, but I have not seen an example yet.]

Similar Messages

  • G4 just replaced power supply , it powers up , but the screen is not on and the mouse and keyboard aren't on either. A few times the computer came on with screen working but then it froze up, can't do any type of reset cause of keyboard not working. Help!

    G4 just replaced power supply , it powers up , but the screen is not on and the mouse and keyboard aren't on either. A few times the computer came on with screen working but then it froze up, can't do any type of reset cause of keyboard not working. Help! Pressed pmu button already,  nothing ,..  Ppc g4 Mac

    Should I check the memory cards themselves? Reseat them?
    Yes.
    Memtest X or Rember to test the RAM.
    Reseat is also good.
    The iPhone 4 doesn't like USB 1.1 much.
    after the update the computer was working well, except for this freeze when ever I connect iPhone.
    I'd try USB 2.0 PCI. That's how I connect my iPhone 4s, and have connected all iPhones and iPods, to my G4.
    Never an issue.
    Can't say the same for USB 1.1.......
    The above (previous post) linked PCI card is cheap enough.
    Want cheaper, try this:
    http://www.amazon.com/Protronix®-5-Port-Controller-Card-Chipset/dp/B005JE2U82/re f=sr_1_2?ie=UTF8&qid=1337472141&sr=8-2
    The NEC chipset is the desired chipset, regardless of what OS the maker says is compatible.
    OS X has native NEC chipset USB support.

  • Sending email with Entourage worked, but Apple Mail fails

    I want to migrate from Entourage to Apple Mail. However sending emails using the smtp of my hosted website, fails every time.
    I use the same SMTP settings as configured in Entourage, but the connection manager cannot connect to these smtp servers.
    When I setup a gmail account, these smtp settings do work, so this is a strange problem.
    In the SMTP configuration I have indicated that no SSL must be used and authentication is by Username/Password. Also the default port must be used, so this should be easy.
    Does anyone recognise this problem and help me out?
    Thanks in advance.

    23circles:
    I would like to find a way to only have the gmail inbox but still send from any three of her accounts.
    You can do it this way:
    Set up only one account. The one from which you want to receive mail.
    In Mail > Preferences > Accounts > +gmail acct+ > Email Address insert the other email addresses, separating each with a comma and single space.
    Only the GMail account will receive incoming Mail. However, when you want to send from another address, in the From dropdown menu toggle the address from which you wish to send mail.
    You will, of course, delete the other accounts you have created to avoid getting incoming messages.
    cornelius

  • Have file name with date working but appending the time to file name can't get a result

    DECLARE @dt AS VARCHAR(26)
    SELECT @dt = REPLACE(CONVERT(VARCHAR(26),getDate(),110),'-','-'
    Have this appended to a filename like: log_01-15-2015.  Don't know what to add to SQL code to get the get the time and append time in hours, min, sec. like:  log_01-15-2015_10:01:33  
    DECLARE @dt AS VARCHAR(50)
    SELECT @dt = REPLACE(CONVERT(VARCHAR,CURRENT_TIMESTAMP,110),'-','-') +'_'+ CONVERT(VARCHAR,CURRENT_TIMESTAMP,108)
    EXEC master.dbo.sp_configure 'show advanced options',1
    RECONFIGURE WITH OVERRIDE
    EXEC master.dbo.sp_configure 'xp_cmdshell',1
    RECONFIGURE WITH OVERRIDE
    SET @bcpCommand = 'bcp "SELECT * FROM ##Temp ORDER BY barcode" queryout "C:\TEMP\Log\ContainerHistory_Log_' + @dt +'" -c -T'
    EXEC master..xp_cmdshell @bcpCommand
    I am trying to append to the file created with the date a time stamp but when appending the time part for the filename results aren't creating the file.  If it's just doing the date part then it is working. Any idea what is wrong? 

    Since you added ":" to the file name, the file name is not valid. You can change ":" to "-".
    DECLARE @dt AS VARCHAR(50)
    SELECT @dt = CONVERT(VARCHAR,CURRENT_TIMESTAMP,110) +'_'+ REPLACE(CONVERT(VARCHAR,CURRENT_TIMESTAMP,108), ':', '-')
    SELECT @dt
    A Fan of SSIS, SSRS and SSAS

  • Problems with template working but not working...

    Ok, so I have a template I’m using in Dreamweaver 8
    – it’s working out well, with 3 editable regions, and
    I'm using a couple of stylesheets as well. Unfortunately
    something’s happened to the template though – I’m
    able to apply it to all my pages, but within DW itself the template
    is showing up as being unstylized.... you know how a page looks
    when it doesn’t have a stylesheet attached – that plain
    white and black? That’s how my template (and all my pages
    which use the template) looks
    *within* DW. If I open up the HTML files created from the
    template, they'll show up fine in Firefox or Safari - but from
    within Dreamweaver itself it's like it's not recognizing the
    stylesheet in a way. The path is there correctly - just some how my
    template is getting in the way :(
    Has this happened to anyone? Any ideas on how to rectify it?
    I've got a main stylesheet attached (globalstylesheet.css) but I've
    never had this problem before. Help!

    Hi Murray,
    thanks for posting. Yes, I usually just do a child from the
    template and cut and paste - would that be why the template got
    screwed up.
    This is really frustrating me, since the joy of DW is the
    ability to view the code AND the WYSIWYG panel at the same time -
    but I have no such luck right now... help!
    Here is my template:
    &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
    Strict//EN&quot; &quot;
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
    &lt;html xmlns=&quot;
    http://www.w3.org/1999/xhtml&quot;&gt;
    &lt;head&gt;
    &lt;!-- TemplateBeginEditable
    name=&quot;doctitle&quot; --&gt;
    &lt;title&gt;&lt;/title&gt;
    &lt;!-- TemplateEndEditable --&gt;
    &lt;meta http-equiv=&quot;Content-Language&quot;
    content=&quot;English&quot; /&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot;
    content=&quot;text/html; charset=UTF-8&quot; /&gt;
    &lt;link href=&quot;../globalstylesheet.css&quot;
    rel=&quot;stylesheet&quot;
    type=&quot;text/css&quot; /&gt;
    &lt;/head&gt;
    &lt;body&gt;
    &lt;div id=&quot;wrap&quot;&gt;
    &lt;div id=&quot;header&quot;&gt;
    &lt;h1&gt;Rachel M. Murray User Experience
    Design&lt;/h1&gt;
    &lt;h2&gt;at the intersection of business design and
    technology is good user experience&lt;/h2&gt;
    &lt;/div&gt;
    &lt;div id=&quot;navigation&quot;&gt;
    &lt;ul&gt;
    &lt;li&gt;&lt;a
    href=&quot;../welcome.html&quot;&gt;welcome&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../who.html&quot;&gt;who&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../work.html&quot;&gt;work&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../write.html&quot;&gt;write&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../sitemap.html&quot;&gt;where&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/div&gt;
    &lt;div id=&quot;content&quot;&gt;
    &lt;div id=&quot;right&quot;&gt;&lt;!--
    TemplateBeginEditable name=&quot;body&quot; --&gt;
    &lt;!-- TemplateEndEditable
    --&gt;&lt;/div&gt;
    &lt;!-- TemplateBeginEditable
    name=&quot;leftnav&quot; --&gt;
    &lt;div id=&quot;left&quot;&gt;
    &lt;div class=&quot;menutop&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;menumiddle&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;menubottom&quot;&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;!-- TemplateEndEditable --&gt;
    &lt;div style=&quot;clear:both;&quot;&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;div id=&quot;footer&quot;&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img
    src=&quot;../images/tinylogo.gif&quot; alt=&quot;tiny
    logo&quot; width=&quot;16&quot;
    height=&quot;18&quot; align=&quot;top&quot;
    /&gt; &lt;span
    class=&quot;footertext&quot;&gt;Copyright
    &amp;copy; 2007 and beyond Rachel M. Murray User Experience
    Design. All Rights Reserved.
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Revised
    from a design by &lt;a href=&quot;
    http://www.minimalistic-design.net/&quot;
    target=&quot;_blank&quot;&gt;Minimalistic
    Designs&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;/body&gt;
    &lt;/html&gt;
    any help is appreciated - thanks...

  • TS1253 Connection with printer works, but keeps dropping

    I can connect the computer to the airport-connected printer, but need to reconnect each time I want to print.  Why does the connection keep dropping, and what can I do to keep it from happening (using pc running windows 8 and hp photosmart c4780).

    Hi Frank2013,
    I am having the same problem. Was wondering if you ever figured out the solution? My set up was working fine for years until I moved. Now it doesn't work. I have to re-setup the connection every time I want to print. The only difference in my new place is the internet is AT&T DSL, where as before I had Verizon Fios. Do you think this is causing the problem?
    Anyone out there in Apple Support Land have some answers for us? I am desperate!
    Thanks.

  • I have iPhone 3G with ios 4 but now i update new version and my phone is not working.it is not activating..when i tried it says please insert sim and try again..any one plez hepl.

    i have iPhone 3G with ios 4 but now i update new version and my phone is not working.it is not activating..when i tried it says please insert sim and try again..any one plez help

    Try this article if you haven't already
    This is the only possibility that came to my mind when reading about your issue:
    "If an iPhone, iPad, or iPod touch is not recognized in iTunes on Windows, the Apple Mobile Device Service (AMDS) may need to be restarted"

  • Update working, but insert is not working.

    Hi friends,
    Im creating a process for the manular tabular form, that im developing.
    Since for the update im giving the below query
    for i in 1..htmldb_application.g_f01.count
    loop
    if htmldb_application.g_f01(i) is not null then                 
        update gen_req_items
        set item_id = replace(htmldb_application.g_f03(i),'%'||'null%',NULL),
           item_uom_id= replace(htmldb_application.g_f04(i),'%'||'null%',null)
          where req_itm_id = htmldb_application.g_f01(i);
    end if;
    end loop;It is working fine, and i can able to update the rows in my tabular form.
    For insert im giving the following query.
    for i in 1..htmldb_application.g_f01.count
    loop
    if htmldb_application.g_f01(i) is not null then                 
        update gen_req_items
        set item_id = replace(htmldb_application.g_f03(i),'%'||'null%',NULL),
           item_uom_id= replace(htmldb_application.g_f04(i),'%'||'null%',null)
          where req_itm_id = htmldb_application.g_f01(i); 
    else if
    if htmldb_application.g_f01(i) is null
    insert into gen_req_items(barcode, item_id, item_uom_id)
    values(htmldb_application.g_f02(i),replace(htmldb_application.g_f03(i),'%'||'null%',NULL),replace(htmldb_application.g_f04(i),'%'||'null%',NULL));
    end if;
    end if;
    end loop;But the insert is not working, as i couldnt able to insert the values. I dont know what went wrong.
    The below is my region source coding of my tabular form.
    select x.req_itm_id,
    x.barcode,
    x.item_id,
    x.item_uom_id
    from (
    select htmldb_item.text(1,req_itm_id) req_itm_id,
    htmldb_item.select_list_from_query(2,barcode,'select distinct barcode, barcode from gen_req_items') barcode,
    htmldb_item.text(3,item_id,10) item_id,
    htmldb_item.text(4,item_uom_id,10) item_uom_id
    from gen_req_items
    union all
    select htmldb_item.hidden(1,null)  req_itm_id,
    htmldb_item.select_list_from_query(2,null,'select distinct barcode, barcode from gen_req_items') barcode,
    htmldb_item.text(3,null,10) item_id,
    htmldb_item.text(4,null,10) item_uom_id
    from dual) xIm developing a manular tabular form by referring the below link, FYR
    http://www.oracle.com/technetwork/developer-tools/apex/tabular-form-090805.html_
    what might be wrong with my insert statement.
    As i also created sequence and trigger for my primary key column req_itm_id in tabular form
    Brgds,
    Mini

    Mini wrote:
    But the insert is not working, as i couldnt able to insert the values. I dont know what went wrong.
    You've posted here often enough to know that this isn't really sufficient detail. Regarding the above statement, how did you reach that particular conclusion? It might sound like a stupid question, but it gives us a bit of insight into how you have attempted to diagnose the problem and can speed up its resolution.
    * Does the insert work "standalone" i.e. if you write it as a manual query in, for example, the SQL Window, using bind variables?
    * If it does, do you have any special constraints on one or more of the relevant fields (e.g. "not null" on the barcode field)?
    * If so, have you ensured that the relevant field(s) (e.g. F02) are actually populated with values and are valid for insertion?
    In addition, I'm not sure what the purpose of the nested "If" statement is
    if htmldb_application.g_f01(i) is null
    end if;Indeed, the else if won't work either... the correct syntax is elsif

  • I want to sync tasks in Outlook with my iPhone. I have tried Toodledo (not good) and Todo. Todo works, but it cuts off most of the text. I only get the beginning of my (long) lists. Any ideas how I can solve this problem?

    I want to sync tasks in Outlook with my iPhone. I have tried Toodledo (not good) and Todo. Todo works, but it cuts off most of the text. I only get the beginning of my (long) lists. Any ideas how I can solve this problem? I starting to regret that I switched to iPhone...

    Usually if you have some kind of hardware failure there is some beeping during POST or most motherboards now have LED indicators to produce and error message based on the type of failure
    So if its bad memory, not place properly, mismatched, processor not inserted properly, mismatched voltage or voltage connector not present etc it beeps or generates the error id.
    Power supplies can be tested for failure. There are some walk throughs for testing just them with a switch, paperclip or a jumper (I'd suggest not doing this if you are not familiar with the dangers of electricity).
    Memory can be tested with memory diagnostics programs like Memtest+
    Processors can overheat if the proper precautions have not been taken usually you will get a POST beep or error code for that.
    If the motherboard has no response then do the basics first:
    Check power connectors and power supply. Once you determine that is not the case move on to other items like graphics cards in all the way or memory.

  • HT1386 Syncing works but can't hear audio with headphones.

    Syncing works but can't hear audio with headphones.  Works without headphones though.

    Have you tried other headphones?
    What does syncing have to do with the problem?
    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.
    Apple Retail Store - Genius Bar
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price

  • HT203164 Cannot print CD Jewel Case Insert using Windows 7; iTunes print options work fine from Windows XP; using iTunes print option CD Jewel Case Insert with Windows 7 prints jumbled mess?

    Cannot print CD Jewel Case Insert using Windows 7.  iTunes print options work fine with Windows XP, but attempting to print CD Jewel Case Insert from Windows 7 yields jumbled mess.

    I'm having the same issue - when I try to change any print options iTunes freezes and I have to end the process in Task Manager... I was trying to turn off duplex printing and the printer option screen wouldn't take any input. I changed the default printer properties to turn off duplex; iTunes did not reflect the updated preferences. It looks like there is an unknown issue with the printer setup module - guess that doesn't get much use anymore or Q/A should have picked up the issue...

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • I have a problem with my home butten, its working but when i press it, it seems like something is stuck in it. like sand or something like that, and this is the second time it happens to me with 2 devices. what can i do?

    Ok so first sorry for my english, Im not American.
    2 months ago i bought a new Iphone 4 device from my phone company, after a month something happened to the home butten, when i pressed it it felt like something stuck in it.. like sand or dirt.. but the home butten worked perfectly. so i went to the phone company and they told me that it is a problem and they replaced it with a new one. but after a week my iphone fell and something happened to him so i sold it to someone i know, and with that money i bought a new one from privet store (unlike the last time, when i bought my iphone in a big phone company) and in the begining it felt new, i didnt had any problems, but 2 days ago when i woke up i pressed the butten and i noticed that the problem with the home butten is back.. and i dont know what to do.. i mean like its not a big deal or something, it just that when i buy something new, i excpet it to be new, and i want to ejnoy it while its new.
    so i went to some guy i know and he told me that he will see what he can do, i paid him 130 Shekels (35$) and he told my that he replaced the butten with new one, but still it makes problems. it bothers me alot, because i pay almost 300 shekels per month (75$) and i expect from this device to be new.. and its killing me.
    now, i cant go to the phone company because thats not their device, and i know what the people in the privet store will tell me.. that its my fault and bla bla bla.. so what can i do? i cant spend any more money on this..
    its new.. for some reason this always happenes to me.. 3 devices, problems problems and problems..

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • I've been working with AI for some time time now & would love to have a light weight viewer to open the files. The bridge is fine when we're working but just being able to toggle through folders is impossible otherwse

    I was thinking of keeping things a bit easier in the way of clicking & dragging artwork into Illustrator. The bridge is fine when we're in the print shop & working but still has problems with some of the file extensions with the vectors. A lightweight no frills viewer that would open anything that Illustrator would open, so we could just burn through our regular file folders without opening AI or the bridge would be a great deal. Add the PS extensions too & we could dance by the firelight. Just offer it to those with the software & the valid codes for their software. I mean if there would be a problem with folks just grabbing it up. Love to have it though.

    A thumbnail preview file icon option would be nice. CorelDRAW has had this capability for its past few versions. It does make it a whole lot easier conducting searches in Windows File Explorer. You can find the right files pretty quickly and then drag/drop them into CorelDRAW.

  • HT4528 My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished the RESTORE would fail c

    My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished but the RESTORE would fail I had an error, could not access Apple server ( some server name I cant remember).
    I have plenty of space available on the iphone,
    8gb free,
    ios version- 6.1.3 ( 10B329)
    carrier - Verizon 14.0
    Modem Firmware - 3.0.04
    Can someone help.
    I tried doing my backup restore on the same computer as I once did a year ago. and THis time I cant do the restore on the iphone.
    computer osx is 10.5.8
    itunes version 10.
    I do not wish to go to ios 7 at this time.

    Settings > General > Reset > Reset Network Settings.
    Basic troubleshooting is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue continues, contact the carrier to troubleshoot the network connectivity issues.

Maybe you are looking for