How can find SCN or sequence number on the update operation?

nedd to recovery database, how can find the SCN or sequence number before the update exection?
thanks

nedd to recovery database, how can find the SCN or
sequence number before the update exection?Sorry - there is something confusing about your question ...
It seems to me the SCN is the 'system change number', which identifies when a change (table, row, block, flush log buffer to log file, etc) has ocurred.
You seem to be asking for the SCN associated with an update before the update actually occurred.
Are you actually asking "How do I perform a point in time recovery to immediately before a specific update?"
Perhaps you could include a few more details, such as database version. For some reason different versions have different capabilities - that could be helpful here.

Similar Messages

  • How can i remove my phone number rom the imsg server

    How can i remove my phone number from the imsg server

    You can disassociate your phone number with your iMessages/Apple ID by turning off iMessages. Go to Settings -> iMessages -> Turn off iMessages. Wait a couple of hour to fully have your number unregistered with iMessages.

  • I downloaded a Trial version of Adobe Acrobat XI.  Now the trial has runout and I've signed up for a subscription.  However, my software still needs a serial number.  How can I get a serial number for the installed software?

    I downloaded a Trial version of Adobe Acrobat XI.  Now the trial has runout and I've signed up for a subscription.  However, my software still needs a serial number.  How can I get a serial number for the installed software?

    There is no serial number and you don't need one. What you need for a subscription is to SIGN IN within Acrobat, so it knows the subscriptions you own.

  • I bought an iPhone 5 and is stuck on icoud How can I deblociez email or number of the owner.

    I bought an iPhone 5 and is stuck on icoud How can I deblociez email or number of the owner.
    <Edited by Host>

    You can't, you have run into Activation Lock. Return the phone where you bought it and get your money back.

  • I would like to update my eMac from 10.4.11 to 10.6. How can I get this os version for the update?

    I would like to update my eMac from 10.4.11 to to 10.6.x How can I get this os version for the update?

    Highest an eMac can go is 10.5.8...
    Leopard requirements/10.5.x...
        *  Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
        * 512MB of memory (I say 1.5GB for PPC at least, 2-3GB minimum for IntelMacs)
        * DVD drive for installation
        * 9GB of available disk space (I say 30GB at least)
    Trouble is appl no longer sells it, you have to search eBay & such for the full retail version, not any grey Install Disc.
    There are workarounds if the 867MHz is the only hangup...
    http://sourceforge.net/projects/leopardassist/
    List of Applications Not Compatible with Leopard...
    http://guides.macrumors.com/List:Applications_Not_Compatible_with_Leopard
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 2GB at least)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.

  • How can we generate auto Sequence Number in DFF attribute

    Dear
    We are on r12,rignt now we have an issue to generate sequence number in site Level(DFF) on Supplier window,actully we want
    to generate sequence number on site leve while inserting new record on site level,so how could i achvie this or any way which can help us.
    --thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    You can consider writing a before-insert trigger.
    The trigger generates the next value of the sequence and makes :new.attributen = the sequence value.
    Hope this helps,
    Sandeep Gandhi

  • How can you brand a serial number onto the system board?

    I just replaced a system board and need to brand it with the appropriate serial number.  How do I accomplish that?  I have software to run when I do that with Dells or Lenovos.  How can I do it with an HP?

    Hi:
    You cannot tattoo a HP notebook. It has to be done by an authorized HP tech service center where they have a DMI tool for that which is not available to the public.
    You can tattoo some HP business desktops with this software, link below. It might work on HP consumer desktops but I don't know since I have never tried it on one.
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=12...
    This program makes a bootable floppy disk, and cannot be installed via any other method than a FDD or USB FDD.
    It works on many other HP business desktops other than those listed. It has been used successfully in PC's up to a couple years old.
    Paul

  • How can I locate my serial number for the Student and Teacher Edition

    All I am trying to do right now is to obtain the serial number for my Student and Teacher (Academic) Edition <removed by moderator>, but I wanted to use my personal (home) e-mail address since this purchase is to be installed on my home computer.  The validation process seems to require my work e-mail address or a work id with embossed date (ours had no date and my id is at work).  The e-mail prompt indicates that all e-mail correspondence will go to the address I enter so if there is e-mail regarding this installation, on my home computer at my home e-mail address, any such e-mail instructions would then go to my work e-mail address.  So how do I obtain my serial number?

    I have removed your coupon/product code as this is a public forum.  I would recommend reviewing the I have a Student and Teacher edition product section of Find a serial number.

  • How to execute a same sequence number for the resulting dynamic rows

    Hi friends,
    I have a sequence and trigger(which will fire id for each and every row insert).
    My scenario is, If i update more than 5 rows at a time means, i need to set a same sequence number example(1) for all the 5 rows.
    Next time, if i update another 5 rows means, then i need to set a same sequence number (i.e) 2 for the next 5 rows.
    So, my updation will be dynamic(may be 2 ,5, 10 rows at a time), But i need to set a same sequence number for one of the column for all the rows that i update.
    Next time, if i update another set of rows means, then i need to set only the next sequence number(i.e) 2(assume that previously updated sequence for the before set of rows is 1) for another set of rows.
    Like that sequence has to update in a sequential manner for more than one set of rows in that column.
    How to achieve it friends.
    example
    id-----------------name
    1-------------------A
    1-------------------B
    1-------------------C
    1-------------------D
    1-------------------E
    2-------------------D
    2-------------------E
    2-------------------F
    2-------------------G
    3-------------------H
    3-------------------IBrgds,
    Mini

    Hi,
    You forgot to mention your version.
    If you want a trigger based solution, then in 10g you need two triggers
    1. A statement level trigger that takes sequence.nextval into a dummy variable that will not be used.
    2. A for each row trigger that uses sequence.currval.
    In 11g you should be able to write a single, composite trigger.
    If you want a solution with no triggers, it could look something like
    SQL> create sequence s start with 10;
    Sequence created.
    SQL>
    SQL> create or replace function s_wrapped
      2  return number
      3  as
      4     v number;
      5  begin
      6     select s.nextval
      7     into v
      8     from dual;
      9
    10     return v;
    11  end s_wrapped;
    12  /
    Function created.
    SQL> create table tab1 as (Select level x, cast(null as number) y from dual connect by level <= 5);
    Table created.
    SQL> update tab1
      2    set y = (select s_wrapped from dual)
      3   where x <= 3;
    3 rows updated.
    SQL> commit
      2  /
    Commit complete.
    SQL> select *from tab1
      2  /
           X          Y
           1         10
           2         10
           3         10
           4
           5
    SQL>Regards
    Peter

  • How can I change my phone number for  the security message

    i cant send to my new phone numbte the security message, what can i do

    Welcome to the Apple Community Paulette.
    If you are referring to the keychain phone number...
    Go to System Preferences > iCloud > Account Details, you can change your verification number in the options provided there.
    Go to Settings > iCloud > Account > Keychain, you can change your verification number in the options provided there.

  • How can I subscribe to 2 number at the same time

    Can you help? I have 2 numbers, I have a monthly subscription on one and I actually wanted it on both. I try to add a subscription and it tells me that I already have one running and that it will simply add onto the same one. I have now had to top up my other number with a PAYG as I can't find out how to have a monthly UK unlimited number for 2 numbers at the same time. please help
    thank you 

    tony.harrison wrote:
    THank you. the numbers I should have, and indeed are using are 
    020 XXXX 1135 this one doesn't have a monthly subscription and I want one
    020 XXXX 8511 this opne is OK and I think is alloctaed to xxxxxxxxxxxxxxxxxxxxxxxxxx
    Hello
    NEVER post any personal information on the Forum. This is a public internet site and can be (and is) accessed by anyone surfing the internet.
    1. Your account shows that the # ending in 1135 is an annual Subscription which expires on August 7th 2014. If you with to change the billing frequency please do so before the expiry date by using this link: please contact Skype customer service
    2. The same information and expiry dates apply to the # ending in 8511 registered to the second user. Please take the same action.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • How can i restore all my documents after the update?

    my brother has lost all his documents and everything after updating from the snow leapord, to the mavericks
    is there any chance to restore all his stuff?
    or if we go to the apple store, would they be able to assist us?!
    its a matter of urgency, as he had his university dissertation on there, which has now gone!

    I am having the same problem, have lost access to all my documents and photos on my hard drive.
    How do I check to see if I am logged into the same account?
    How do I log out and log back into the old account?

  • How can i change my email account from the update program?

    I have the update icon on the bar of my mac, and it keeps asking me for my email verification but my email account is misspelled.

    Verify Account https://forums.adobe.com/thread/1465499 may help
    -wrong email https://forums.adobe.com/thread/1446019

  • How to find a footnote's number?

    more specificaly:
    how can i get the TEXT (string) that is displayed in a footnote reference (in the example * and **):
    and... how can i get it's number in the parent story? (i select a footnote, and i want to know if it's the 5'th, 10'th etc in it's parent story).
    The index property does not work, because the "containing object" is the document, and if the document has more stories with more footnotes it gives wrong results.
    index
    number
    readonly
    The index of the Footnote within its containing object.

    @Vamitul – just tested…
    Yes! The "relative" index in the current story is working.
    chsrCodeAt(0) does not bring any new value to the game.
    Btw. it's:
    app.selection[0].footnotes[0].texts[0].contents.charCodeAt(0); //returns always 4
    Now we have to work out the situation for restartNumbering and the other options:
    1. Numbering format: 9 different options
    2. Starting at …
    3. Restart numbering:
    3.1 By document (options in the UI un-checked!)
    3.2 By page
    3.3 By spread
    3.4 By section
    Ok. We can look up the parentTextFrames[0] and determine from its parent or parentPage on what spread or exact page the frame is sitting.
    The case is getting complicated now ;-)
    I'd say "Arrgh!" instead of "gggghhh...."
    See the following screen shots.
    "restartNumbering" is set to "Page" on all.
    Screen 1, threaded story in 3 parts on the same page:
    All fine. Footnotes from 1 to 6 in a geometrical order.
    Screen 2, threaded story in 3 parts, 2 parts on the same page, 1 (the middle one) on the pasteboard:
    Now look at this: despite the same story, three times the same footnote numbers!
    Screen 3, you can expand this example in a zick-zack way:
    Only no 1s in every footnote…
    Screen 4, now I moved the 3rd text frame of the thread to the pasteboard:
    Screen 5, and now it's getting very nasty with the numbering! :
    The numbering isn't logically any more. At least I cannot see the logic here :-(
    It should be:
    TF1 => 1 (on the page)
    TF2 => 1 (1st on the pasteboard)
    TF3 => 2 (2nd on the pasteboard)
    TF4 should be 3, but it's 1 again! (3rd on the pasteboard)
    TF5 => 1 (on the page again)
    TF6 => 1 (in the pasteboard again)
    Moving TF5 to the pasteboard will reorder the numbering:
    Like I said. It's more "Arrrrgh!!!"
    Uwe
    Message was edited by: Laubender

  • How to find out which sequence a certain column used?

    you konw column C in table T is created by a sequence.
    How to find out which sequence column C is using?

    In the meantime I think it ought to becompulsory to
    only assign sequence values in triggers.
    Why? I can see no good reason for this. I think it's a good idea to have stuff like this
    coded in only one placeI don't like your argument for compulsory using triggers for sequences for exactly the same reason as you, ie that I like to keep my code in one place. If I'm reading some pl/sql code which uses a sequence I like to see the fact that the sequence is used in the pl/sql code, rather than to check to see if theres a trigger on the table and then see which sequence that uses.
    "naming conventions can work, provided they're enforced. Alas, like other standards, they can only be enforced by active policing".
    Thats what code reviews are.
    " there is also the special case of one sequence populating more than one table...."
    This is My Pet hate. I don't think there's ever a case where this is absolutely necessary. Again code reviews
    Unfortunately I have to live with a system which does this.
    and I appreciate we can't all have code reviews, etc.

Maybe you are looking for

  • Partition external hard drive-what format do I use

    I'm trying to partition an external hard drive by following the instructions in the disk utility help and am confused about which "format" to use. My choices are: Mac OS extended (Journaled), Mac OS Extended, Mac OS Extended (case sensitive, journale

  • Where is a JAXMServlet in the Java Web Service Developer Pack 2.0

    In a sample code of JWSDP, a class JAXMServlet is used to make a Servlet. But, in the JWSDP 2.0 there is no class about JAXM. I think It must be rewrite a code to a new class that revised in a 2.0. Please let me know what class must be used in the JW

  • Need to refresh SAP Inbox(UWL)

    Hi, I want to refresh UWL explicitly in java code since it is not getting refreshed immediately once user approve/reject any task, it refresh after around 1 min or need to do it manually to see the updated list. So it create confusion that task has b

  • Query about Sales per Owner

    Hello to all i am trying to write a query which will display the following fields with date (docdate) folter OwnerName(Employee Name) LineTotal of OINV Number of invoices (count(docnum)) Grosprofit Grosprofit% Average total of invoices (doctotal/Numb

  • Device Software .exe??

    I just downloaded the 7.0 Device Software as an exe file, I have also installed it on my computer, how do I now get it on my phone? Some background information: My phone has a software error, so it cannot be backed up or used at all. Trying to do the