Every time I download app from AppStore but at the end it couldn't download. Not all time but sometime this problem occurre ! I have to retry the app for 3-4 times and after that it downloaded in iphone

i have a iphone 6 . From the last 2-3 weeks i have seen some proble in my iphone that I Couldn't download any app or update any app in my appstore. Every time it shows at the end that youe app can not download ! But after retry and retry i can download that app.! So can you help me ! is there any problem in my iphone6 ?

You must have a separate Apple ID registered in the other store along with a valid bank-issued charge card in the other country, and a legal billing address in the other country.
Sorry... But... You cannot use other countries itunes stores.
You must be within the Country with a Valid Billing Address and Credit Card for that Country to use the iTunes Store of that Country..
iTunes Store Terms of Service
http://www.apple.com/legal/itunes/us/terms.html#SERVICE

Similar Messages

  • Help: I want to auto schedule a load using file watcher but it runs only once for the first time and after that it is not running at all

    Hi All,
    I am trying  to execute the below code as provided from one of the blogs. i am able to run the job only once based on a file watcher object(i.e. for very first time) and after that the job is not running at all and if  i schedule the job to run automatically based on interval of 10 or more minutes it is executing properly). Please let me know or guide me if i have missed any step or configuration.that is needed.
    Version of Oracle 11.2.0.1.0
    OS : Windows 7 Prof
    Given all the necessary privileges
    BEGIN
      DBMS_SCHEDULER.CREATE_CREDENTIAL(
         credential_name => 'cred',
         username        => 'XXXX',
         password        => 'XXXX');
    END;
    CREATE TABLE ZZZZ (WHEN timestamp, file_name varchar2(100),
       file_size number, processed char(1));
    CREATE OR REPLACE PROCEDURE YYYY
      (payload IN sys.scheduler_filewatcher_result) AS
    BEGIN
      INSERT INTO ZZZZ VALUES
         (payload.file_timestamp,
          payload.directory_path || '/' || payload.actual_file_name,
          payload.file_size,
          'N');
    END;
    BEGIN
      DBMS_SCHEDULER.CREATE_PROGRAM(
        program_name        => 'prog1',
        program_type        => 'stored_procedure',
        program_action      => 'YYYY',
        number_of_arguments => 1,
        enabled             => FALSE);
      DBMS_SCHEDULER.DEFINE_METADATA_ARGUMENT(
        program_name        => 'prog1',
        metadata_attribute  => 'event_message',
        argument_position   => 1);
      DBMS_SCHEDULER.ENABLE('prog1');
    END;
    BEGIN
      DBMS_SCHEDULER.CREATE_FILE_WATCHER(
        file_watcher_name => 'file_watcher1',
        directory_path    => 'D:\AAAA',
        file_name         => '*.txt',
        credential_name   => 'cred',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.CREATE_JOB(
        job_name        => 'job1',
        program_name    => 'prog1',
        queue_spec      => 'file_watcher1',
        auto_drop       => FALSE,
        enabled         => FALSE);
      DBMS_SCHEDULER.SET_ATTRIBUTE('job1','PARALLEL_INSTANCES',TRUE);
    END;
    EXEC DBMS_SCHEDULER.ENABLE('file_watcher1,job1');
    Regards,
    kumar.

    Please post a copy and paste of a complete run of a test case, similar to what I have shown below.
    SCOTT@orcl12c> SELECT banner FROM v$version
      2  /
    BANNER
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    PL/SQL Release 12.1.0.1.0 - Production
    CORE    12.1.0.1.0    Production
    TNS for 64-bit Windows: Version 12.1.0.1.0 - Production
    NLSRTL Version 12.1.0.1.0 - Production
    5 rows selected.
    SCOTT@orcl12c> CONN / AS SYSDBA
    Connected.
    SYS@orcl12c> -- set file watcher interval to one minute:
    SYS@orcl12c> BEGIN
      2    DBMS_SCHEDULER.SET_ATTRIBUTE
      3       ('file_watcher_schedule',
      4        'repeat_interval',
      5        'freq=minutely; interval=1');
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    SYS@orcl12c> CONNECT scott/tiger
    Connected.
    SCOTT@orcl12c> BEGIN
      2    -- create credential using operating system user and password (fill in your own):
      3    DBMS_SCHEDULER.CREATE_CREDENTIAL
      4       (credential_name     => 'cred',
      5        username          => '...',
      6        password          => '...');
      7  END;
      8  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- create table to insert results into:
    SCOTT@orcl12c> CREATE TABLE ZZZZ
      2    (WHEN      timestamp,
      3      file_name varchar2(100),
      4      file_size number,
      5      processed char(1))
      6  /
    Table created.
    SCOTT@orcl12c> -- create procedure to insert results:
    SCOTT@orcl12c> CREATE OR REPLACE PROCEDURE YYYY
      2    (payload IN sys.scheduler_filewatcher_result)
      3  AS
      4  BEGIN
      5    INSERT INTO ZZZZ VALUES
      6        (payload.file_timestamp,
      7         payload.directory_path || '/' || payload.actual_file_name,
      8         payload.file_size,
      9         'N');
    10  END;
    11  /
    Procedure created.
    SCOTT@orcl12c> -- create program, define metadata, and enable:
    SCOTT@orcl12c> BEGIN
      2    DBMS_SCHEDULER.CREATE_PROGRAM
      3       (program_name          => 'prog1',
      4        program_type          => 'stored_procedure',
      5        program_action      => 'YYYY',
      6        number_of_arguments => 1,
      7        enabled          => FALSE);
      8    DBMS_SCHEDULER.DEFINE_METADATA_ARGUMENT(
      9       program_name         => 'prog1',
    10       metadata_attribute  => 'event_message',
    11       argument_position   => 1);
    12    DBMS_SCHEDULER.ENABLE ('prog1');
    13  END;
    14  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> BEGIN
      2    -- create file watcher:
      3    DBMS_SCHEDULER.CREATE_FILE_WATCHER
      4       (file_watcher_name   => 'file_watcher1',
      5        directory_path      => 'c:\my_oracle_files',
      6        file_name          => 'f*.txt',
      7        credential_name     => 'cred',
      8        destination          => NULL,
      9        enabled          => FALSE);
    10  END;
    11  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> BEGIN
      2    -- create job:
      3    DBMS_SCHEDULER.CREATE_JOB
      4       (job_name          => 'job1',
      5        program_name          => 'prog1',
      6        queue_spec          => 'file_watcher1',
      7        auto_drop          => FALSE,
      8        enabled          => FALSE);
      9    -- set attributes:
    10    DBMS_SCHEDULER.SET_ATTRIBUTE ('job1', 'PARALLEL_INSTANCES', TRUE);
    11  END;
    12  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- enable:
    SCOTT@orcl12c> EXEC DBMS_SCHEDULER.enable ('file_watcher1, job1');
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- write file (file must not exist previously):
    SCOTT@orcl12c> CREATE OR REPLACE DIRECTORY upncommon_dir AS 'c:\my_oracle_files'
      2  /
    Directory created.
    SCOTT@orcl12c> declare
      2    filtyp utl_file.file_type;
      3  begin
      4    filtyp := utl_file.fopen ('UPNCOMMON_DIR', 'file1.txt', 'W', NULL);
      5    utl_file.put_line (filtyp, 'File has arrived ' || SYSTIMESTAMP, TRUE);
      6    utl_file.fclose (filtyp);
      7  end;
      8  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- wait long enough (may take more than one minute) for job to run:
    SCOTT@orcl12c> EXEC DBMS_LOCK.SLEEP (100)
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- check for results:
    SCOTT@orcl12c> SELECT * FROM zzzz
      2  /
    WHEN
    FILE_NAME
    FILE_SIZE P
    22-OCT-13 10.12.28.309000 PM
    c:\my_oracle_files/file1.txt
            57 N
    1 row selected.
    SCOTT@orcl12c> declare
      2    filtyp utl_file.file_type;
      3  begin
      4    filtyp := utl_file.fopen ('UPNCOMMON_DIR', 'file2.txt', 'W', NULL);
      5    utl_file.put_line (filtyp, 'File has arrived ' || SYSTIMESTAMP, TRUE);
      6    utl_file.fclose (filtyp);
      7  end;
      8  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- wait long enough (may take more than one minute) for job to run:
    SCOTT@orcl12c> EXEC DBMS_LOCK.SLEEP (100)
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- check for results:
    SCOTT@orcl12c> SELECT * FROM zzzz
      2  /
    WHEN
    FILE_NAME
    FILE_SIZE P
    22-OCT-13 10.12.28.309000 PM
    c:\my_oracle_files/file1.txt
            57 N
    22-OCT-13 10.14.08.580000 PM
    c:\my_oracle_files/file2.txt
            57 N
    2 rows selected.

  • Every time I try to call or they call me, my phone beugs I can not immediatly to call, denied access the directory for 2 to 4 minutes after that it works again   I tried all but nothing, everything works except the call   I have an iPhone 4 Version 6.1.3

    every time I try to call or they call me, my phone beugs I can not immediatly to call, denied access the directory for 2 to 4 minutes after that it works again
      I tried all but nothing, everything works except the call
      I have an iPhone 4 Version 6.1.3
    thank you for your help

    That is the highest you will be able to go with 3g. You need 3gs or 4 to go any higher (multi processors and more memory needed).  Version 4.2.1 marks the end of your updates for that device.

  • I have downloaded an update for my ipod 4th, and after that all my songs, pictures and apps have been erased, Is there some way to recover all my information without have done a security copy?

    I have downloaded an update for my ipod 4th, and after that all my songs, pictures and apps have been erased, Is there some way to recover all my information without have done a security copy?

    I supsect you did the update on other than your syncing computer. If yu did the app, music and synced photo will not be on the iPod after the update since those items are not in the backup that iTunes makes. See:
    iOS 5: Updating your device to iOS 5
    The above applies to all updates performedvia USB on a computer. To get stuff back, restore from backup on the syncing computer.
    The above in my educated guess since you provided litle information about how you did the update.
    You can redownload many iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I cannot send an email from my iPad 2? No problem receiving, why does this happen? Have tried the suggestions for setting up email and after doing the sync mail through iTunes receiving worked great but still cannot send? Any help would be great

    I cannot send an email from my iPad 2? No problem receiving, why does this happen? Have tried the suggestions for setting up email and after doing the sync mail through iTunes receiving worked great but still cannot send? Any help would be great!

    The fact that you can receive means you have a valid e mail address, and have established the connection to the incoming server, so all of that works.  Since the send does not work, that means your outgoing server is rejecting whatever settings you used formthe outgoing set up.  Try them again. 
    Google your particular isp, and ipad and many times you will find the exact settings needed for your isp.  Or tell us here, and soneone else may be on the same isp.  Some mail services need you to change a port, or have a unique name for the outgoing server.  
    Kep trying.

  • Hi, please, anybody knows how many coolers has an iMac 27 Intel core i5? The widget iStatpro shows 3. I changed my HD (the previous one of 1TB crashed) and after that the HDD cooler is constantly working at 4.600 rpm. Anybody is facing this problem?

    Hi, please, anybody knows how many coolers has an iMac 27 Intel core i5? The widget iStatpro shows 3. I changed my HD (the previous one of 1TB crashed) and after that, the HDD cooler is constantly working at 4.600 rpm. Anybody is facing this problem?

    Did you replace the HD yourself? If so what HD did you use?
    You should be aware that the symptom you describe is likely to be because you've used an incompatible HD. The current Macs have the temperature sensor actually in the HD package, with a modified cable to connect to the logic board.
    If the sensor is not in circuit, the fans will run full tilt all the time.
    Also, if it was under warranty, I think you'll find you've just voided it.

  • "This cable or accessory is not certified and may not work reliably with this iPod" It's the charger that came in the box for my iPod 5 and after I updated to IOS 7 it no longer connects to my computer, but charges in the wall with no problem.

    It still charges in the wall, but when it comes to putting songs or pictures on my iPod, it won't connect to iTunes or charge while plugged into my computer.

    - See:      
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. iOS 7 made the iPod/computer more sensiteve to cable problems
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar                 

  • I recently bought an imac but then I got photoshop and it didn't meet the specs. So I was wondering wich computer/laptop would be the best for running Photoshop CC and AfterEffecs CC for under 700Dollars

    I recently bought an imac but then I got photoshop and it didn't meet the specs. So I was wondering wich computer/laptop would be the best for running Photoshop CC and After Effecs CC for under 700 Dollars.

    I recently bought an imac but then I got photoshop and it didn't meet the specs. So I was wondering wich computer/laptop would be the best for running Photoshop CC and After Effecs CC for under 700 Dollars.

  • I cannot get my iphone 4 unlock its got a "iphone not activated contact your carrier if this problem continues to occur" cant even use phone for alarm clock.

    I cannot get my iphone 4 unlock its got a "iphone not activated contact your carrier if this problem continues to occur" cant even use phone for alarm clock.

    Did you already follow these steps?
    iPhone: Troubleshooting activation issues
    Symptoms
    Your iPhone may display one of the following messages when you attempt to activate it:
    "Your iPhone could not be activated because the activation server is temporarily unavailable."
    "The SIM card inserted in this iPhone does not appear to be supported"
    "The iPhone is not recognized and cannot be activated for service."
    "iTunes was unable to verify your device."
    Resolution
    Perform the following steps if you receive one of the messages above:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to a known-good Wi-Fi network if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Apple for assistance.
    Additional Information
    If you are asked to enter a password to proceed with activating the iPhone, Activation Lock may be enabled as part of Find my iPhone.

  • I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    Disable your antivirus and firewall, and try again.

  • I had just updated the facebook app for my ipod touch and now it wont even open, i have tried to restart the ipod and to re download the app several times any help? thanks

    i just updated the facebook app for my ipod touch and now it wont open and i tried restarting the ipod and also re downloading the app several times and nothing.. any help? thanks!

    jflight007 wrote:
    but some of my music was no purchased from itunes so that will all be lost though right?
    ALL of your music should be on your computer in itunes.  Is it not?
    How did it get on your ipod in the first place if not from your comptuer?
    Everything on your ipod should be on your computer and you should be syncing regularly.

  • Hi guys i have an macbook 13 late 2007 and does not work when i start it up all u can see is blank white screen and after that its keep bepping high peech tone 3 times i was thinking the hard drive but im not too sure please guys help.

    Hi guys i have an macbook 13 late 2007 and does not work when i start it up all u can see is blank white screen and after that its keep bepping high peech tone 3 times i was thinking the hard drive but im not too sure please guys help.

    Try to reset the PRAM first then go from there.
    http://support.apple.com/kb/HT1379

  • HT3552 I have been trying to download apps from the app store and every time it tells me there is a problem with my previous billing and direct me to put in new billing information and every time i do that it still will not let me download any apps.

    I have been trying to download apps from the app store and every time it tells me there is a problem with my previous billing and direct me to put in new billing information and every time i do that it still will not let me download any apps.

    Have a look here >  http://support.apple.com/kb/TS1646

  • HT1212 my kid brother entered the wrong pin on my ipad and now it is disabled and i was told to connect tt itunes for restore but every time i do that it tells me to update the ios but i have downloaded the new ios 7 on my ipad 2 and i also have the soft

    my kid brother entered the wrong pin on my ipad and now it is disabled and i was told to connect tt itunes for restore but every time i do that it tells me to update the ios but i have downloaded the new ios 7 on my ipad 2 and i also have the soft copy  of the ios on my windows pc. please how can i reload my ipad

    Try using recovery mode
    Recovery mode - Support - Apple

  • I tried downloading the latest OS X Mountain Lion and [after a long time... I have a slow connection] I got an error message ... The product distribution file could not be verified. It may be damaged or was not signed.

    Hi folks,
    I tried downloading the latest OS X Mountain Lion and [after a long time... I have a slow connection] I got an error message ... We could not complete your purchase The product distribution file could not be verified. It may be damaged or was not signed.
    Everytime I retry or continue the download I just keep getting the same error message!!!
    What can I do to get my product?
    PM

    The only thing that worked for me was to boot in safe mode.
    Power down.  Then press power button and hold 'shift' key until grey screen with progress bar appears... Once booted and logged in just open safari and browse to applestore. 
    No trouble at all once I did this.
    Reminder: create full backup before you upgrade OS
    Hope it helps.

Maybe you are looking for

  • How to change the Size of the font of the JDeveloper IDE

    First of all, this question does not concern the code editor. How to change the font for the editor is clear, well documented in the documentation as well as in many of this forums threads. My question is how the font of all the IDE components can be

  • Wifi Sync not working with Windows 7 64bit

    Hi, having an issue with wifi sync for some reason.  I am running Win 7 64bit, and I have tried everything on these forums with not luck.  It is not my router because it works on another computer with no problem.  I have enabled all ports, syncserver

  • Mouse Pointer resizes when applying pointer style to all

    When Captivate records my SW demo, it uses up to three different mouse pointer styles at different times (Haven't quite figured out what the protocol is).  I really don't like this and would like only one style used (the hand).  So when I right click

  • Assign purchasing org to a plant - Issue with saving entries

    Hi All, When we assign a plant to a expense item/revenue item under SPRO->Enterprise Structure->Assignment->Material Management->Assign Purch org to a Plant (OX 17), it is getting saved into a transport but after creating the transport...changes are

  • Finding the order of archive logs in RAC to NON-RAC manual cloning

    Hi, I am in the process of automating a RAC to NON-RAC clone using traditional method [ not using RMAN ]. Here are the steps: On Source: Record the sequence number and thread of the instance put the database in begin backup mode copy the files disabl