RMAN area configuration requirments

I want to take my back up by RMAN , i know i need /ORAflash area. what other things i need to make RMAN ready for taking backup...
Secondly what is the defauld location of /ORAflash area? Is it possible i can make flash area on some remote location?

nothing specific
If DB_RECOVERY_FILE_DEST is set to the flash area then
BACKUP DATABASE will work. however you may need more than this.

Similar Messages

  • NEW 9I RMAN: PERSISTENT CONFIGURATION PARAMETERS - INTRODUCTION

    제품 : RMAN
    작성날짜 : 2001-11-09
    NEW 9I RMAN: PERSISTENT CONFIGURATION PARAMETERS - INTRODUCTION
    ===============================================================
    오라클 9i 부터는 RMAN 에서 항상 사용되는 파라미터 세팅을 고정적으로 할 수 있게
    되어 매번 파라미터를 주어야 하는 수고를 하지 않아도 된다.
    Persistent Configuration Parameters 기능은 RMA 에 다음과 같은 변화를 주었다:
    * RMAN 에서 파라미터의 디폴트를 DBA 가 커스터마이징 할 수 있게 되어 사용이 편리해졌다.
    * 한번 커스터마이징한 파라미터는 모든 Job 에 적용이 된다.
    * DBA 는 'BACKUP DATABASE' 명령어 하나만으로 RMAN 에서 데이터베이스 백업을 수행
    할 수 있게 되었다.
    * 오라클 9i 의 CONFIGURE 명령어는 RMAN 의 default setting 을 영구적으로 바꾸어 준다.
    * 파라미터의 값은 컨트롤파일에 저장이 되며 필요한 경우에는 리커버리 카다로그와 맞추어
    주는 과정이 필요하다.
    오라클 9i RMAN 에서는는 'show' 명령어로 현재의 파라미터 세팅을 확인 할 수 있다.
    SHOW show_operand [,show_operand ...];
    show_operand: RETENTION POLICY |
    EXCLUDE |
    BACKUP COPIES |
    CHANNEL |
    DEFAULT DEVICE TYPE |
    DEVICE TYPE |
    SNAPSHOT CONTROLFILE |
    ALL
    'show all' 명령어로 현재의 모든 세팅을 확인 한다.
    RMAN> show all;
    using target database controlfile instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/beta/app/oracle/product/9.0.1/dbs/snapc
    f_V901.f'; # default
    이렇게 Persistent Configuration Parameters 를 세팅하기 위해서는 스크립트를 만들어
    수행 하는 것이 좋다:
    run {
    # Use the configure commands to create your backup policy.
    # When complete these will be the new persistent
    # configuration parameters for RMAN in the controlfile
    # of the target datbase.
    CONFIGURE RETENTION POLICY TO REDUNDANCY 3;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO
    '/proj/SME9i/backup/%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/proj/SME9i/backup/snapf_prod9.f';
    이렇게 스크립트를 수행 한 후에 결과를 확인 하기 위해서는:
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 3;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO
    '/proj/SME9i/backup/%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/proj/SME9i/backup/snapf_prod9.f';
    결과는 위와 같다.
    --------------THE END------------------------------------------------------

    Search button?!?!
    Re: seek some good documents on Recovery MANager  to start with
    Aron

  • RMAN-05021 configuring retention policy on standby

    Hello all.
    Running Oracle 11.2.0.2 on Linux (x64); single-node instance.
    We've the following setup:
    bvlive (PRIMARY)
    bvstby2 (STANDBY)
    We currently have a retention policy of 21 days, and backup space on the standby is starting to be an issue.
    Initially, I thought I could reconfigure this on the standby - but RMAN won't allow this:
    STANDBY:
    RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 days;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 10/15/2012 10:09:50
    RMAN-05021: this configuration cannot be changed for a BACKUP or STANDBY control fileWhich makes sense when I think about it. I saw this thread retention policy is not configure but get different results:
    PRIMARY:
    RMAN> configure retention policy to recovery window of 14 days;
    old RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 21 DAYS;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 DAYS;
    new RMAN configuration parameters are successfully stored
    RMAN> show all;
    RMAN configuration parameters for database with db_unique_name BVLIVE are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 DAYS;STANDBY:
    RMAN> SHOW ALL;
    RMAN configuration parameters for database with db_unique_name BVSTBY2 are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 21 DAYS;Which also makes sense; so I'm not convinced the original poster solved his problem. I've seen a few threads about this which involve:
    1. shutting down standby
    2. configuring retention policy on primary
    3. taking a backup controlfile from primary
    4. copying it across to the standby
    5. restarting standby using the backed-up controlfile
    But then this seems to be for RAC, which we're not using.
    It occurred to me that I could use the KEEP UNTIL option when taking backups, but ran into; ORA-19811: cannot have files in DB_RECOVERY_FILE_DEST with keep attributes (i.e. I can't use KEEP and store backups in the FRA).
    Can anyone please advise on the best way to get the retention period down on the standby, ideally without having to rebuild the standby from scratch?
    Thanks,
    Ray
    Edited by: ray_h on 15-Oct-2012 03:33

    Hello all.
    @ P. Forstmann: thanks for confirming.
    @ S Rao: Yep - this is the link I had in mind. Tried it out and it worked. One thing to note is that I didn't have to rename datafiles - presumably creating the standby controlfile negates the need for this in 11g (indeed, the alert log shows these two lines when you mount):
    Set as converted control file due to db_unique_name mismatch
    Changing di2dbun from bvlive to bvstby2which put my mind at ease when the rename commands failed, saying the files didn't exist
    @ mseberg: Typically, our MOS license ran out just as a useful link shows up.
    Thanks everyone.
    Ray

  • The e-mail message could not be sent. Make sure the outgoing e-mail settings for the server are configured correctly

    I have a 2 server SharePoint farm.
    All outgoing emails were working fine.
    I just restarted both servers and now after that none of the emails are being sent. I am using OOB publishing workflow and it shows message:
    The e-mail message could not be sent. Make sure the outgoing e-mail settings for the server are configured correctly.
    Even if I setup Alert on some list, it doesn't send email.
    I have checked that outgoing email setting in CA is defined and like I said it was working fine without problems but after restart it is showing error.
    What could be the cause of this and how to fix it?
    EDIT
    I removed outgoing mail server in CA, added again and restart IIS but still emails from OOB workflow is not being sent. But email from Alerts are being sent. Don't know what to do now.

    This is really weird, It works when an alert is set but workflows doesn't send emails... Can you create a simple 1 Step workflow in SPD to send an email when a specific field is set. See if this sends an email..
    AJ MCTS: SP 2010 Configuration MCSA: Windows 7 If you find this post useful kindly please mark it as an answer :) TY
    I created a test workflow which sends email to user and it is also not sending email. But I am getting email from SharePoint regarding "variation" page changes as well as alerts which I told above.

  • Browser is not allowing sign in to excite web page. it says my settings are configured to disable cookies and/or javascript. please help

    i just got firefox 4.0, and i tried to simply sign in to myexcite.com, but instead the message "the browser you're using is not allowing you to sign in to Excite. Right now , your browser's settings are configured to disable cookies and/or javascript..."
    Please Help. I am new to Firefox 4.0

    First, create a specific [[Managing profiles|profile]] for Firefox 4.0b8 to prevent interferences between current (Firefox 3.6) and beta (Firefox 4.0b8) versions.
    Then, see [[Cannot log in to websites]].

  • #554 5.4.4 SMTPSEND.DNS.MxLoopback; DNS records for this domain are configured in a loop ##

    Hi,
    This is my first post here. 
    My exchange server of late is facing a peculiar problem. I get the error message that I have posted below when sending mails to any outside domain. However when I restart the server the mails can be resend to the address without any issue. After a certain
    time again the issue pops up upon which I am forced to restart the server again. I am running 2007 Exchange on Windows 2003.
    Generating server: name.mydomain.com
    [email protected]
    #554 5.4.4 SMTPSEND.DNS.MxLoopback; DNS records for this domain are configured in a loop ##
    [email protected]
    #554 5.4.4 SMTPSEND.DNS.MxLoopback; DNS records for this domain are configured in a loop ##
    Original message headers:
    Received: from name.mydomain.com ([1xx.xxx.xxx.xx5]) by MHDMAILS.mouwasat.com
     ([1xx.xxx.xxx.xx5]) with mapi; Wed, 19 Oct 2011 08:56:29 +0300
    From:  <[email protected]>
    To: <[email protected]>
    CC: "Al Alami,Tareq" <[email protected]>
    Date: Wed, 19 Oct 2011 08:56:27 +0300
    Subject: RE:   
    Thread-Topic:   
    Thread-Index: AcyAQ5tu8z9CvBfdT5+1pcGQkk6x0AIuwczAAAGZjeABQyW5sAADeeJQAAETNDA=
    Message-ID: <[email protected]>
    References: <[email protected]com>
     <[email protected]com>
    Accept-Language: en-US
    Content-Language: en-US
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator:
    acceptlanguage: en-US
    Content-Type: multipart/related;
                boundary="_004_EEC8FA6B3B286A4E90D709FECDF51AA06C0588CA11namedomain_";
                type="multipart/alternative"
    MIME-Version: 1.0

    On Sun, 23 Oct 2011 15:05:15 +0000, Jobin Jacob wrote:
    >
    >
    >Even af
    >
    >ter removing my domain from the send connector I continue to receive the error. I would like to say I do have a firewall, Cyberoam. However, it was the same configuration till now in the firewall. I did try Mx lookup and found the following.
    >
    >Could there be any other solution to this issue ?
    Sure, but it's necessary to ask a lot of questions since none of us
    know how your organization is set up.
    I see you also have "Use the External DNS Lookup settings on the
    transport server" box checked. How have you configured the "External
    DNS Lookups" on the HT server's property page? Is there any good
    reason why you aren't just using your internal DNS servers? If the
    internal DNS servers are configured to resolve (or forward) queries
    for "external" domains then there's no reason to use that checkbox. In
    most cases checking that box is a mistake.
    http://technet.microsoft.com/en-us/library/aa997166(EXCHG.80).aspx
    The behavior you describe (it works for a while and then fails;
    restarting the server returns it to a working state) sure sounds like
    some sort of DNS problem.
    Rich Matheisen
    MCSE+I, Exchange MVP
    --- Rich Matheisen MCSE+I, Exchange MVP

  • What is Retro active rebates and how there are configured

    Hi,
    What it means by retro active rebates and how there are configured. Please also explain how rebates settlement will happen...
    Regards
    Sankar

    Hi,
    Retroactive Rebate Processing:
    You can create rebate agreement for which the validity period start date lies in the past. The system takes in to account all the rebate relevant billing documents that were created between the validity start date & the date you created the rebate agreement. In addition to the credit memo request, the system creates a correction sales doc (type B2) automatically for this amount.
    Create the rebate agreement in the usual way. The system recognizes that the rebate agreement is retroactive.
    Regards,
    Raghav

  • LMS 4.2 - How do I find switch ports that are configured as trunks.

    I've been tasked with finding all switch ports that are configured as Trunks. We plan to use LMS 4.2 to push (via Netconfig) new interface level commands to all user (non-trunked) ports. From my experience, this poses a problem because we do not know which ports are configured as trunks -vs- user ports.
    Using Netconfig is not going to be easy since there is no way to script this. It would be great if I could run a show command on a switch and then have CWSI peform a change based upon the output.
    In other words, we need a way to run a job based upon the output of a command.
    Is there a section of LMS that I could use for help with this?
    Thanks,

    You need to go to Monitoring>Dashboard. Here Just click the switch in the Llisted device and then click the interface you will find the all the down and Up interface with type of configuration (i.e. Trunk or Access.)

  • The e-mail message cannot be sent. Make sure the outgoing e-mail settings for the server are configured correctly.

    Hi,
    I have SP 2013, and it was working properly. and workflows send emails perfectly. yesterday, i decided to build a fresh site collection so i deleted the old one and created a new one. now, workflows are unable to send emails. i'm sure it has nothing to do
    with my mail server cuz no changes happened to it. i'm sure about the settings for outgoing mail on central admin. all i did, was to enter mail server IP in outgoing mail field and email below it.
    in the workflow status the status says "error" followed by this message: "The e-mail message cannot be sent. Make sure the outgoing e-mail settings for the server are configured correctly."
    Any help please?

    Hi,
    According to your post, my understanding is that you failed to send email after building a fresh site collection.
    I recommend to verify that you have entered your SMTP server name correctly.
    You can add it as FQDN e.g. ServerName.DomainName.
    Here are a similar articles for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/f0605f59-0baa-49c9-854e-0fb369a9e5a0/cant-seem-to-get-emails-to-send-in-sharepoint
    http://alpesh.nakars.com/blog/sharepoint-outgoing-email-issue/
    Best Regards,
    Linda
    Linda Li
    TechNet Community Support

  • The email message cannot be sent. Make sure the outgoing email settings for the server are configured properly

    i have an issue when loading a workflow. it gives me a following error "The email message cannot be sent. Make sure the outgoing email settings for the server are configured properly". it doesnt send me any alerts and worlflow fails at the end
    with the above error message.

    Hi,
    I agree with Bistesh. But after Outgoing e-mail settings are configured properly, if the issue still exists,
    It may result from your Anti-Virus. Please refer to the following steps:
    Open MCAfee Console and go to Access Protection window.
    Click Anti-Virus Standard Protection and edit “prevent mass mailing 
    worms from sending emails” rule.
    Now we need to know which processes are being blocked therefore we need to check the MCAfee Log located at
    C:\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection\AccessProtectionLog.txt
    you may find entries of DtExec , DtExecUI and DatabaseMail90, now these processes need to be entered in the exclusion list of selected rule .
    Reset the IIS And SharePoint Timer service to check if this works for you.
    Here are some similar issues with you, you can use as a reference:
    http://social.technet.microsoft.com/Forums/en-US/667f0d61-4914-43fa-80c1-8cf430b113bb/workflow-email-not-working-but-normal-email-alerts-working-fine?forum=sharepointgeneralprevious
    http://techsuite.wordpress.com/2008/12/08/workflow-history-the-email-message-cannot-be-sent-make-sure-the-outgoing-email-settings-for-the-server-are-configured-properly/
    Best Regards,
    Lisa chen

  • No Logged on Office Users are configured for IRM

    Setup:
    AD RMS on 2012 configured with https Crypto 1
    Exchange 2010 SP3 RU6
    Office 2013
    I can open OWA and use IRM to protect a document but any Office application I open and try to protect gives me an error like this:
    No Logged on Office Users are configured for Information Rights Management (IRM).
    I have googled and taken a look at all of the options out there and everything seems to be configured correctly.
    Any ideas or other troubleshooting tips I can do???

    Hi JerHiggs123,
    It seems that this is a known bug. 
    Please try the following fix:
    Open regedit
    Go to HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Identity\Identities\[email protected]
    Delete the registry key “SignedOut”=dword:00000001
    If there is no such key, add it as name "SignedOut", type of REG_DWORD and value of "00000001"
    Did my post help you or make you laugh? Don't forget to click the Helpful vote :) If I answered your question please mark my post as an Answer.

  • What are configuration changes in billing?

    what are configuration changes in billing
    regards
    [email protected]

    hi
    mail sent check uour mail
    reward if useful
    prashanth

  • No JobServers are configured for ISJobServerGroup. (COR-10715)

    hello,
    I have problem when do data profiling in Information steward:
    No JobServers are configured for ISJobServerGroup. (COR-10715)
    com.bobj.mm.sdk.SDKException: No JobServers are configured for ISJobServerGroup. (COR-10715)
    i search in the forums, marketplace, about  similiar error, and tried all the suggestion, such as
    create Job server use "Data Service manager" but still didn't work.
    for information I install BO Platform 4.0, data Service 4.0 SP1 and then Information steward 4.0, with database sql server 2008
    any help will be appreciate...
    Thank you.

    Hi laksh thank you for your replay,
    laksh89 wrote:
    hi,
    you have to configure your server and then have to associate with the IS repository.
    what i've done were:
    Create repository central, profiler and local use Data Service Repository Manager
    Configure repository in BO Central Management Console, there are Central, Profiler and Local
    Create Group for Repository Central and assign a User in Data service management Console
    With Data Service Server manager i've created Job Server local and Job server Profiler
    Use Data Service Designer i've add Central repository and Activate it.
    laksh89 wrote:
    > set the environment variable first in command line and  in service manager run
    > $ cd $LINK_DIR/bin/
    about this i don't know how to run service manager, when i go to $LINK_DIR/bin/   use dos command, i didn't found service manager application, i found al_jobserver, al_jobservice etc.
    laksh89 wrote:
    > $ . ./al_env.sh
    > $ ./svrcfg
    above objects i didn't found also.
    laksh89 wrote:
    > enter 3 : configure  server
    > enter c: add server , then give name and specify the port of the server
    > enter a: add to the repository connection, here you have to specify the connection info
    >
    > once evrything is done press q  and then x to exit service manager.
    >
    > Also when you have installed Data services, plz make sure you have selected job server under server component in "select feature" option and MDS and VDS is chosen during the DS installation as it is unchecked by default
    when install data service i already select feature Job server but i didn't found MDS and VDS during installation.
    I'm sorry it's quite new for me..
    Edited by: Martinus Hendriyanto on Dec 4, 2011 2:16 PM

  • Why some APs would register with Secondary WLC while they are configured to Primary WLC

    Dears,
    I faced strange behavior  i have two WLC one primary and the other one secondary.
    some AP join to secondary WLC for short period (2 min or less) and returned to primary, while they are configured to primary WLC.
    Two WLC image version: 7.4.121.0
    Wait your replies plz.
    Thanks,

    please find Logs from Secondary WLC. and i can't get Access point logs cause i Remote site.
    465    Tue Jun 3 13:20:36 2014    AP '90068-02', MAC: 34:a8:4e:bb:08:90 disassociated previously due to Link Failure. Uptime: 0 days, 18 h 46 m 25 s . Reason: Capwap WTP Event request.
    466    Tue Jun 3 13:20:36 2014    AP on the 802.11a radio with Base Radio MAC 34:a8:4e:bb:08:90 (90068-02) is unable to associate. The regulatory domain configured on it '-E' does not match the controller's regulatory domain: -C
    493    Tue Jun 3 13:16:59 2014    AP '90068-02', MAC: 34:a8:4e:bb:08:90 disassociated previously due to Link Failure. Uptime: 0 days, 18 h 42 m 55 s . Reason: Capwap WTP Event request.
    494    Tue Jun 3 13:16:59 2014    AP on the 802.11a radio with Base Radio MAC 34:a8:4e:bb:08:90 (90068-02) is unable to associate. The regulatory domain configured on it '-E' does not match the controller's regulatory domain: -C
    59    Tue Jun 3 13:20:42 2014    AP '90068-01', MAC: 34:a8:4e:bb:06:30 disassociated previously due to Link Failure. Uptime: 0 days, 18 h 47 m 17 s . Reason: Capwap WTP Event request.
    460    Tue Jun 3 13:20:42 2014    AP on the 802.11a radio with Base Radio MAC 34:a8:4e:bb:06:30 (90068-01) is unable to associate. The regulatory domain configured on it '-E' does not match the controller's regulatory domain: -C
    0    Tue Jun 3 14:51:09 2014    Coverage hole pre alarm for client[1] 94:01:c2:82:26:27 on 802.11b/g interface of AP 54:78:1a:88:2c:c0 (90002-01). Hist: 0 0 1 1 4 8 26 30 22 24 12 21 9 7 3 7 2 2 1 1 0 0 0 0 0 0 0 0 0 0 0
    1    Tue Jun 3 14:51:09 2014    Coverage hole pre alarm for client[1] 88:32:9b:5f:e7:91 on 802.11b/g interface of AP 54:78:1a:88:2c:c0 (90002-01). Hist: 1 4 7 15 4 9 4 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    2    Tue Jun 3 14:51:09 2014    Coverage hole pre alarm for client[1] cc:3a:61:69:d9:4c on 802.11b/g interface of AP 54:78:1a:88:2c:c0 (90002-01). Hist: 0 0 0 0 0 2 13 16 19 13 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    3    Tue Jun 3 14:51:09 2014    Coverage hole pre alarm for client[1] bc:44:86:09:f1:ec on 802.11b/g interface of AP 54:78:1a:88:2c:c0 (90002-01). Hist: 0 0 0 3 21 24 13 6 2 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 2 3 0 0
    Wait your feedback plz.
    Thanks,

  • Hacking of e-mail account (yahoo and gmail) while both are configured to my iPhone?

    Yesterday the 8th of October, 2012 at about 2.45 pm IST (Indian Standard Time) both my e-mail accounts which are configured to the iPhone were hacked. The hacker not only sent some ridiculous mail from the account asking my contacts to send money through Western Union Money Transfer, but deleted my last 3 months sent mails, inbox and the entire contacts.
    They also added a new mail to my alternative mails. Upon approaching the cyber crime department it was given to understand that these criminals had used a IP address from Nigeria, Africa.

    Shiv1611 wrote:
    Though i am still gona try using the same Itunes. Will same Itunes support two apple ids.
    That depends on what you mean. If you mean two iTunes Store accounts, no. Only one Apple ID can be logged into the iTunes Store at a time and if automatic download, iTunes Match or re-downloading of content is used the ID can not be changed for 90 days.
    Shiv1611 wrote:
    So i guess if i solve my goof up on creating different apple IDs and setting her phone as a new one .. according to you that shall do the trick.
    But i have a question here in that case what happens to all the applications that have been purchased on my Id ? Wont i be needing them to be purchased/downloaded again in the new id?
    If you previously had been using the same Apple ID for iTunes Store purchases for both of you there is no reason to change what you've been doing. If this is your wife's first iPhone, and you want to share the iTunes Store account just don't use the new Apple ID you created. As long as there are no purchases on it there's nothing to worry about.

Maybe you are looking for

  • Flash Error

    Hi, I recently downloaded an Adobe update and now I get an error message on my desktop. A box appears and states "Could not find Macromedia Flash". I have tried to redownload Adobe Flash and it appeared successful, but I'm still having trouble. Any h

  • How to get booklet printing?

    https://discussions.apple.com/message/15194920#15194920 ETA: I'm investigating suggestions here, unless someone has found a better solution. Edit again:  http://www.macupdate.com/app/mac/21068/create-booklet-pdf-service Trying this one... Hey everyon

  • SQL Query takes 7 hours after upgrade to 10g

    the following query executes in under a minute in 9i, however once upgraded to 10g it takes 7 hours. The query is designed to select the data row with the max date value for the selected criteria (there are multiple rows that match the below criteria

  • Hyperion Reporting error

    Dear All, While configuring Hyperion reports (9.3.1)with shared services got the error" Registration with shared service is failed". Any one could help me for this?advance thanks to all.Please find the log file as below: (Jul 07, 2010, 00:30:40 PM),

  • Third Party Video Camera Wants To Zoom

    I use a Panasonic video camera connected via Firewire, when using iChat (4). Every few minutes the image it picks up of me zooms in, and then after a moment, it zooms back out. I have no idea what controls this, but it is driving me nuts. Any thought