Do i need to update index metadata ?

SQL> select *From v$version;
BANNER
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
PL/SQL Release 11.2.0.2.0 - Production
CORE    11.2.0.2.0      Production
TNS for Linux: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - ProductionI have a partition table (4 range partitions) with a local index. I am not able to add further partitions to the table because local index creation is failing due to a non-existent tablespace.
Here is a test case:
CREATE TABLESPACE TEMP_TS
    DATAFILE '/databases/temp-ts-01.dbf' SIZE 1025M AUTOEXTEND OFF
    EXTENT MANAGEMENT LOCAL
    LOGGING
    ONLINE
CREATE TABLE sales
  ( prod_id       NUMBER(6)
  , cust_id       NUMBER
  , time_id       DATE
  , channel_id    CHAR(1)
  , promo_id      NUMBER(6)
  , quantity_sold NUMBER(3)
  , amount_sold   NUMBER(10,2)
PARTITION BY RANGE (time_id)
( PARTITION sales_q1_2006 VALUES LESS THAN (TO_DATE('01-APR-2006','dd-MON-yyyy')) TABLESPACE TEMP_TS
, PARTITION sales_q2_2006 VALUES LESS THAN (TO_DATE('01-JUL-2006','dd-MON-yyyy')) TABLESPACE TEMP_TS
, PARTITION sales_q3_2006 VALUES LESS THAN (TO_DATE('01-OCT-2006','dd-MON-yyyy')) TABLESPACE TEMP_TS
, PARTITION sales_q4_2006 VALUES LESS THAN (TO_DATE('01-JAN-2007','dd-MON-yyyy')) TABLESPACE TEMP_TS
create index idx_tt on sales( prod_id) local tablespace TEMP_TS parallel 8;
insert into sales values(1,111,TO_DATE('31-MAR-2006','dd-MON-yyyy'),'A',121,1,100);
insert into sales values(2,222,TO_DATE('30-JUN-2006','dd-MON-yyyy'),'A',222,2,200);
insert into sales values(3,333,TO_DATE('31-AUG-2006','dd-MON-yyyy'),'A',333,3,300);
insert into sales values(4,444,TO_DATE('31-DEC-2006','dd-MON-yyyy'),'A',444,4,400);
commit;
SQL> select partition_name,num_rows from dba_tab_partitions where table_name='SALES' order by 1;
PARTITION_NAME                   NUM_ROWS
SALES_Q1_2006                           1
SALES_Q2_2006                           1
SALES_Q3_2006                           1
SALES_Q4_2006                           1
Now i am moving all table and index partitions to SALES_TBS tablespace in order to drop TEMP_TS tablespace.
ALTER  TABLE SALES MOVE PARTITION SALES_Q1_2006 TABLESPACE SALES_TBS PARALLEL 4;
ALTER TABLE SALES MOVE PARTITION SALES_Q2_2006 TABLESPACE SALES_TBS PARALLEL 4;
ALTER TABLE SALES MOVE PARTITION SALES_Q3_2006 TABLESPACE SALES_TBS PARALLEL 4;
ALTER TABLE SALES MOVE PARTITION SALES_Q4_2006 TABLESPACE SALES_TBS PARALLEL 4;
ALTER INDEX IDX_TT REBUILD PARTITION SALES_Q1_2006 ONLINE TABLESPACE SALES_TBS PARALLEL 4;
ALTER INDEX IDX_TT REBUILD PARTITION SALES_Q2_2006 ONLINE TABLESPACE SALES_TBS PARALLEL 4;
ALTER INDEX IDX_TT REBUILD PARTITION SALES_Q3_2006 ONLINE TABLESPACE SALES_TBS PARALLEL 4;
ALTER INDEX IDX_TT REBUILD PARTITION SALES_Q4_2006 ONLINE TABLESPACE SALES_TBS PARALLEL 4;
select dbms_metadata.get_ddl('INDEX','IDX_TT','DBA') FROM DUAL;
  CREATE INDEX IDX_TT ON SALES (PROD_ID)
  PCTFREE 10 INITRANS 2 MAXTRANS 255
  STORAGE(  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE TEMP_TS  LOCAL
(PARTITION SALES_Q1_2006
  PCTFREE 10 INITRANS 2 MAXTRANS 255 LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)  TABLESPACE SALES_TBS ,
PARTITION SALES_Q2_2006
  PCTFREE 10 INITRANS 2 MAXTRANS 255 LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)  TABLESPACE SALES_TBS ,
PARTITION SALES_Q3_2006
  PCTFREE 10 INITRANS 2 MAXTRANS 255 LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)  TABLESPACE SALES_TBS ,
PARTITION SALES_Q4_2006
  PCTFREE 10 INITRANS 2 MAXTRANS 255 LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)  TABLESPACE SALES_TBS )
  PARALLEL 8
SQL> SELECT COUNT(*) FROM DBA_SEGMENTS WHERE TABLESPACE_NAME='TEMP_TS';
  COUNT(*)
         0
SQL> DROP TABLESPACE TEMP_TS INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
Now, i am trying to add a partition to table.
ALTER TABLE SALES ADD PARTITION sales_q1_2007 VALUES LESS THAN (TO_DATE('01-APR-2007','dd-MON-yyyy')) TABLESPACE TEMP_TS ;
ERROR at line 1:
ORA-00959: tablespace 'TEMP_TS' does not existI can drop and recreate the index but my prod index is 100 GB and it seems dropping and re-creating index is not a feasible solution.
Is there any other way i can influence Oracle to add local index partitions to existing tablespace SALES_TBS ?

Opps..that was a typo.. Thanks for point that out.
I am creating partition into an existing tablespace ADMIN.
SQL> ALTER TABLE SALES ADD PARTITION sales_q1_2007 VALUES LESS THAN (TO_DATE('01-APR-2007','dd-MON-yyyy')) TABLESPACE ADMIN ;
ALTER TABLE SALES ADD PARTITION sales_q1_2007 VALUES LESS THAN (TO_DATE('01-APR-2007','dd-MON-yyyy')) TABLESPACE ADMIN
ERROR at line 1:
ORA-00959: tablespace 'TEMP_TS' does not exist
Here is issue: Adding partition to table will automatically add local index partition. Even if all my local index partitions are rebuilt in existent tablespace. Index ddl (from dbms_metadata) is still showing index tablesapce as TEMP_TS and hence index creation is getting failed.
Edited by: OraDBA02 on Mar 28, 2012 1:14 PM

Similar Messages

  • Unable to update advanced metadata of document?

    Hi All,
    I have create portal application in Jdev 11.1.1.7.0  and integrated UCM. added document service taskflow(document manager).
    I am able to see the  documents and upload/download are working. when I am open document and trying to update advanced metadata of document its show forbidden error in popup.
    here is the  image error link.
    http://dl.dropboxusercontent.com/u/78609236/metadata_edit.png
    even i am not getting any error in log. can any one please give me resolution on this.
    any help will be appreciated
    Regards
    Sankar

    Hi Jiri,
    I found the solution for this! by enabled OHS on environment,this working fine.
    but I am facing other issue.its again asking for UCM login details for update metadata.(I thought I need to enable SSO .may be will not ask for login) please correct me if am wrong.
    https://dl.dropboxusercontent.com/u/78609236/metadata.png
    I am facing other issue while uploading document into UCM.actually I have create one profile in ucm with certain custom metadata fields.
    when i am uploading I am selecting that profile so similarly its navigating to ucm page (login and its opening check0in form).
    here requirement is.
    1. by default I have provide one profile fixed when uploading?
    2.i have upload multiple documents simply drag and drop.I don't want to goto ucm page and check in like that ect. so simple one I drag and drop when I click on upload i need to upload document as well as need to update custom metadata.
    to achieve this requirement OTB taskflow is sufficient? or do need to customize the taskflow or only through RIDC.?
    Please let me know the possibility and suggest me to do this.
    Thanks in advance.
    Regards
    Siva   

  • IF Auto Update Statistics ENABLED in Database Design, Why we need to Update Statistics as a maintenance plan

    Hi Experts,
    IF Auto Update Statistics ENABLED in Database Design, Why we need to Update Statistics as a maintenance plan for Daily/weekly??
    Vinai Kumar Gandla

    Hi Vikki,
    Many systems rely solely on SQL Server to update statistics automatically(AUTO UPDATE STATISTICS enabled), however, based on my research, large tables, tables with uneven data distributions, tables with ever-increasing keys and tables that have significant
    changes in distribution often require manual statistics updates as the following explanation.
    1.If a table is very big, then waiting for 20% of rows to change before SQL Server automatically updates the statistics could mean that millions of rows are modified, added or removed before it happens. Depending on the workload patterns and the data,
    this could mean the optimizer is choosing a substandard execution plans long before SQL Server reaches the threshold where it invalidates statistics for a table and starts to update them automatically. In such cases, you might consider updating statistics
    manually for those tables on a defined schedule (while leaving AUTO UPDATE STATISTICS enabled so that SQL Server continues to maintain statistics for other tables).
    2.In cases where you know data distribution in a column is "skewed", it may be necessary to update statistics manually with a full sample, or create a set of filtered statistics in order to generate query plans of good quality. Remember,
    however, that sampling with FULLSCAN can be costly for larger tables, and must be done so as not to affect production performance.
    3.It is quite common to see an ascending key, such as an IDENTITY or date/time data types, used as the leading column in an index. In such cases, the statistic for the key rarely matches the actual data, unless we update the Statistic manually after
    every insert.
    So in the case above, we could perform manual statistics updates by
    creating a maintenance plan that will run the UPDATE STATISTICS command, and update statistics on a regular schedule. For more information about the process, please refer to the article:
    https://www.simple-talk.com/sql/performance/managing-sql-server-statistics/
    Regards,
    Michelle Li

  • Error while Updating Client Metadata & Certs on Oracle Identity Federation

    We need to update the certs on OIF 11g (we are Service Provider's) as our client certificates are expiring soon.
    we got Metadata and Certificate from Client and these are step we followed for updating certs -
    *1. In the OIF 11g - EM console, under OIF server-> security and trust -> under trusted CAs and CRLs, deleted the existing certificate for that partner and upload the new certificates.*
    *2. Then Generate Metadata a new and upload it again under the partners side (OIF - EM - Under OIF server - Fedeartion)*
    This is the ERROR we are getting -
    May 29, 2012 12:41:19 PM oracle.security.fed.sec.SecurityServicesImpl processIncoming
    SEVERE: Certificate was missing when trying to verify digital signature.
    May 29, 2012 12:41:19 PM oracle.security.fed.http.translator.saml.SAMLProtocolMessageTranslator translateMessage
    SEVERE: Signature verification failed for provider ID http://***.uat.*****.com:*
    May 29, 2012 12:41:19 PM oracle.security.fed.controller.ApplicationController processServletRequest
    SEVERE: Exception: {0}
    oracle.security.fed.controller.web.action.RequestHandlerRuntimeException: XML signature verification failed.
    *[2012-05-29T12:41:19.634-05:00] [wls_oif1] [ERROR] [FED-12064] [oracle.security.fed.controller.ApplicationController] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 004kJ1NbamTFw000jzwkno0003540016U3,0:1] [APP: OIF#11.1.1.1.0] [URI: https://*****-uat.*******:443/fed/sp/authnResponse20] Exception: {0}[[*
    oracle.security.fed.controller.web.action.RequestHandlerRuntimeException: XML signature verification failed.
    at oracle.security.fed.http.translator.saml.SAMLProtocolMessageTranslator.translateMessage(Unknown Source)
    at oracle.security.fed.http.handlers.profiles.sp.AuthnResponseV20RequestHandler.generateEvent(Unknown Source)
    at oracle.security.fed.controller.web.action.RequestHandlerSupport.perform(Unknown Source)
    at oracle.security.fed.controller.ApplicationController.processServletRequest(Unknown Source)
    Please let us know...where did we wrong.
    Thanks in Advance!!!

    Can you guys help?
    801072, user12038686, OIDM,

  • Update Managed Metadata field in SharePoint 2013 Designer Workflow for O365

    Hi Guys,
    I need to update the managed metadata field in SharePoint Custom List using Workflow but its not working. I have also tried to use the HTTP WebService POST Operation but no luck.
    Am doing this for a SharePoint Online (O365) Site.
    Has anyone worked on something similar and was able to get it running ?
    I saw a post to create a custom Workflow Activity but I don't have a choice to go with the custom code option.
    http://patrickboom.wordpress.com/2013/07/23/workflow-activity-set-managed-metadata-column/
    I was able to achieve this by creating a SP 2010 based Workflow for O365. Which means that it worked well with SP 2010.
    Is there a different way to do it in 2013 ? I tried almost all options apart from creating custom Activity but nothing worked out. 
    Any help would be great.
    Thanks,
    Nutan
    Nutan Sharma

    Hi Nutan,
    According to your description, my understanding is that you want to update Managed Metadata field with SharePoint 2013 Designer for SharePoint Online.
    As far as I know, there is not an OOB action to achieve your requirement with SharePoint 2013 Designer for SharePoint 2013. Customizing a workflow action is a better option to achieve it.  Why didn’t you customize a workflow action as Patrick’s blog?
    In addition, please take a look at the article about Nintex workflow, check whether it is useful for you:
    http://habaneroconsulting.com/insights/setting-managed-metadata-fields-in-a-nintex-workflow#.UykBSf6KDHo
    As this issue is about SharePoint Online, I suggest you create a new thread on SharePoint Online forum:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=onlineservicessharepoint . More experts will assist you.
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Disconnect WSUS server and Process of Approving Updates via Metadata.

    Hi Folks:
    I have recently setup 2 WSUS servers.   The first one has connectivity to the Internet and of course has access to Microsoft updates.   The second WSUS server is part of a disconnected network.   Both WSUS servers are supporting client workstations
    of various operating system versions.   The connected WSUS server is fairly easy, from a management viewpoint.   I simply check to see what updates are "Needed" and I approve them for download.   However, the disconnected WSUS server
    is the one that I need some advice on.   I want to have a fairly simply procedure for the disconnected WSUS server, but here is the procedure that I think would work:
    Transfer metadata and updates via disc from the connected WSUS server to the disconnected WSUS server (using documented export/import procedure).
    Check to see what is "Needed" updates on the disconnected WSUS server, once the WSUS server has had a chance to absorb all the imported metadata and updates.   This means that the disconnected WSUS server has determined from it's supported
    client workstations, what updates are required.
    Generate a list of those "Needed" updates in some form, so that I can now approve those updates on the CONNECTED WSUS server for download.  
    Once those updates have been downloaded to the connected WSUS server, transfer the updates and metadata again to the disconnected WSUS server.   Approve those updates, so that they can now be sent out to the client workstations on the disconnected
    network.
    If that is my procedure (can someone like Lawrence Garvin), please let me know, if that sounds correct.   I'm concerned about the double export/import of the metadata and updates.
    Also, I'm wondering if it would be better to have separate connected WSUS server for supporting the disconnected WSUS to keep things straight.
    For example:
    One connected WSUS servers supporting the set of client workstations, that are on the connect WSUS server's network.
    One disconnected WSUS server supporting the set of client workstations that are on the disconnected WSUS server's network.
    One more connected WSUS server, that would be used to download and transfer metadata and updates to the disconnect WSUS server.   The advantage in keeping this separate, is that you would never confuse approved updates between the connected network
    client workstations and the disconnected network client workstations.  Especially, if they have different versions of software, that require updating.  
    Any input would be appreciated.

    You will likely also want to configure your WSUS server to "Download express installation files." under the "Update Files and Languages," setting on your options.
    I will unequivocally disagree with this statement, for several reasons:
    First, there's nothing that needs to be deployed that would use Express Installation Files anyway. Express Installation Files were designed to facilitate the deployment of Very Large Updates (read: SERVICE PACKS) across slow-speed links by significantly
    reducing the size of the binary that must be downloaded by the CLIENT. There are NO service packs in the catalog that won't already be installed on any client system.
    Second, in exchange for that ability of clients to download less, it significantly increased the size of the binary that must be downloaded by the SERVER from Microsoft. Express Installation Files will cause hundreds of gigabytes of extra binaries to be
    downloaded, which will need to be transferred to the disconnected server. None of which will actually ever be used.
    Third, most disconnected networks do not include WAN links, so the primary purpose of Express Installation File is contra-indicated by the very scenario being discussed.
    Otherwise by default you might get just an installer downloaded onto the WSUS server and clients might still need internet access to download the actual package contents.
    It would seem that you do not correctly understand Express Installation Files.
    There is an in-depth explanation of Express Installation Files in the WSUS Deployment Guide. For additional information see
    https://technet.microsoft.com/en-us/library/dd939908(v=ws.10).aspx#express
    I also would not recommend a internet facing WSUS server just to provide updates to the disconnected WSUS server as that will also need to download a full copy of the content to that server when it is likely already downloaded onto your internet
    / production WSUS server anyway.
    Seemingly you are also not actually familiar with the documented guidance for how to manage disconnected networks. An Internet-facing (connected) WSUS server is *exactly* how this is done.
    You may also find this part of the Deployment Guide to be useful reading:
    Configure a Disconnected Network to Receive Updates
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • What privs r required to run Alter table truncate partition update indexes?

    I rebuilt the indexes on the table. Know my problem is that when I truncate a partition on the table the unique index whic consist of the primary key fields becomes unusable which causes my to have to rebuild it after each truncate. I tried to runm the following statement from the master schema on but get
    an insufficient privs error when I use "update indexes":
    Alter table schema_name.table_name truncate partition partition_name storage update indexes;
    What priv does master need to perform statement successfully when there's data in it?
    Does using 'update indexes' needs extra priveleges?
    Thanks in Advance
    Gagan

    Hi Its Oracle 10.2.0.4 64 Bit on HP UX.
    I dont have the exact error as I got this much information only from the end user....It will be couple of hours more then he will be available again
    ok so for Truncate we need 'Drop any' privs but to use clause 'update indexes' alongwith do we need some extra privelege?
    Thanks again
    Gagan

  • Explorer/Polestar: Need to re-index every time new data was loaded?

    I have a question concerning the indexing functionality of BO Explorer/Polestar. It's clear that I need to re-index my infospace everytime the structure of the infospace has changed (e.g. I added a new object from my universe). What I'm not sure about is whether I also need to re-index my infospace as soon as new data was loaded in the warehouse which is supposed to be a part of my infospace. Example: I crate an infospace consisting of countries (UK, USA, Germany and Japan) and revenue. I index this infospace. The next day a new country (France) is loaded in the dwh. Do I need to re-index the infospace so that users can see "France" in BO Explorer?
    Thanks for your help!
    Agnes

    Hi Agnes,
    according to the Explorer documentation new data are available AFTER reindexing.
    Indexing refreshes the data and metadata in Information Spaces. After
    indexing, any new data on the corporate data providers upon which those
    Information Spaces are based becomes available for search and exploration.
    Regards,
    Stratos

  • HT5213 How do you update the metadata in the iBookstore?

    I updated my iBook into the iBookstore with no problem, but when I update my metadata, it doesn't work. It doesn't show up in the iBookstore. How do I fix this problem? Anyone have a solution!

    Okay. I'm calling apple development now to see if they can tell me what I need to do or just to wait. Anything is better than not knowing. Thank you!

  • Need to update max osx 10.4.11 and can't even backup....!!??

    I need to update my mac os x 10.4.11 (yes, so sad) but before I do that I purchased a seagate external backup. I attempted to download the seagate dashboard but will not work b/c I don't have Time Machine. In order to get TM I need to upgrade my operating system. Afraid to at this point as I don't want to lose my data. Everything I try to do or update I hit a brick wall. Should I go ahead and update to Lion, does Lion have the app store and Time Machine.

    Your system is a bit old, LOL.
    Do not use any software that is on any external hard drive; most of the time it simply causes havoc. Now, have you formatted the drive in Disk utility (Applications > Utilities)? It needs to be Mac OS Extended. Instead of Time Machine, you might want to download SuperDuper or CarbonCopyCloner - you can make a bootable clone with either one. Having said that, I do not know if either is still available in a version that will run in 10.4 or, for that matter, you may run into applications compatibility problems. You better check here since you may have PPC apps which will not run on later OS's:
    http://roaringapps.com/apps?index=a
    And yes, Snow Leopard has the app store and Time Machine.
    Before proceeding, also check to see if your Mac meets the requirements for Snow Leopard.
    http://support.apple.com/kb/HT4949

  • Update index rates, table:ORTT

    Hello,
    The SBObob object contains function: SetCurrencyRates -  add/update currencies rate.
    I need to to the same, but with indexses
    Does anyone know how to do this?
    thanks
    Tami

    Tami,
    This is a duplicate message to this one ...
    Add/Update Indexes Rates via DI, table:ORTT
    Please close one of them.
    Eddy

  • I have a macbook pro, and am trying to update my software. I recently bought an iphone 5, and my software is to out of date to sync my phone with itunes. I currently am running 10.5.8 and I need to update to atleast 10.6.8. Just wondering if I need to pur

    I have a macbook pro, and am trying to update my software. I recently bought an iphone 5, and my software is to out of date to sync my phone with itunes. I currently am running 10.5.8 and I need to update to atleast 10.6.8. Just wondering if I need to purchase it from apple or if there is an easy/free way to update it.

    you need to purchase it: http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard.  It is only on a disk, not in download form.

  • I have recently upgraded my iMac Intel G5 iSight to OS 10.6.8 and now the internal mic does not work with skype or facebook. I can here static when playing back clips. Do I need to update firmware or reload old sys parts

    I have recently upgraded my iMac Intel G5 iSight (iMac5,1) to OS 10.6.8 and now the internal mic does not work with skype or facebook. I can here static when playing back clips. Do I need to update firmware or reload old system parts. I have zapped PRAM. The blue indicator in system audio panel will appear for a second as I slide the bar for internal mic but then it disappears. Is there a fix?

    The sound seems very faint but can here static on playback.

  • If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    Hello,
    As frustrating as it seems, your best to post any frustrations about the iPhone in the  iPhone discussion here:
    https://discussions.apple.com/community/iphone/using_iphone
    As this discussion is for iBook laptops.
    Best of Luck.

  • I need to update my apps in the App Store, but when i try to update, the Sign Up Apple ID pop up box came out with different Apple ID. How can I change it to mine? My iTunes Store already login with my own Apple ID.

    I need to update my apps in the App Store, but when i try to update, the Sign Up Apple ID pop up box came out with different Apple ID. How can I change it to mine? My iTunes Store already log in with my own Apple ID.

    Just now you said the other Apple ID stored inside it, is that mean all my data back up in that the other ID?

Maybe you are looking for