Check what is the last operation for a table

Hi expert,
I need to check what is the last operation for a table ? ( such as insert/delete/truncte.......), will show me the function or sql to get that?
Many Thanks,

hi,
please take a look at this link
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590655700346557237
regards,

Similar Messages

  • What is the conditional operator for AND, OR .....?

    what is the conditional operator for AND, OR .....? in ABAP language...
    AND, OR .. & is not accepting or recognising.
    Is these feature available in abap ??? if yes, how to use?
    thanks...
    shiva

    Hi,
    Conditional operator for AND and OR are same AND and OR.
    A logical expression consists of comparisons (see expressions 1 to 4 below) and/or selection criteria checks (expression 5) using the operators AND, OR and NOT , as well as the parentheses " (" and ")".
    The individual operators, parentheses, values and fields must be separated by blanks:
    Incorrect:
    f1 = f2 AND (f3 = f4).
    Correct:
    f1 = f2 AND ( f3 = f4 ).
    NOT takes priority over AND, while AND in turn takes priority over OR:
         NOT f1 = f2 OR f3 = f4 AND f5 = f6
    thus corresponds to
         ( NOT ( f1 = f2 ) ) OR ( f3 = f4 AND f5 = f6 )
    The selection criteria comparisons or checks are processed from left to right. If evaluation of a comparison or check proves part of an expression to be true or false, the remaining comparisons or checks in the expression are not performed.
    All data objects that can be converted among each other can be used as operands for logical expressions.
    Check if u are using the AND or OR operator this way.
    IF f1 AND f2.
    ENDIF.
    In this case it will throw error. Here it act as relational operator.
    Regards,
    Prakash

  • How to check what are the enhancement done for MIRO transaction

    Hi Experts,
    Please help me out, how to check what are the enhancement done for MIRO transaction.
    Thanks in advance.
    Thanks,
    Basanagouda

    Hi
    Use the BADI
    Please refer these documents: [Enhancements required in MIGO|Enhancements required in MIGO; and
    [Enhancement in MIGO for Goods Movement|Enhancement in MIGO for Goods Movement;
    Hope this helps!!
    Regards
    Vijay

  • What is the last software for iPod classic 160gb?

    I've got 1.1.2, but for my earphones with remote need >2.0

    precan90 wrote:
    I tried, but it is not helping.
    Perhaps the problem is because my ipod made ​​2007?
    Yes.  It's likely that your 160 GB model is the one where software version 1.1.2 was the last update for it.  So that's why iTunes is informing you that your iPod is up to date.  Not much else you can do. Sorry.
    B-rock

  • What is the "IN" operator for apex_util.ir_filter()

    I would like my Interactive Report to display on the screen an IN statement with a list of values.
    Is this possible to do with the apex_util.ir_filter() command within APEX version 3.2.0.00.27?
    Thanks Steve
    I know its possible for the end-user via the web-browse to manually select "IN" as a operator but so far I only found this valid command option.
    procedure ir_filter (
    -- Used to control Interactive Report filters
    -- Given an APEX page sets a report filter
    -- Useful if you want to define report filters declaratively
    -- Valid values for p_operator_abbr
    -- EQ = Equals
    -- LT = Less than
    -- LTE = Less then or equal to
    -- GT = Greater Than
    -- GTE = Greater than or equal to
    -- LIKE = SQL Like operator
    -- N = Null
    -- NN = Not Null
    -- Filter values are bound into Report SQL
    -- Example:
    -- apex_util.ir_filter(p_page_id=>1,p_report_column=>'DEPTNO',p_operator_abbr=>'EQ',p_filter_value=>'10');
    --

    StewStryker wrote:
    I'm not trying to use the apex_util.ir_filter function, as Steve is, but I have a question about how the IN operator expects to get its values. So I hope he doesn't mind me glomming onto his question.
    In my application, the user is trying to interactively select a value from the drop-down list that Apex calculates. However, these values can have commas embedded in the values, which causes the filter to not find them.
    Using the debug mode, I could see that Apex is parsing a single selected value into multiple parameters.
    For example, if I create the filter on the DONOR_NAME field that reads like:
    DONOR_NAME in '*Albert Jones, Jr.'
    Debug mode shows this clause in the query:
    where ("DONOR_NAME" in (:APXWS_EXPR_VAL1_1, :APXWS_EXPR_VAL2_1))
    and the following local variable assignment:
    +0.11: IR binding: ":APXWS_EXPR_VAL1_1"="APXWS_EXPR_VAL1_1" value="*Albert Jones"+
    +0.11: IR binding: ":APXWS_EXPR_VAL2_1"="APXWS_EXPR_VAL2_1" value="Jr."+
    Is there any way I can encapsulate the selected values so the parser doesn't do this? My attempts as enclosing in double-quotes or 2 single-quotes did nothing.
    Thanks,
    Stew
    Edited by: StewStryker on May 4, 2010 11:56 AMI'm having this same issue, is there any way around this problem?

  • What is the best method for synchronizing tables in two different DB?

    We have a core banking database and this database includes our customer related tables and these tables are really huge.
    And we have other database for some applications and this database needs fresh customer data which take place in core banking database.
    Our current method is materalized views but we have some performance problems about it.
    What can give better performace for synchronizing the tables between databases?
    -oracle streams?
    -triggers?
    -dbms_comparison?
    or anything else?
    Edited by: 983327 on Jan 28, 2013 2:14 PM

    Assuming that both databases are Oracle, both run relatively recent versions of Oracle, and your organization has administrative access to both systems ("core banking" databases are often run by third parties), Streams is a more efficient architecture than materialized views on the capture side (assuming that you are doing incremental refreshes with materialized views). It's more work to configure than materialized views but you get much greater flexibility and better performance.
    Oracle's direction is to move away from Streams and towards GoldenGate which requires additional licenses. Since Oracle does not plan on enhancing Streams moving forward, if this is a strategic decision for your organization, you might want to look at GoldenGate instead even if it doesn't offer any benefits today over Streams.
    Justin

  • What is the Default key for a table

    Hi,
    When I create a table, what is the default key by which the table is sorted?
    I did not specify any 'order-by'.
    Thanks...

    It comes out in whatever order Oracle decides upon. Just because it appears to be the same order each time does not mean that it will be the same next time.
    You cannot guarentee the order of results UNLESS you have a specific order by clause. Even if they look sorted without one, if you need it guarenteed sorted, add an order by clause.

  • What is the upper limit for a table to have records

    Hi all,
    I am having table like this.....
    CLIENTPCLOG (
         LOG_ID                                   NUMBER(10)          NOT NULL,
         CREATE_DATE                              DATE,
         CREATE_USER_ID                         NUMBER(10)          NOT NULL,
         EDIT_DATE                              DATE,
         EDIT_USER_ID                         NUMBER(10),
         DELETE_DATE                              DATE,
         DELETE_USER_ID                         NUMBER(10),
         DELETE_FLG                              NUMBER(1)          NOT NULL,
         LANGUAGE_ID                              NUMBER(10)          NOT NULL,
         LOG_TYPE_ID                              NUMBER(10)          NOT NULL,
         LOG_DESCRIPTION                         VARCHAR2(1000)     NOT NULL,
         MODULENAME                              VARCHAR2(100),
         MAC_ID                                   VARCHAR2(50),
         FC_ID                                   NUMBER(10),
         CLIENT_LOG_ID                         NUMBER,
         SERIAL_NO                              VARCHAR2(100),
         CONSTRAINT FK_CLIENTPCLOG_LOGTYPEMASTER FOREIGN KEY(LOG_TYPE_ID) REFERENCES IES_IESDC3_FINAL_TEST.LOGTYPEMASTER (LOG_TYPE_ID) DISABLE NOVALIDATE ,
         CONSTRAINT PK_LOGMAINTENANCE PRIMARY KEY(LOG_ID)
              USING INDEX TABLESPACE TB_UCPS_JAP LOGGING PCTFREE 10 INITRANS 2 MAXTRANS 255
                   STORAGE(INITIAL 64K NEXT 0M MINEXTENTS 1 MAXEXTENTS UNLIMITED
                        FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT )
    TABLESPACE TB_UCPS_JAP LOGGING PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
         STORAGE(INITIAL 64K NEXT 0M MINEXTENTS 1 MAXEXTENTS UNLIMITED
              FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT )
    Is there any limit for records to be inserted in this table...? We are testing performance test and inserted records to this table. So please advise on this.
    Thanks in advance,
    Pal

    It is restricted only by the space on your disk drives.
    See more
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/limits003.htm#sthref4186
    Gints Plivna
    http://www.gplivna.eu

  • FormCalc - What is the "exponent" operator?

    Hi,
    I want to make a simple calculation in my form that uses an exponent and I can't find anywhere what is the FormCalc operator for an exponent.
    I've tried ^ (e.g. (1+i)^n)
    and
    Math.pow((1+i),n)
    but neither one seems to work.
    Can anyone help please?

    I checked FormCalc specification. Unfortunately, I didn't find a build-in exponent function. FormCalc was designed for simple form data calculation. It doesn't have rich math function available. The operator it provides are "= (unary) - + not * / + - < <= > >= lt le gt ge == <> eq ne & and | or". Arithmetic Built-in Functions only have Abs(), Avg(),Ceil(),Count(),Floor(), Max(),Min(),Mod(0,Round(),Sum(). You see. It is very limited. I would suggest you switching to javascript where you need do advanced math.
    Henry
    Adobe

  • What are the field names for below mentioned

    Hello Friends
    What are the fields names for below tables
    in EKKO
    Purchase Document Date
    Net Value of the purchase document.
    In EKPO
    Item Description
    From which place We bought it. (It means in Sales Items there we can know from which plant we sold the goods, like in EKPO, there is any field like this)
    Please let we are defining the report to find out the stock availability for perticular storage location using select Options plant, company code, material no.
    How many tables involve her to build this report. and also field names, they come under which table.
    Please send me this information ASAP. PLz Plz Plz..........
    Regards
    Praveen

    You can check the fields of these tables via SE11
    Purchase Document Date  -  EKKO-BEDAT
    Item Description  -  EKPO-TXZ01
    Net price per item - EKPO-NETPR.
    Regards,
    Rich Heilman

  • I have Mac os x with 10.4.11 and i want to upgrade, what is the next operating software from a 10.4.11 for a g4

    I have Mac os x with 10.4.11 and i want to upgrade, what is the next operating software from a 10.4.11 for a g4 and can it be done on a g4

    If you have a processor of 867 MHz or faster and a minimum of 512 MB of RAM, you can run OS X Leopard, updated to 10.5.8.
    That's as far as a G4 can go.
    Check eBay for discs:
    http://www.ebay.com/sch/i.html?_nkw=Mac+OS+X+10.5+Leopard+Retail&_sacat=0&_odkw= Mac+OS+X+10.5+Leopard+Full+Retail&_osacat=0
    No Snow Leopard, 10.6x or Lion, 10.7x.
    they won't run in a PPC Mac.

  • What is the last version of Final Cut available for the G5 PPC & OS X 10.5?

    What was the last version of Final Cut available for the G5 PPC running OS X Leopard? I'd like to get a copy (from ebay or some other vendor).

    Final Cut Studio 2...FCP 6.0.6
    Shane

  • What is the last version update in apple tv and how can i know what is my Operating System

    What is the last version update in apple tv and how can i know what is my Operating System
    i have an apple tv 3
    thx

    6.1
    Settings > General > About > Apple TV Software

  • What was the last firmware version for the Zen Micro before M

    I would like to know what was the last firmware version for the Zen Micro before the MTP firmware?
    Please make sure you are 00% on this.
    Thankyou.

    I think it does, but I'm not sure; since I wanted MTP, I only used .x firmware long enough to save the original Creative test files (with MediaSource, not ZMME) before upgrading to 2.x. And yes, I had to li've with 2..02's shorter battery life until 2.20.05 came out.
    May I ask why you want to go back to .x firmware? The only thing that will get you is the ability to use it with Win98SE/2000/Me--but only if you can install Creative drivers on every PC you use it with. MTP requires WinXP SP or 2 and WMP 0, but doesn't need any Creative software at all to work. (Microsoft has made an MTP driver for Win98SE/2000/Me, but it requires customization and may not be supported by other software. I'm tinkering a bit with the customization part right now.)
    There are other pitfalls in changing Micro firmware families, in either direction--you'll lose all the files on your Micro, you'll have to install a different ZMME (and I've heard non-MTP ZMME isn't quite as full-featured as MTP ZMME), and you'll need a new plug-in for MediaSource to work.

  • What is the last software update for N95 8g..??

    what is the last software update for N95 8g and what are its problems any one feel after new update??

    IN N95 8GB sometimes when I try to open music player,it hang and close by itself although I use only 2 gigabytes of mass storage memory and I have to restsrt phone to make this music player work quickly and normally again but this problem repeat again and again in sometimes and I do not know what I can do to solve this bad problem and I found that when music player hang, every thing in mobile like web or search or camera applications....etc still work without hanging except gallery and video center and real player applcations!!! can any one tell me If he face such as this stubid problem..

Maybe you are looking for

  • Question regarding Listener and Server Processes in dedicated server mode

    Good morning, The Oracle documentation states that when a client connection request is received on the server, the Listener creates a Server Process which will work with the database instance to carry out the tasks requested by the user/client proces

  • Battery damaged after just one year of use

    I am a medical student residing in hostel.I bought my Lenovo3000N100 notebook in feb'2007.After just one year of very minimal usage, the notebook battery has failed and now requires replacement. How can such a company as lenovo's battery expire after

  • How can I buy an iPhone 4S if I am not eligible for a phone upgrade?

    I have an Android - hate it!  Ready for the global verizon iPhone!!  Can I get it Friday?  I heard only folks eligible for upgrade can get the phone this week.  True?  And yes, I am prepared to pay retail.... $849 - ouch.

  • Clear GL Account (F-03) document header

    We are using trancode F-03 to clear a GL account. On the selection screen, you can set the value of Clearing Date, which will be used for the clearing document. This value is also used for the Posting Date and Document Date, by the system. Our proble

  • SAP MM Certification Exams

    Hi , May anybody provide me with SAP MM Certification exams documents or links from which i will be able to download these exams. Warm Regards