HibernateCacheStore and cache backup

Hi all,
Our scenario is a bit like this:
1) two node distributed cluster
2) a third machine is a database server
What I'm trying to achieve is the have the database server act as a backup for the cache so that in the event that both nodes go down, the cache can be restored to the point just prior to the failure. I've been experimenting by modifying the examples (http://wiki.tangosol.com/download/attachments/16730/hibernate-sample-src.jar), here is my configuration:
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
     <!--
          Sample configuration file for Coherence Hibernate CacheStore See the
          following links for more documentation:
          http://wiki.tangosol.com/display/COH33UG/Read-Through%2C+Write-Through%2C+Refresh-Ahead+and+Write-Behind+Caching
          http://wiki.tangosol.com/display/COH33UG/Using+Coherence+and+Hibernate
     -->
<cache-config>
     <caching-scheme-mapping>
          <cache-mapping>
               <cache-name>*</cache-name>
               <scheme-name>distributed-hibernate</scheme-name>
          </cache-mapping>
     </caching-scheme-mapping>
     <caching-schemes>
          <distributed-scheme>
               <scheme-name>distributed-hibernate</scheme-name>
               <backing-map-scheme>
                    <read-write-backing-map-scheme>
                         <internal-cache-scheme>
                              <local-scheme></local-scheme>
                         </internal-cache-scheme>
                         <cachestore-scheme>
                              <class-scheme>
                                   <class-name>com.tangosol.coherence.hibernate.HibernateCacheStore</class-name>
                                   <init-params>
                                        <init-param>
                                             <param-type>java.lang.String</param-type>
                                             <param-value>{cache-name}</param-value>
                                        </init-param>
                                   </init-params>
                              </class-scheme>
                         </cachestore-scheme>
                         <!--
                              Set this to 0 to make writes synchronous, > 1 to make writes
                              asynchronous
                         -->
                         <write-delay>1</write-delay>
                    </read-write-backing-map-scheme>
               </backing-map-scheme>
          </distributed-scheme>
     </caching-schemes>
</cache-config>I've written some simple code to populate the cache from the database:
          LOG.info("loading...");
          HibernateCacheLoader loader = new HibernateCacheLoader(SampleEntity.class.getName());
          Session session = loader.getSessionFactory().openSession();
          int start = 0;
          long total = 0;
          while(true) {
               Stopwatch batchStopwatch = new Stopwatch();
               batchStopwatch.start();
               Query query = session.createQuery("SELECT id FROM SampleEntity");
               query = query.setFirstResult(start);
               query = query.setMaxResults(BUFFER_SIZE);          
               query = query.setFetchSize(BUFFER_SIZE);                              
               List<String> keys = query.list();          // get keys from DB
               if (keys.size() == 0) break;
               cache.putAll(loader.loadAll(keys));          // use CacheLoader to load
               batchStopwatch.stop();
               total += keys.size();
               LOG.info("loaded: "+(start+keys.size())+", "+batchStopwatch.toString());
               start += BUFFER_SIZE;
          stopwatch.stop();
          LOG.info("done, total loaded = "+total+", "+stopwatch.toString());
          LOG.info("average load speed: "+(total/stopwatch.getSeconds())+" rows/sec");I've also been creating dummy data as per the example:
          // Seed the cache/database with sample values
          for (int i = 0; i < ROWS; i++) {
               SampleEntity se = new SampleEntity();
               se.setId(UUID.randomUUID().toString());
               se.setName(getRandomString());
               se.setDate(new Timestamp(System.currentTimeMillis()));
               se.setAge(i);
               dao.saveSampleEntity(se);
               if (i%1000 == 0) LOG.info("saved "+i);
          }So, several questions I have:
1) Have I taken the correct approach to achieve my goals? Is there a better way?
2) I would like to use <write-delay> to enable async writing to the DB to lower the wait time of hitting the cache - however, as I have found in the DB populator application I need to give the application time to clear the queue (ie, the DB populator program quits very quickly when writing asynchronously, and as a result not all records are written to the database). Given that I need to account for hardware failures to the cluster which means the queue may not be cleared, am I stuck with using synchronous writes, and hence each write/update to the cache will result in a database-hit length wait time for the user?
Edited by: user13362605 on Jul 20, 2010 7:48 PM

Hi,
In the Coherence console there is a way to do this with CohQL - see here http://download.oracle.com/docs/cd/E15357_01/coh.360/e15723/api_cq.htm#CEGBCJHD
I have never used this but I suspect what this will do is stream the contents of you cache through the CohQL node to disk. This sounds fine at first but I can imagine it being slow for very large caches.
We recently had a similar requirement for the project I work on but the number one feature was that it had to be fast. In the end we could dump a 100GB cluster to disk in about a minute and load it back in about five minutes. The reason it is fast is because the write/read happens in parallel across all the storage nodes. We just stream the Binary keys and values straight from the backing maps to disk and on reload stream the Binary back in again.
It was complicated by the fact that we have triggers on our caches that we needed to bypass when reloading. We also needed to bypass cache stores - but only for data that had not already been written by any write-behind cache stores.
There are probably other ways of doing what you want, but as I said our number one requirement was speed. At the time on our project reloading from the DB took about 2 hours, so especially in Test environments where we were redeploying a cluster quite often over 2 hours turn-around was not good - and rolling restart of a clusters between 150 - 400 nodes takes even longer.
JK

Similar Messages

  • How important are the Cache Backup Battery Modules

    I have finally gotten my raid in full speed by selecting write cache and drive cache options in the raid admin. It looks like cache backup batteries are recommended for those options, but I don't have any. How critical is it to have those batteries ? I work with broadcast video and 12 client setup.

    If you aren't using a UPS, they are very important. If you suddenly lose power with the cache enabled, there will be data that was written to cache but not to disk. That data will be lost -- this could cause data loss and/or corruption of the volume.
    If you have a UPS (actually, two separate UPSes with one side of the RAID connected to each), then the battery back-up modules are less important. What they do is maintain power to the cache for at least 72 hours in the event of a power failure. So long as you get power back to the RAID within this window, data will be safely pushed from the cache down to the disks on the RAID.
    For $300, I think it's an easy choice, personally.

  • Database restore of Content and Cache Server on different SID

    Hi Experts,
    I am trying to do backup \ restore method, is it the correct way to do.
    if not, please suggest me the correct methodology.
    if yes, please let me know the procedure to restore the database on different SID
    Content Server and cache server was installed on MaxDB 7.6 and build 18
    Regards,
    Sandeep

    >
    $@ndy wrote:
    > I am trying to do backup \ restore method, is it the correct way to do.
    Ok... is this supposed to be a question?
    Maybe reading the documenation would also help you in this case?
    Did you try?
    > if not, please suggest me the correct methodology.
    So it was indeed a question - but how do you expect us to answer it?
    Because you didn't really gave us any alternative to decide on here...
    > Content Server and cache server was installed on MaxDB 7.6 and build 18
    Are you guys getting any prizes for using the oldest software you can digg up in the service marketplace?
    If there  is anything I can recommend at this early stage of your question:
    Upgrade the database to a recent release, read the documentation/sap notes/WIKI/training content for MaxDB.
    regards and a sucessfull new year,
    Lars

  • My browsers (safari and chrome) continue to open an old version of a website. Even though I've cleared my browser history and cache.  Please help!  what else can I do.

    My browsers (safari and Chrome) continue to open an old version of a website - even though I've cleared my browser history and cache.  It's essential I see the newly launched site - rather than the old ones.  It's strange it's happening in both browsers. 
    Please help!

    You, or someone using your computer, hacked the system to redirect certain URL's. The file modified is /etc/hosts.
    The easiest way to fix the hosts file is to restore it from a backup that predates the modification, or to copy the unmodified file from another Mac. If you can't do that, then do as below. Please read this whole message before doing anything.
    Back up all data. This is a simple procedure, but if you don't follow the instructions exactly, you could be left with an unbootable system. In that case, you'll have to restore from a backup or reinstall OS X.
    If you have more than one user account, you must be logged in as an administrator.
    Triple-click anywhere in the line below to select it:
    open -a TextEdit /etc/hosts
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). A TextEdit window should open. At the top of the window, you should see this:
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1                              localhost
    255.255.255.255          broadcasthost
    ::1                                        localhost
    fe80::1%lo0                    localhost
    Below that, you'll see some other lines. There should be nothing above the first line "##". If you have any doubt about that, STOP and ask for guidance. Make sure you scroll all the way to the bottom of the document. Scroll bars are hidden by default until you actually start scrolling, so you may not realize that you’re not seeing the whole document.
    If the contents of the TextEdit window are as described, close it, then enter the following command in the Terminal window in the same way as before (by copy and paste):
    sudo sed -i~ '11,$d' /etc/hosts
    This time, you'll be prompted for your login password, which won't be displayed when you type it. If you don’t have a login password, you’ll need to set one before you can run the command. You may get a one-time warning to be careful. Confirm. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Quit Terminal.
    That will fix the hosts file. There is now a copy of the old hosts file with the name "hosts~" in the same folder as "hosts". You can delete the copy if you wish. Don't delete the file named "hosts".

  • Live cache backup

    Hi Experts,
    I am beginner to SCM and Live cache technology.
    I have sucessfully installed SCM 5.0 and Live cache 7.6.29 on two different HP-Ux 11.23 servers.
    My first requirent is to take live cache backup. But there is no tape drive connect to any of the server,
    local file system assigned as  backup space, accordingly I have successfully taken online backup of SCM database by modifying entries like backup_dev_type to tape in  init<SID>.sap.
    Know I am facing a challenge to take live cache backup on local file system , infact dont know how to take online live cache backup.
    Another question is database manager gui is needed in unix environment, if yes please let me know the procedure how to configure this as In transaction lc10 upon double clicking database manager gui system generating error.
    Please help to solve the above two problems.
    Thanks & Regards,
    Maqsood Ahmed

    Hi Ahmed (no own SDN account? ).
    I'd like to make a few remarks on this:
    1. Backup to local filesystem w/o moving it to another location afterwards is next to useless. What happens when (when not if!), the local disk crashes? What backup can you use then?
    2. You can perform liveCache Backups from DB13C/DBACockpit after you've integrated the liveCache instance (DB59).
    3. If you like to administer the liveCache via DBMGUI - just install DBMGUI on your Windows Workstation and connect remotely to the liveCache. Actually this is the way how it was thought up.
    For detailed information how to work with liveCache I propose you check:
    The documentation [Backup/Recovery SAP Library - Database Administration in CCMS: SAP liveCache Technology|http://help.sap.com/saphelp_nw70/helpdata/EN/e9/dc1c3e46903b2ee10000000a114084/content.htm]
    The SDN Content on liveCache [https://www.sdn.sap.com/irj/sdn/livecache]
    The SCM Technology pages in the SAP Service Marketplace [https://service.sap.com/scm] -> SAP SCM Technology
    Good luck,
    Lars

  • Database ID is showing different host name in live cache backup

    Hello All ,
    While triggering the live cache backup , the database id is showing different one.
    i have build the system using cloning method from production. the server name is showing correct one but database id still showing the source system.
    Please help me to fix the issue . Thanks in advance .
    Backlog is pasted below.
    >backup_start  LCD_DB_Backup
    OK
    Returncode              0
    Date                    20140804
    Time                    00081900
    Server                  *********(showing correct hostname)
    Database                LCD
    Kernel Version          Kernel    7.9.08   Build 008-123-247-140
    Pages Transferred       913824
    Pages Left              0
    Volumes                 1
    Medianame               TH_LCD_DB_Backup
    Location                /sapdb/LCD/backup/LCD_DB_Backup
    Errortext
    Label                   DAT_000000820
    Is Consistent           true
    First LOG Page          4981
    Last LOG Page
    DB Stamp 1 Date         20140804
    DB Stamp 1 Time         00081900
    DB Stamp 2 Date
    DB Stamp 2 Time
    Page Count              913803
    Devices Used            1
    Database ID             xxxxxx:LCD_20140803_103951 ( wrong database ID: xxxxx)
    Max Used Data Page      0
    Converter Page Count    991
    Regards,

    Hello,
    I recommend you to create the SAP message to BC-DB-LVC component and get SAP support.
    - How have you build the system using cloning method from production?
    - What note/documens did you follow?
    Regards, Natalia Khlopina

  • How do I restore 2 years of History and Cache?

    I have had my History and Cache set at "Manual delete".
    I was a Yosemite Beta tester.
    I installed full Yosemite this morning.
    Now 2 years worth of History and Cache is gone.
    How do I do Restore of these files - where in the Library, and exactly what?
    Thanks!
    /groundliner

    Hi ..
    The cache cannot be restored but you if you backup to using Time Machine, you may be able to restore history.
    Instructions here.

  • Live cache backup question

    Hello Experts,
    Iam new to Livecache and AP0  and was trying to understand the process of backups reason i need to perform complete SCM 7.0 systemcoopy . In past i have done system copies and well aware of the procedures .
    Here it goes Presently we are on SCM 7.0
    Question  :--> I see our Livecache is installed on one machine and AP0 on another machine. Iam not aware how Livecache
                           was integrated with AP0.
                           Iam trying to understand how to take backup of livecache and then restore the same in Target.
    In LC10
    LCA --> ProblemAnalysis --> Logs --> DBA History
    i can see that the live cache backups are in getting successfully everyday.
    I see that Backup Label as DAT_000000<xxx> and Backup Template as bac214<xxx>.
    Where can i see this Backup Template defined ( the path ) .
    Can someone provide an insight regarding the live cache backups.
    Checked SAP Note 457425 .
    --> After system copy how would i integrate Livecache and AP0 .
    Thanks in Advance.
    Medha

    Hello Medha,
    1.
    a)
    Please review all recommended steps in the SAP note:
    886103     System Landscape Copy for SAP SCM
    when you are planning to do the SCM system copy.
    For SAP liveCache documentation please see the SAP note 767598.
    b)
    SAP link:
    SAP liveCache technology
    -> Best Practices for Solution Management: mySAP SCM
    review:
    "Checklist for Recovery of SAP APO liveCache >= 7.4"
    < It will be helpful to practice the steps of the document on the test liveCache instance first >
    2.
    Sessions: http://maxdb.sap.com/training/   
    =>
    Session 2: Basic Administration with Database Studio
    Session 3: CCMS Integration into the SAP System
    Session 11: SAP MaxDB Backup and Recovery
    Those sessions will help you. If you still have some questions after that => update the thread.
    4.
    Took classes for the MAXDB database administration or get the SAP consulting support.
    Regards, Natalia Khlopina

  • Essbase temp files and cache files

    Hi All,
    where essbase creates its temp files and cache files so that i can delete them.What is the path.
    Regards,
    Mink

    The DBAG lists the files (and types) used for various reasons. Some can be deleted, others should be left there for recovery attempts when the database is started up. If your database won't start, the temporary files that can be safely deleted are also covered, although this part might be somewhere else in the technical reference.
    There are also some backup files that could play a role, for instance, if the db file is the reason a database won't start, the backup file (dbb) can be used to replace it. For this reason, I don't recommend you just blindly delete all "unneeded" files if you are having a problem.
    If you are referring to temp files like what the OS uses, I don't believe essbase uses any of the "%temp%\randomname.tmp" variety. I could be wrong on this, but it keeps file usage fairly straightforward, with server files in the database folder and client files in the %arborpath%\essbase\client folder. Client files can indeed be deleted if you don't have anything open, but they are rarely orphaned so you shouldn't see enough to cause performance degradation.
    Hope this helps, between the perceived contexts and other potential intentions, there are other answers that may be more appropriate.

  • I often clear history and cache. With 4.0 it takes WAY too long. Why?

    I often clear history and cache. Before 4.0 it took a few seconds, but now it takes over a minute. Why?

    markymarkwahlberg wrote:
    Hi, I am loading music onto my z10 by just dragging dropping into the music folder on my sd card (about 4 gb music) and it is plugged into the usb, and I'm finding it is taking soo long (10 hours estimated already waited an hour) previously i loaded an even bigger file and it was long but never took this long (maybe took 2-3 hours previously). Just wondering why it takes soo long to write to an sd card as opposed to downloading from the internet or downloading over wifi or if there is something wrong with my setup (im running windows 7 with a decent laptop by 2 years ago standard), just hoping someone can comment on what they know or have experienced 
    Thanks Mark 
    i use a SD adapter in my laptop which works faster than using a cable to my Z
    A single large file when copying is faster than many smaller files on almost any SD card.
    I sometimes use wifi sharing and just let it do its thing while doing some thing else
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Lenovo U310: Clean Windows 7 Installation Guide (including Rapid Start and Caching)

    Hi there,
    this is the first time that I am writing such a guide/tutorial/whatever you may call it – there are probably better ones, but though not being a total computer noob, it took me almost one week to get this pretty (now again) little beast running again. So hopefully this helps some others to avoid such stupid downtimes.
    A brief overview on what has happened to my original win 7 Home Premium:
    As some may know, this laptop is very well usable as a “Hackintosh” called Macbook clone. So that’s what I did. It turned out to be nice, but I wanted to go back to Windows after a while, using a clean W7 Pro installation to start over. Actually an easy task, format all drives, install Windows, be happy. Just as I had been doing this for years. Unfortunately, it turned out to be a real challenge. First, I couldn’t “see” my drives during installation (and thus not install), then I got random errors during installation aborting it at different points and finally rapid start and caching didn’t work. Every time I tried to activate them (after Win installation), it crashed my PC. I even found an (official Lenovo!) guide stating to install W7 on the SSD, which worked, but sucks due to space limitations. Oh and another very nice thing: The SSD showed up during WIN installation (but not the classical hard drive) stating it was about 60 GB. So as you can see, I have had a lot of different tries and errors. Why I didn’t use Lenovo Easy Recover? As said before, I erased all partitions…
    Before we start: If you have a good Windows running on the Laptop, do yourself a favor and disconnect the RAID 0 disks using the Intel Rapid Storage Application before(!!!) proceeding. It will make things much easier. And don’t forget to get all you data on an external drive or something.
    Ok, now let’s start.
    1.)    Prepare a USB Stick with the following driver
             http://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=21730 (choose f6flpy-x64.zip If you’re running a   
             64-bit system (standard nowadays), take f6flpy-x86.zip if it is a 32-bit Windows, just download and copy them
             into the stick’s root directory) and plug this stick in one of the left side USB ports.
    2.)    You’ll need Win 7 on either a DVD (plus external drive, for sure) or (bootable) USB stick
    3.)    Connect your drive/stick (with W7) to the right side USB port.
    4.)    Switch the computer on, immediately hit FN and F2. That will open the BIOS.
    5.)    In the BIOS, navigate to the very right section (“save and exit”) and navigate the cursor to “load setup defaults”.
             Hit enter to approve.
    6.)    After that, go to the “boot” tab and disable UEFI-boot.
    7.)    Next, go one more tab to the left and set the controller setting to RAID (NOT AHCI or Compatible!!!).
    8.)    Navigate the cursor down to “Intel Rapid Start” and hit enter. A submenu will pop up-
    9.)    Disable the first entry in that window, that will make the rest be disabled as well.
    10.) Navigate to the very right tab, this time hit save and exit.
    11.) The PC restarts.
    12.) Immediately hit FN and F12 to open the boot selection menu. Select to boot from your W7 DVD drive or USB
            stick.
    13.) Click yourself through the whole process of installing Windows 7 until the page comes up where you will have
            to select where to install it.
    14.) Click on “load drivers” and after a few seconds your downloaded driver should be there. Click ok to use them.
            Please do this step even if you can see your drives (SSD Disk 0, 32 GB and HDD Disk 1, 465(<-?) GB) as you
            would expect them – otherwise you’re very likely to get an error during the install process.
    15.) Now erase all partitions on both drives and select the HDD as the drive to install W7 to – NOT THE SSD!!!!!
            Seriously, don’t choose the SSD.
    16.) Windows will probably say that some extra partitions are necessary and so on, click ok and install Windows.
    17.) After the installation has finished and you see your Desktop, I suggest you to proceed with the next steps in the
            following order to see as early as possible if you are on the right way.
    18.) Install the Chipset driver, restart.
    19.) Install the Intel Rapid Storage “driver” and check the box where it asks to additionally install the control center.
            Reboot.
    20.) Go into BIOS (FN and F2) and enable Intel Rapid Start (the one you disabled in Step 8 and 9)
    21.) Boot into Windows.
    22.) Click on the Windows button, type cmd and right klick on the cmd.exe, select to run it as Admin.
    23.) Now you’ll create a hibernation partition on the SSD. (which by now should be completely empty as we’ve
            deleted all partitions in step 15)
    24.) In the command prompt that we have just opened, type: (without quotas, for sure)
    “diskpart” and hit the enter button
    “list disk” and hit the enter button
    Now you should see your ssd as disk 0 and your hdd as disk 1
    If your ssd is disk 0 (that would be standard), write “select disk 0”, otherwise write: “select disk 1”, and hit the enter button.
    Now write “create partition primary size=4096” and hit enter again. [if you have 4GB of ram, type 4096, if you have 8 GB of ram, use 8192]
    Now write “detail disk” and hit enter to see the volume number behind the volume that we have just created (it is 4 GB or 8 respectively, should be easy to find), in my case that was “2”
    Now type “select volume 2” if your 4 or 8 GB volume has number 2 as well, otherwise use the number you found out in step f. Hit enter.
    Finally, type: “set id=84 override” and hit enter for one last time.
    It should now say back that the id has been set successfully.
    Exit the command prompt. (close)
    25.) Reboot
    26.) Install the Rapid Start driver. Reboot.
    27.) Open the Intel Rapid Storage Application.
    28.) Click on accelerate and approve the settings. Two RAID’s will be created. Reboot.
    29.) Install the remaining drivers, have fun with Windows Update and that’s it!
    Good luck to all of you… And hey Lenovo - wouldn't that have been your job after all these posts showing your costumers in trouble? Just my two cents...
    If you want, you can now turn on UEFI-boot in BIOS.
    PS: If, after installing all drivers, you happen to see one unknown device in your device manager – this one belongs to Lenovo Connect Software that came with your Laptop. (Updates FB, Email etc when PC is in sleep mode) If you install Lenovo Connect it’s going to be fine, however, I would not recommend it as it is said to use a lot of energy and cause some other problems. So just live with it, your PC is totally fine without it.
    Kind regards from Shanghai

    Seriously guys, I can't use my 3 days old laptop. Some help would be mostly appreciated. At this point, the network connection issue doesn't show up anymore, it's just a blank screen after reboot. I reinstall windows and do it all over again just to achieve the same result.
    Now couple of things caught my attention: as I load the "6flpy-x64.zip" driver from step 14, I get a message saying I need to install signed drivers, because unsigned ones are likely to mess up the system.
    Secondly, I could not find any Rapid Storage Technology drivers for Windows 7 (particularly for U310 model), so I use the Windows 8 ones (http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS031455), which seems a silly thing, yet I know of no alternatives.
    Could it be any of these issues to cause my problem? Or smth else? Please help!

  • What is the diffrence between cookies and cache, is it safe to remove cache?

    what is the difference between cookies and cache , is it safe to remove cache ? . I had cleaned cookies many times but I have not removed cache , does it goes on increasing day by day ? please let me know

    Cookies are small files that contain information useful to a web site -- such as password, preferences, last date visited, etc. You may remove the cookies that you don't want adn since some of them are a privacy issue, many people remove them all.
    Cache is just a collection of data downloaded to help display a web page. After you leave a site, much of the cache is left on your computer and is no longer needed. You can always remove the cache because it will be replaced as needed.

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • I have deleted hundreds of pictures, I've deleted apps, deleted emails and texts, and I've turned off and deleted backups of apps on icloud and it is still telling me that there is not enough icloud storage available for my phone to be back

    I have deleted hundreds of pictures, I've deleted apps, deleted emails and texts, and I've turned off and deleted backups of apps on icloud and it is still telling me that there is not enough icloud storage available for my phone to be backed up. I am supposed to do this before I go to the Apple store today to get my phone fixed. Can someone please help me? I have done almost everything.

    This article explains ways to reduce your iCloud storage: Managing your iCloud storage.  In addition to what's mentioned in the article, if you have lots of photos and videos attached to your text messages, these are all included in your iCloud backup and deleting them can sometimes significantly reduce the size of your backup.
    If worse comes to worse, back up your phone to your computer rather than iCloud.  To do this, connect it to your computer, open iTunes and go to File>Devices>Back Up and to File>Devices>Transfer Purchases.  This can be used to restore your data when you get your phone back.  (In fact, it's faster because you don't have to download the data from iCloud.)

  • I cannot access the internet, I tried to answer that said to go to settings, safari, tap clear history, cookies and cache, cut off, then on, but it did not work.  When I go to internet the screen is grey??? please help I am a new user!!

    I cannot access the internet the screen is grey, I have tried by using the answer from someone but it does not work...I went to settings, tap safari, then clear the history, cookies, and cache, then turn off ipad.  When I did that twice, it did not work.  How long does it take for the clear history to work?  I am a brand new
    user of the ipad2 and I am disappointed that this is happening already.

    Have you been able to access the internet previously and now it's suddenly not working, or are you still trying to access the internet for the first time on your iPad?  Are you at home trying to connect through your home router?  If you are at home, did you put your home routers encryption code as your password?  The encryption code is what your iPad is looking for and it is usually found on the router and is typically a 13 digit combination of letters and numbers.  Let us know......

Maybe you are looking for

  • Javax.mail.MessagingException: 502 unimplemented (#5.5.1)

    hi, I am facing a problem in sending mail. My program is running on a linux operating system and Tomcat 5.5 . So my problem is that when I try to execute that program I get the FOLLOWING EXCEPTION. I am not getting why that exception is occuring. jav

  • Accessory for playing IPod in car and best protective case?

    I am about to purchase the 80gb Ipod classic. What would you recommend as the best accessory to play and charge my IPod in the car and also the best clear protective case? I noticed at Walmart that Belkin sells the car accessory and they have the bel

  • Ebay page scroll bar stays small-long way down to see rest of page

    when i look at ebay selling-buying pages the scroll icon at side of pc does not expand and staye small,it means i have to scroll a long way down from item at top of page--- through nothing on page to reach the wording at bottom of page

  • Configurate the integration engine of an R/3

    hi experts! I need to configurate the integration engine of an R/3  receiver .... ( R3 SENDER>XI-->R3 RECEIVER  )....in order to be able to see aynchronous messages (corrects an incorrects) and asynchronous messages (corrects), and honestly speaking

  • Euro and WE8ISO8859P15

    Hi, database was created with WE8ISO8859P15. Client uses iso 8859-15 encoding. When entering the Euro symbol € with sqlplus, it shows an upsidedown ? when selected. The Hexcode entered is X'A4' oracle stores X'BF' What am I doing wrong?