How to delete 3 months old ALL partitions from oracle tables

How to delete 3 months old ALL partitions? Here is the query i am executing..but this query delete partitions 90 days old..need help sir..
select 'alter table ABC.'||table_name||' drop partition L_'||to_char(sysdate - 90 ,'DDMONYY') || ' UPDATE GLOBAL INDEXES;' from dba_tables where table_name in ('TABLE1','TABLE2');
Thanks
Ora_user

static sql :-
alter table TEST1 drop partition L_01DEC10 update global indexes;
alter table TEST1 drop partition L_06DEC10 update global indexes;
Table DDL :-
CREATE TABLE TABLE1
SEQ_CACHE NUMBER(10) NOT NULL,
REQUEST_DATE_TIME DATE NOT NULL,
Manual_load VARCHAR2(30 BYTE) NOT NULL,
SRS_AUTO VARCHAR2(200 BYTE) NOT NULL,
SRS_REM VARCHAR2(30 BYTE) NOT NULL,
TGT_FORM VARCHAR2(200 BYTE) NOT NULL,
TGT_SYS1 VARCHAR2(25 BYTE),
LOCK_TYPE VARCHAR2(30 BYTE) NOT NULL,
AUTO_LEVEL VARCHAR2(20 BYTE) NOT NULL,
SUCCESS_STS CHAR(1 BYTE) NOT NULL,
SOURCE_NAME VARCHAR2(200 BYTE) NOT NULL,
PNAME_SS VARCHAR2(40 BYTE),
ID_CORE VARCHAR2(40 BYTE),
ID_TRAN VARCHAR2(40 BYTE),
TRIP_TIME NUMBER(10),
REMOTE_TIME NUMBER(10),
ERROR_TYPE VARCHAR2(30 BYTE),
ERROR_TOLL VARCHAR2(30 BYTE),
PRG_ID VARCHAR2(30 BYTE),
OPER_ERROR_ID VARCHAR2(30 BYTE),
DES_SYS_ERR VARCHAR2(200 BYTE),
DBS_INS_DT DATE NOT NULL
TABLESPACE DAT01
PCTUSED 0
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
BUFFER_POOL DEFAULT
PARTITION BY RANGE (REQUEST_DATE_TIME)
PARTITION L_06APR11 VALUES LESS THAN (TO_DATE(' 2011-04-06 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_11APR11 VALUES LESS THAN (TO_DATE(' 2011-04-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_16APR11 VALUES LESS THAN (TO_DATE(' 2011-04-16 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_21APR11 VALUES LESS THAN (TO_DATE(' 2011-04-21 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_26APR11 VALUES LESS THAN (TO_DATE(' 2011-04-26 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_01MAY11 VALUES LESS THAN (TO_DATE(' 2011-05-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_06MAY11 VALUES LESS THAN (TO_DATE(' 2011-05-06 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_11MAY11 VALUES LESS THAN (TO_DATE(' 2011-05-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_16MAY11 VALUES LESS THAN (TO_DATE(' 2011-05-16 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_21MAY11 VALUES LESS THAN (TO_DATE(' 2011-05-21 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_26MAY11 VALUES LESS THAN (TO_DATE(' 2011-05-26 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
PARTITION L_01JUN11 VALUES LESS THAN (TO_DATE(' 2011-06-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
LOGGING
NOCOMPRESS
TABLESPACE DAT01
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
BUFFER_POOL DEFAULT
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING
/

Similar Messages

  • How to delete master data of materials from sap tables

    how to delete master data of materials from sap tables...its needed now.
    i know its not recommended but still we need to do this. give me the best possible approach.
    regards,
    suneetha

    Hi,
    I would suggest you not to write your own code to delete the entries.
    BAPI_MATERIAL_DELETE, this would mark all materials selected for deletion. But still the material would exist in SAP.
    Another solution: Delete a material manually and in another session execute the transaction SM04. This would display the tables which get locked when you do the operation, Then you can write your own code to delete the material numbers from all the related tables.
    Regards
    Subramanian

  • How to delete an old email address from an Apple ID

    We have a number of iPads, iPhones, iPods etc. These all share the same Apple ID.  In the past I used an email address from BT which I no longer have access to and have forgotten the password to. We now have an active Apple ID which I have used for this iPad. I have tried to reset this iPad but it will not allow me to or to delete and update the iCloud backup as it asks for the old BT internet Apple ID password, even though the iPad is logged in with the new active one. Please advise how I can delete the old account from the iPad.

    If the old ID is an earlier version of your current ID, temporarily recreated the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How to delete an old SIA node from the CMS database?

    Hello Everyone,
    I had installed XI 3.1 SP3 on RHEL server with CMS database in Oracle. I added an additional SIA node in the same CMS database using "Add Server Intelligence" option in "serverconfig.sh" script. Since I didnot delete the old one before adding a new one, now even though the services run with the new node but the old SIA node with its own central management server is also present. I know this because when I do "./ccm.sh -start all", it starts the old SIA too. So I have to shut down the old sia every time. This has become a sort of nuisance and I wanted to delete the old SIA node. However when I use "serverconfig.sh" script to delete it, it says cannot find the server with that SIA node.
    Looks like the old SIA nod is still registered in the CMS database but the server config.sh cannot find it. How can I get rid or the old SIA gracefully.
    Please help.
    Regards.

    Thanks Danis one more time.
    Yes, I know the name of the SIA. Good to know that creating an additional SIA with the same name and deleting it would do the trick. However, since the old SIA with the same name is still hanging around there, will it allow me to create an new one with the same name?
    Also, I have seen almost always adding a new SIA renders the existing ones non-usable and non-deletable (without using the work around). My reservation at this point is that, won't just adding an additional SIA though with an old name make the existing SIA running all the services unusable?
    I apologize for all the questions. Since it is the production environment I will be working on, I have very little luxury of first trying it out and asking the questions. We just want all the points covered before proceeding.
    I would very much appreciate your inputs.
    Thank you.

  • *How to Delete the Old Forecast Versions from Cube & DSO? *

    Hi BI Gurus,
    I am currently designing my BI Model to deliver the APO DP requirements.
    It would be great if some one can give me an Idea how to achieve the below:
    We have a requirement that needs to me maintained the Data as Versions.
    1. We are extracting the Data form APO DP planning area and maintaining the Versions based on the Forecast Version in BI. The Forecast Version in BI will hold the Versions in Calmonth format (MMYYYY).
    2. Load frequency-- Monthly load for (36 months worth of forecast data)
    3. Need to maintain 12 Versions and once we reach the 13th Version (13th load) then we need to delete the 1st Version
    4. Data Flow details:
    Export DataSource(PSA)> W.O-DSO->CUBE
    Your help will be much appreciated.
    Thanks in advance
    Group BI

    Hi Shanthi,
    Thanks very much for your reply. But I am not able to understand your reply.
    My Requirement is: We load monthly once to Standard DSO and Cube form WO DSO.
                    |---> Standard DSO
    WO-DSO-|
                    |---> Standard CUBE
    We generate the Forecast Version based on the System Date (we take Month to Forecast Version Object).
    Example: We started loading form March-2008. We loaded 12 Versions by Feb-2009. When we do the next load which is 13th load, we want to delete the data we loaded on March-2008 from both DSO and CUBE.
    Hope this is more clear now.
    Once again thanks very much for your help.
    Regards,
    Group BI

  • How to delete the fist 10 recods from a table ? The problem is real.

    Hi,
    the code below shows that deleting a records using a cursor works well, if your table is out of a environment, but if you are using a environment the things goes different. Please help me, what i am doing wrong ?
    This code is the most clean code i now to do.
    // THE CODE (BEGIN).
    // BDBTEST.cpp : Clean code.
    #include "X:\include\berkeleydb\db_cxx.h"
    #define DWORD               unsigned long int
    #define UINT               unsigned int
    #define DB_ENV_PATH          "Z:\\Test"
    #define DB_FULL_NAME     "Z:\\Test\\Test.db"
    typedef     struct STRTEST
         DWORD     dwID;
         char     caTxt[64];
    } strTest;
    //     Functions.
    int          compare_int     (     Db               *dbp,
                                  const Dbt     *a,
                                  const Dbt     *b);
    void     Save();
    void     Load();
    void     DeleteAll();
    //     Global variables.
    DbEnv     *g_penvDbEnv;
    Db          *g_pdbTest;
    Dbc          *g_pdbcCursor;
    Dbt          g_dbtTestKey;
    Dbt          g_dbtTestData;
    UINT     g_ui32ENVOpenFlags;
    char     g_caError[256];
    int          g_iResult;
    //     Main function.
    int main(int argc, char* argv[])
         g_penvDbEnv     =     NULL;
         g_pdbTest     =     NULL;
         //     First we run without environment (NO ERROR USING g_pdbcCursor->Del(0)).
         remove(DB_FULL_NAME);
         Save();
         Load();
         DeleteAll();
         Load();
         //     Now we run with environment ("Dbc::del: Invalid argument" (err_ = 22) - ERROR USING g_pdbcCursor->Del(0)).
         try
              g_penvDbEnv     =     new     DbEnv(0);
              if(g_penvDbEnv == NULL)
                   return 0;
         catch(DbException &e)
              sprintf(g_caError, "ERRO -> DSDBBD: %s\n", e.what());
              return 0;
         // Set the normal flags for a transactional subsystem. Note that
         // we DO NOT specify DB_RECOVER.
         g_ui32ENVOpenFlags     =     DB_CREATE          |     // If the environment does not exist, create it.
                                       DB_INIT_LOCK     |     // Initialize locking.
                                       DB_INIT_LOG          |     // Initialize logging.
                                       DB_INIT_MPOOL     |     // Initialize the cache.
                                       DB_THREAD          |     // Free-thread the env handle.
                                       DB_INIT_TXN;          // Initialize transactions.
         //     Open/Create environment.
         try
              //     Environment settings.
              g_iResult     =     g_penvDbEnv->set_encrypt("1234", DB_ENCRYPT_AES);
              g_iResult     =     g_penvDbEnv->set_lg_bsize     (1024 * 256);                    //     LOG MEMORY FILE MAX SIZE.
              g_iResult     =     g_penvDbEnv->set_cachesize(0, 1024 * 512, 0);
              g_iResult     =     g_penvDbEnv->set_flags     (DB_AUTO_COMMIT,     1);
              g_iResult     =     g_penvDbEnv->set_flags     (DB_LOG_AUTOREMOVE,     1);
              g_iResult     =     g_penvDbEnv->set_lg_max     (1025 * 1024);                    //     LOG FILE MAX SIZE.
              // Open the environment with full transactional support.
              g_iResult     =     g_penvDbEnv->open(DB_ENV_PATH, g_ui32ENVOpenFlags, 0);
         catch(DbException &e)
              sprintf(g_caError, "ERRO -> DSDBBD: %s\n", e.what());
              return 0;
         remove(DB_FULL_NAME);
         Save();
         Load();
         DeleteAll();     //     Error goes here.
         Load();
         g_penvDbEnv->close(0);
         delete     g_penvDbEnv;
         g_penvDbEnv     =     NULL;
         return 0;
    void     Save()
         int          i;
         int          iResult;
         DWORD     dwID;
         strTest     sttTest;
         if(g_penvDbEnv == NULL)
              g_pdbTest     =     new     Db(NULL, 0);
         else
              g_pdbTest     =     new     Db(g_penvDbEnv, 0);
              //     Setting databases flags     (Just use with environment).
              g_pdbTest     ->set_flags(DB_CHKSUM | DB_ENCRYPT);
         if(g_penvDbEnv == NULL)
              g_pdbTest     ->set_encrypt("1234", DB_ENCRYPT_AES);
         g_pdbTest->set_bt_compare(compare_int);
         g_iResult     =     g_pdbTest->open(NULL, DB_FULL_NAME, NULL, DB_BTREE, DB_CREATE | DB_THREAD, 0);
         dwID     =     1;
         for(i=0;i<100;i++)
              sttTest.dwID     =     dwID;
              sprintf(sttTest.caTxt, "ID = %04u", sttTest.dwID);
              g_dbtTestKey     .set_data((void*) &sttTest.dwID);
              g_dbtTestKey     .set_size(sizeof(DWORD));
              g_dbtTestData     .set_data((void*) &sttTest);
              g_dbtTestData     .set_size(sizeof(sttTest));
              iResult = g_pdbTest->put(0, &g_dbtTestKey, &g_dbtTestData, DB_NOOVERWRITE);
              dwID++;
         g_pdbTest->sync(0);
         g_pdbTest->close(0);
         delete     g_pdbTest;
         g_pdbTest     =     NULL;
    void     Load()
         strTest     *psttTest;
         if(g_penvDbEnv == NULL)
              g_pdbTest     =     new     Db(NULL, 0);
         else
              g_pdbTest     =     new     Db(g_penvDbEnv, 0);
              //     Setting databases flags     (Just use with environment).
              g_pdbTest     ->set_flags(DB_CHKSUM | DB_ENCRYPT);
         if(g_penvDbEnv == NULL)
              g_pdbTest     ->set_encrypt("1234", DB_ENCRYPT_AES);
         g_pdbTest->set_bt_compare(compare_int);
         g_iResult     =     g_pdbTest->open(NULL, DB_FULL_NAME, NULL, DB_BTREE, DB_CREATE | DB_THREAD, 0);
         // Get a cursor
         g_pdbTest->cursor(NULL, &g_pdbcCursor, 0);
         // Iterate over the database, retrieving each record in turn.
         while((g_iResult = g_pdbcCursor->get(&g_dbtTestKey, &g_dbtTestData, DB_NEXT)) == 0)
              //     Get temp struct.
              psttTest     =     (strTest*)     g_dbtTestData.get_data();
         g_pdbcCursor->close();
         g_pdbTest->close(0);
         delete     g_pdbTest;
         g_pdbTest     =     NULL;
    void     DeleteAll()
         strTest     *psttTest;
         try
              if(g_penvDbEnv == NULL)
                   g_pdbTest     =     new     Db(NULL, 0);
              else
                   g_pdbTest     =     new     Db(g_penvDbEnv, 0);
                   //     Setting databases flags     (Just use with environment).
                   g_pdbTest     ->set_flags(DB_CHKSUM | DB_ENCRYPT);
              if(g_penvDbEnv == NULL)
                   g_pdbTest     ->set_encrypt("1234", DB_ENCRYPT_AES);
              g_pdbTest->set_bt_compare(compare_int);
              g_iResult     =     g_pdbTest->open(NULL, DB_FULL_NAME, NULL, DB_BTREE, DB_CREATE | DB_THREAD, 0);
              // Get a cursor
              g_pdbTest->cursor(NULL, &g_pdbcCursor, 0);
              // Iterate over the database, retrieving each record in turn.
              while((g_iResult = g_pdbcCursor->get(&g_dbtTestKey, &g_dbtTestData, DB_NEXT)) == 0)
                   //     Get temp struct.
                   psttTest     =     (strTest*)     g_dbtTestData.get_data();
                   g_iResult     =     g_pdbcCursor->del(0);
         catch (DbException &dbe)
              sprintf(g_caError,     
                        "%s",
                        dbe.what());
         g_pdbcCursor->close();
         g_pdbTest->close(0);
         delete     g_pdbTest;
         g_pdbTest     =     NULL;
    int compare_int(Db dbp, const Dbt a, const Dbt *b)
         int          iReturn;
         DWORD     dwKey1;
         DWORD     dwKey2;
         dwKey1     =     0;
         dwKey2     =     0;
         iReturn     =     0;
         dwKey1     =     *((DWORD*) a->get_data());
         dwKey2     =     *((DWORD*) b->get_data());
         if(dwKey1 > dwKey2)
              iReturn     =     1;
         else
              if(dwKey1 < dwKey2)
                   iReturn     =     -1;
         return     iReturn;
    // THE CODE (END).
    Thanks,
    DelNeto

    Hi all
    I solved it. No documentation about it, but the solution is to use transaction.
    Just use this DeleteAll function that all works fine.
    void     DeleteAll()
         strTest     *psttTest;
         DbTxn     *pTxn;
         try
              pTxn          =     NULL;
              g_pdbTest     =     NULL;
              if(g_penvDbEnv == NULL)
                   g_pdbTest     =     new     Db(NULL, 0);
              else
                   g_pdbTest     =     new     Db(g_penvDbEnv, 0);
                   //     Setting databases flags     (Just use with environment).
                   g_pdbTest     ->set_flags(DB_CHKSUM | DB_ENCRYPT);
              if(g_penvDbEnv == NULL)
                   g_pdbTest     ->set_encrypt("1234", DB_ENCRYPT_AES);
              g_pdbTest->set_bt_compare(compare_int);
              g_iResult     =     g_pdbTest->open(NULL, DB_FULL_NAME, NULL, DB_BTREE, DB_CREATE | DB_THREAD, 0);
              if(g_penvDbEnv == NULL)
                   g_pdbTest->cursor(NULL, &g_pdbcCursor, 0);
              else
                   // Get a cursor.
                   g_penvDbEnv->txn_begin(NULL, &pTxn, 0);
                   g_pdbTest->cursor(pTxn, &g_pdbcCursor, 0);
              // Iterate over the database, retrieving each record in turn.
              while((g_iResult = g_pdbcCursor->get(&g_dbtTestKey, &g_dbtTestData, DB_NEXT)) == 0)
                   //     Get temp struct.
                   psttTest     =     (strTest*)     g_dbtTestData.get_data();
                   g_iResult     =     g_pdbcCursor->del(0);
              g_pdbcCursor->close();
              if(g_penvDbEnv != NULL)
                   pTxn->commit(0);
         catch (DbException &dbe)
              sprintf(g_caError,     
                        "%s",
                        dbe.what());
              g_pdbcCursor->close();
              if(g_penvDbEnv != NULL)
                   pTxn->abort();
         g_pdbTest->close(0);
         delete     g_pdbTest;
         g_pdbTest     =     NULL;
    Thanks to all readers,
    DelNeto

  • How do I delete an old email account from my system

    I was asked to update a password to our company email account and I updated.  Then I had to update the password on my iphone.  Now my iphone won't send any emails out because it is asking for an update to an email account that was never associated with this iphone (the email account was from a former employer).  It must have been restored or synced to my iphone or tied to iTunes through syncing.  I deleted the old employer phone from itunes when I left the job and purchased a new iphone.
    But now my new iphone is not sending emails because it says that the old email account does not recognize the new password.  And there is no old email account to delete.  I've looked in my itunes acccount to try to delete there as well and can find nothing to delete from the old account.
    Message was edited by: ggslavik

    Very interesting, thank you for the update.
    I would next reset the network settings on the phone, in case there is some info there that is stuck and causing the issue:
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    I would also check these locations to see if the account is signed in anywhere else as an Apple ID in your Settings:
    iCloud
    iTunes & App Stores
    Messages
    FaceTime
    Game Center
    If not I would as a last resort, backup your iPhone with this article:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    And restore it from your backup with this article and test the issue:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    If the issue persists when restored, then restore it as a new device and test the issue to help isolate the data in the backup.

  • How do I delete an old apple id from my messages account?

    When I upgraded from iphone 4 to 5s, my new iphone automatically set the messages account to that of an old apple id. The old apple id is from college, the email account no longer exists, and I have forgotten my password that was associated with the apple id. Because the email address no longer exists and i cannot remember the answers to my security questions, i cannot reset my password and login into messages on my iphone. My goal is to set my new apple id in messages on my iphone so that I can sync my iphone messages with the messages on my macbook pro. Does anyone know how to delete the old apple id?

    With iOS 7 there’s no workaround.
    They should have done this.
    What to do before selling or giving away your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT5661
    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    iCloud: Activation Lock
    http://support.apple.com/kb/PH13695
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/ts4515
    Buying or Selling a Used iPhone or iPad Running iOS 7? Read This First!
    http://www.makeuseof.com/tag/buying-or-selling-a-used-iphone-running-ios-7-read- this-first/
    You may have purchased a stolen iPad.
     Cheers, Tom

  • How do i delete an old iCloud account from phone when I forget my password and I'm not able to reset it because my security questions do not match?! Help!! Currently not able to update any apps or icloud info

    How do i delete an old iCloud account from phone when I forget my password and I'm not able to reset it because my security questions do not match?! Help!! Currently not able to update any apps or icloud info...

    If your device is signed into an old ID of yours that is an earlier version of the ID you want to sign in with, do the following:
    If you are using iMessage and FaceTime, make sure you are signed into these services with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll (unless you are using iCloud Photo Library).  When finished go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • How can i delete an old apple id from my ipad running ios 5

    how can i delete an old apple id from my ipad, its the 1st version running ios 5.1.1

    To remove the apple id from the device, go to Settings>icloud>delete account. NOTE: this will only remove the account from the iPad. It will not delete the account.
    I hope this helps
    -Ethan7988

  • HT204053 how can i delete my old icloud account from my iphone

    how can i delete my old icloud account from my iphone

    Go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • TS3274 How to remove an old iCloud account from my IPad.  The account (email) was on my dad's name and he resently change it and now i can't  reset or delete his iCloud account without his password.  Please advise on the procedure.  Thanks.

    How to remove an old iCloud account from my IPad.  The account (email) was on my dad's name and he resently change it and now i can't  reset or delete his iCloud account without his password.  Please advise on the procedure.  Thanks.

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must use the previous owner's password to get permission to use the device. If you cannot get the password your father put on the iPad you will never be able to activate the device and no one can help you do it.

  • How to delete an old network from the list on the iPad?

    Anyone know how to delete an old network from the listing and then add a new one? I did it when I first got my iPad and cannot remember how I did it! Hey, I'm an Apple rookie but I am trying. Take care and thanks in advance for any help.

    Setting > General > Reset > Network Reset

  • How to delete an old Iphone from "find my iPhone app"?

    How to delete an old Iphone from "find my iPhone app"?

    Swipe your finger accross the off line device and then select "Delete."
    You might want to review the app help file which explains this in detail (select Help upper left).

  • How to unsync my old iphone 3 from new iphone 4 as i have given old phone to my daughter who is getting all my texts etc

    how to unsync my old iphone 3 from my new iphone 4. we both use the same email apple id etc. am really useless with this type of thing so will nedd step by step, as if explaining to a 3 year old!! also to do same with daughters ipad and how to stop it happening again when other daughter gets an i pad for xmas!! thank you to whoever can help.

    Cam,
    The iCloud is still in beta, and to the best of my knowledge is not yet available in the UK.  So if you go to the home page of the iTunes Store and click the link for Purchased, I assume you will see options for Apps and Books but not Music?
    Until the iCloud comes, the official Apple policy is that you can't redownload purchases, but some report that they are able to get an exception by asking nicely to iTunes Customer Service via their web page.  No guarantees, but it is worth a try.

Maybe you are looking for

  • Gallery Layout

    I have been trying to create a Gallery that would look something like the bing news app, where the first page / section would be a full screen image, then the next page would be a grid of articles. So essentially different elements would be on differ

  • Network Design Implementation

    Hi, I am trying to design a master-slave system with the following attributes: 1. Linux Master box having all the Java code. 2. At least two Windows XP Professional Slave boxes (no Java code on any of these) Front end screens on Master would contain

  • UML TOOL FOR CLASS DIAGRAMS??

    Hi, Can anyone tell me if there is an free tool which can draw the class diagrams if i give the root of my source directory or some package? Thanks

  • Change image size By hover usnig VisualStateManager XAML

    I Have some images inside a grid like this <Grid> <Image Name="Image" Source="ِAssets/1"/> <Border> <TextBlock Name="Name" Text="Name"/> </Border> </Grid> How to make each image when the mouse hover over it to increase in size Using VisualStateManage

  • How do I set Safari 5 to ask before closing multiple tabs?

    Safari 4 was set to ask before closing multiple tabs, but when I upgraded to 5 this was no longer an option. I've looked in Preferences with no luck and the Help menu has no information. Now I lose websites when the window is inadvertently closed.