Can not refresh snapshot changes after importing data of master site

Hello !
I have two database computer,one as master site,one as snapshot site.Because the error of the hard disk of master computer,I use the exporting data file to recover my database.after importing ,I found I can't refresh the refreshgroup on snapshot,who can tell me why?
thinks in advance!
(exp system/manager full=y inctype=complete file='/home/save/backdata/xhsdcomp.dat')
(imp system/manager inctype=system full=Y file='/home/save/backdata/xhsdcomp.dat'
imp system/manager inctype=restore full=Y file='/home/save/backdata/xhsdcomp.dat')
null

You haven't listed the errors that you're receiving when attempting to refresh your refresh group, but if your snapshots are attempting to fast refresh, I suspect it's because the creation timestamp of the snapshot log on the master site is newer than the creation timestamp of the snapshot. In this case you will need to do a complete refresh of the snapshot (or drop and recreate the snapshot) before you will be able to fash refresh it again.
If this is not the case, please post the errors you are receiving when you attempt to refresh the refresh group.
HTH,
-- Anita
Oracle Support Services
null

Similar Messages

  • Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time

    Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time technical people and top managers promised that this issue will be resolve tomorrow and they will cal me. Nothing happend!! I can not even cancel my service not just to upgrade it. Completely locked. 
    Any advice?
    Thanks.
    Alex.

    Cannot figure out what your talking about since it makes no sense.
    If you are the account owner you can go to the My Verizon web portal http://www.verizonwireless.com
    You must log in with your cell number and your my Verizon portal password. Not the account pin.
    Once there you can change your plan and services. However repeated incorrect login attempts will lock you out of the site. It a fraud prevention measure.
    1-800-922-0204 call support with your cell number and or account number and account pin and they can assist you.
    If you don't have the information then there is nothing they can do.
    If you can verify who you are they may be able to reset your account access. But only if you are the account owner.
    Good Luck

  • Can not do Surrogate bidding after Bid invitaion End date has been reached

    We are on SRM 5 server 5.5
    We are using surrogate bidding to capture  bid responses and we manually receive vendors responses by the End date on the Bid invitation . We are unable to do surrogate bidding after the End date has been reached hence we then change the End date to a later date so that we can do surrogate bidding.
    Is there a way that this can be done without changing the bid inviation end date ?
    Regards

    SAP standard you can not do Surrogare Bidding after the submission date
    We are going to use Follow On documents

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Can not see the option Execution with Data Change in the infoprovider?

    Hi team,
    i am using query designer 3.x, when i go into my bex brodcaster settings and schedule my report
    i can not see the option "Execution with Data Change in the infoprovider",
    i can only see 2 options
    Direct scheduling in background process
    create new scheduling
    periodic,
    is there any setting which i would be able to see the option "Execution with Data Change in the infoprovider"?
    kindly assist

    Hi Blusky ,
    check the below given link.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/ec/0d0e405c538f5ce10000000a155106/frameset.htm
    Regards,
    Rohit Garg

  • Why??? Simple snapshot can not refresh automatically, but can refresh manually.

    Server 1 : Oracle 7.3.4 (as a Master site)
    Server 2 : Oracle 7.3.4 (as a Snopshot site)
    Client PC: SQL*Plus (Oracle 7.3.4 Client)
    Step 1: on Client PC, start 2 SQL*Plus dialog Windows,
    one(Window A) for <Server 1> , another(Window B) for <Server 2>;
    Step 2: on <Window A> do:
    SQL>connect scott/tiger@Server1
    SQL>CREATE SNAPSHOT LOG ON scott.dept ;
    SQL>select * from dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    Step 3: on <Window B> do:
    SQL>connect scott/tiger@Server2
    SQL>CREATE DATABASE LINK oracle USING 'Server1';
    SQL>CREATE SNAPSHOT all_dept REFRESH fast
    start with sysdate NEXT SYSDATE+1/(24*60)
    AS SELECT * FROM scott.dept@oracle;
    -- refresh interval: 1 minute
    SQL>select * from all_dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    Step 4: on <Window A> do:
    SQL>insert into dept values (50,'MMMMMM','NNNNN');
    SQL>commit;
    SQL>select * from dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    50 MMMMMM NNNNN
    <one or two minutes later ... ... >
    Step 5: on <Window B> do:
    SQL>select * from all_dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    conclusion: Simple snapshot can not refresh automatically ???????
    SQL>exec DBMS_SNAPSHOT.REFRESH( list => 'all_dept',method => 'F');
    SQL>select * from all_dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    50 MMMMMM NNNNN
    conclusion:Simple snapshot can refresh manually.
    How to solve this problem?????
    Thank you very much
    Zhang Ming-an

    When you are manually refreshing the snapshot as scott/tiger, and your database link was defined with a 'connect to/identified by ' clause, your login credentials will be scott/tiger. When the refresh happens from the job queue, it does not use those credentials, It uses some default set. What you should probably do is:
    1. create public database link Oracle using 'server1';
    2. as scott/tiger, create database link Oracle connect to scott identified by tiger;
    3. your automatic refresh should work now.

  • I can not refresh my music library after update

    dears
    i have just update my phone ie:n73 with firmware v4.0726.2.0.1 and my memory card has 2GB capacity.
    but when i run music player i can not refresh my music library. i should remind you that all my songs are in my memory card.
    your quick quide is highle appreciated.
    ragards
    saeed

    Hi saeedpenpaller
    Do either of these help you?
    Remove Memory Card > Insert > then Refresh
    Backup Music From Memory Card to PC > Format Mem Card to FAT32 & tranfer all data back > Refresh Music List.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Someone changed my icloud login password, and I can not activate the iPhone after   recovery

    someone changed my itslud login password, and I can not activate the iPhone after
      recovery

    You could try to reset your password via a webbrowser here: https://appleid.apple.com

  • I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting, but the password from the old computer in when waking the computer from sleep.

    I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting the new computer, but the password from the old computer in when waking the computer from sleep. I want to use my iCloud password on both computers consistently. How can I fix this?

    The only other place to change a password for the computer login is in Users & Groups preferences. But I don't really know enough here to fix your problem. You can try fixing the keychain:
    iCloud- Frequently asked questions about iCloud Keychain
    Tutorial: Resolving Keychain Issues
    If you can't access your keychain, or forget your password If you can't get into your keychain file because you've forgotten your password or the keychain file appears to be corrupt, there are a couple of options.
    First, if you've forgotten your password, you can use the "Keychain First Aid" utility to make the keychain password the same as the login password. This can be accomplished via the following process:
      1. Open Keychain Access (located in Applications/Utilities)
      2. Go to the "Keychain Access" menu and select "Preferences"
      3. Click the "First Aid" tab
      4. Make sure the "Synchronize login keychain password" box is checked
      5. Close the Preferences window
      6. Go to the "Keychain Access" menu and select "Keychain First Aid"
      7. Enter your username and password
      8. Click the "Repair" button
    The second option is to completely delete your keychain then recreate it. This routine is useful if your keychain appears to be corrupt or otherwise inaccessible. This can be accomplished as follows:
      1. Launch Keychain Access (located in Applications/Utilities)
      2. Click "Show Keychains" in the lower-left corner of the window.
      3. Select the problematic keychain from the left-hand pane.
      4. Navigate to the "File" menu and select "Delete Keychain '(name of keychain)'"
      5. Check all options for deletion and press "OK"
      6. Create a new keychain by going to the "File" menu, then "New" and selecting
          "New Keychain"
      7. You can now make this keychain your default if you desire by selecting it, then
          going to the "File" menu and selecting "Make '(name of keychain)' Default"
    Login as root and perform repair In some cases, problems with keychains can only be resolved when logged in as the root user.
    First, you want to enable the root user:
      1. OS X Mountain Lion: Enable and disable the root user
      2. OS X Lion: Enable and disable the root user
      3. Mac OS X 10.6: Enabling the root user
      4. Enabling and using the "root" user in Mac OS X
    After enabling the root user, and logging in under this account, again open Keychain Access. First attempt repairs using Keychain First Aid, and failing that, delete then recreate the keychain as described above while logged in as root.
    Persistently asked for stored passwords If you are persistently asked for passwords in various applications that you have specified should be remembered in a keychain, your "login" keychain may not be active for one reason or another.
    Navigate to ~/Library/Keychains/ (this is the Library folder inside your user's home folder). Find the file named "login.keychain" and double-click it.
    Failing that, select the "login" keychain within the Keychain Access application and make sure it is the default keychain by going to the "File" menu and selecting "Make 'Login' Default"
    Turn off Keychain synchronization in applications having problems If specific applications are experiencing issues when accessing password-protected material, the Keychain may be to blame.
    The above comes from an article published on MacFixit.com.

  • Not working imessage!! I can not send imessage than after apple id. There are problems with Apple ?? Thanks!

    Not working imessage!! Credit card and I can not send imessage than after apple id. There are problems with Apple seeverele?? Thanks!
    Before the service reset function. Wait 24 hours to activate imessage.

    go to the settings and turn off imessage
    but that don't change the issue that you will never be able to facetime eachtoher
    the appleID is really meant as the handle that identify you it was not meant to be shared
    but can see that people may want to do not buy apps more then once

  • Can not play any video after update to 4.4.2

    Can not play any video after update to 4.4.2, it says always that i have to reconnect my HDMI Cable, reason HDCP error.

    I have made some tests,
    I can only view Trailers, every thing else dosn't work any more. I could not play any Video via Airplay. I tried to do it fom my IPhone 4, my IPad 1 and from my MacBook Pro 15"/i7 2 GHz/Mac OS10.7.2.
    It always says the same error.
    I reset the divice again and made a restore, but the same error.
    I change the HDMI cable, same error.
    It works fine before, I had 4.4.1 on it. I'm using a Toshiba Beamer MT700.
    Need some help

  • I can no longer rotate photos after importing them.

    I can no longer rotate photos after importing them.  This option was available before they last update.

    There is another current discussion about this going on. I copied it and pasted the answer here.
    "Your functionallity is on an IPAD 2.  This forum is refering to an IPAD 1!
    I spoke to Apple technical support and they concur.
    The feature was available on IOS 4.3 and was removed in IOS 5.
    They directed me to 3rd Party Software.  I told them this is not an anwser since I have 100's of picture which must be loaded in the the 3rd Party Software Rotated individually and saved back into the Save Folder.
    They said if they have enough compliants it will be fixed in the next rev."
    Here is the link to the thread.
    https://discussions.apple.com/message/16855424#16855424

  • Xperia Z1 can not send/receive MMS after Lollipop update

    Xperia Z1 can not send/receive MMS after Lollipop update, is anyone else having this issue. Any ideas on what I can do to restore MMS?

    MMS need a data plan, there are certain carriers/networks that allow MMS to be sent w/o a data plan to their branded/locked phones, you will have to contact your carrier/network regarding this.
    Is your phone braded or was it branded? did you flashed lollipop ? 
    @KMcFarlane
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Bex request can not collect the change of query

    HI every one:
         Bex request can not collect the change of query automatically ,eventhough This query has ben transport before and have the same dev class with the Bex request.
            when I press the  button to save the change of query  , a dialog was pop up to let me assign one request to this query.
              who can help me ?! thanks alot!
    Best regard
    david

    Hi David,
    already previous request is transported to Q or P....so when ever u try to change the existing query in BI.. the assigned request is not available in 'D'. so its asking to assign a request. for this
    go to transport connection in Admin Workbench>there in right top u willl find a transport symbol for bex> click that for creating a request for bex queries--> after creating that request try to open ur query and do necessary modifications, what ever the modifications you do will come under this newly created request.
    reply back if u have any questions
    Thanks and Regards
    Ajay .D

  • Can not refresh server manager Error:0x8007045b

    OS: Windows 2012 R2 Core
    Services: Hyper V
    I was trying to remote reboot and the session hung. No worries I decided I could just reboot the next morning. So I rebooted the next day but when I go into server manager I get
    an errror can not refresh server manager Error:0x8007045b. Did some research found suggestions to fix it using a DISM.exe /Online /Cleanup-image /Restorehealth.
    But then I get an error 1115 A system Shutdown is in progress. I attempt to fix this issue using pskill winlogon but the issue pursistest. I have restarted the server several times now. Not sure how to fix this.
    Thanks in advance,
    Jake

    Hi,
    In addition to the above information,
    Checkout the below thread for similar discussion,
    http://social.technet.microsoft.com/forums/windowsserver/en-US/a700e9f6-4491-4c70-8bd0-d9d3111e2f70/windows-reboot-error
    Regards,
    Gopi
    JiJi
    Technologies

Maybe you are looking for

  • How to include multiple tabs in my show form

    Hi As per my requirement I want to include multiple tabs in my show form using xmlform builder , different tabs are required to display the news under different categories which will help the user to choose the required tab. Thanks in advance.

  • Add files to library, but cannot update ipod to put them on there

    I do not even have the option to do this since my ipod is constantly stuck on the "do not disconnect screen" when it is plugged in. Also, "file->update ipod" isnt even lit up so I cannot select it to update my ipod. I tried reinstalling the software,

  • CAD graphics in PDF-Forms (Adobe Forms)

    Hello, I have a question concerning big graphics in PDF-based Forms. A Customer wants to append graphics to an Adobe-Form. These pictures will be CAD graphics. The problem is, this graphic can be from 10 up to 25 pages! Is it possible to append such

  • Parcel tracking number

    Dear friends, We have requirement where we need to type in the parcel tracking number in the delivery note. At the moment we are writing it manually on the delivery note. I have checked in VL02N and there is no field for this.We have thought of alter

  • GR Message

    Hi , I have maintained condition record for o/p type MLGR with partner function "BU"- Buyer. But system could not found out the condition record. Moreever where we will assign the userid or email id for the buyer? It works well if i maintain the cond