How do I get the number of minutes each

Oracle DB 10

Hi all


I have using this query to get the number of records retrieved by the simultaneous min program,

SELECT count (distinct b.attribute2)
oe_order_headers_all a, oe_order_lines_all b
where a.header_id = b.header_id
and b.flow_status_code = 'AWAIT_QUINTIQ_BOOK. '
and to_Char (b.last_update_date, 'DD-MON-YYYY HH24:MI:SS'), between January 19, 2011 02:00:01 ' AND
JANUARY 19, 2011 02:00:02 '

This allows to get the number of records retrieved in a min.

How to find the count of the last 10 minutes, IE 1 mins County 2.00 to 2.10


Thanks and greetings
Srikkanth.M

This South for minute work wise County:

Select To_Char(b.last_update_date,'DD-MON-YYYY HH24:MI') DT, count (distinct b.attribute2)
oe_order_headers_all a, oe_order_lines_all b
where a.header_id = b.header_id
and b.flow_status_code = 'AWAIT_QUINTIQ_BOOK. '
and to_Char (b.last_update_date, 'DD-MON-YYYY HH24:MI:SS'), between January 19, 2011 02:00 ' AND
"JANUARY 19, 2011 02:10.
GROUP BY To_Char (b.last_update_date, 'DD-MON-YYYY HH24')

Tags: Database

Similar Questions

  • I don't have serial number to activate the software acrobat X 1 pro. How can I get the number?

    I don't have serial number to activate the software acrobat X 1 pro. How can I get the number?

    Hey johnt92241602,

    I have checked with your account and could see that you have purchased an annual subscription for one year.

    There is no need for a serial number to activate Acrobat subscription.

    After you install Acrobat XI pro, all you need is to log in to adobe.com with your Adobe ID and password to activate the software.

    Kind regards

    Ana Maria

  • How can I get the number of rows in the table using Sunopsis API target in ODI 10 g?

    Hi guys,.

    In fact, I want to send an alert message as soon as the interface is run from a package. I've included alert OdiSendMail that sends an email once the interface is running.

    Could someone please tell how to get the number of rows inserted into the table the Sunopsis API target.

    I tried to use < % = odiRef.getNbRows () % >, but this has not worked for me. Since I am a beginner, could you please help out me

    This is my mail to send ODI format

    "The population of data managed to < % = odiRef.getSysDate () % >

    Total of lines in the target table is: < - need an API code-> "


    Kind regards

    Clinton

    Published by: LawrenceClinton on February 25, 2013 20:53

    Hello

    Create the project with details below variable

    Nom_de_variable: Total_Row_Count

    Type of variable: Variable discount

    Definition tab:
    Data type: digital
    Action: No persistent

    Refresh the tab:
    Schema: provide the schema of your repository to work and be

    SELECT log.nb_row
    THE journal of snp_step_log, snp_scen_step step
    WHERE log.nno = step.nno
    AND step.scen_no = (SELECT scen_no FROM snp_scen_step WHERE step_name='<%=odiRef.getPrevStepLog ('STEP_NAME") % > ')
    AND log.sess_no = '< % = odiRef.getSession ("SESS_NO") % >' code at low
    AND step.step_name = ' < % = odiRef.getPrevStepLog ("STEP_NAME") % > '

    Note: add this variable after the stage of interface in your package (after the interface anywhere you can place), you can add this variable before ODISendEmailNotification in your package

    call this varciable * #Total_Row_Count * in the Notification of ODISendEmail

    for example :

    Data has been fulfilled successfully in < % = odiRef.getSysDate () % >
    Total no of lines filled are: * #Total_Row_Count *

    it will work

    cordially,
    Phanikanth

    edited by: Phanikanth on February 28, 2013 01:13

    edited by: Phanikanth on February 28, 2013 01:14

  • How do I get the number of incorrect records when you use external tables

    Hi all, I have an external table DEPT,.

    DEPT. DAT

    20. ELECTRONICS

    10. SHOES

    30. CAMERA

    Select * from the Department; only 10 and 30 dept will be led as deptdescr for 20 that there are more than 10 in length so this record will go into the wrong file,

    y at - it count any query to display the folder or get any query to get the record to view the entries entries wrong file rather that will drop and see how much is rejected.

    Table:

    CREATE TABLE DEPT
    (
       DEPT        NUMBER,
       DEPTDESCR   VARCHAR2 (10 CHAR)
       )           ORGANIZATION EXTERNAL
      (  TYPE ORACLE_LOADER
         DEFAULT DIRECTORY BATCH_INBOX
         ACCESS PARAMETERS
           ( RECORDS DELIMITED  BY '\r\n'
                  BADFILE  BATCH_BAD:'UPS_DEPT_LOAD_%p.bad'
                  LOGFILE  BATCH_LOG:'UPS_DEPT_%p.log'
                  NODISCARDFILE
        FIELDS  TERMINATED BY '|'
        MISSING FIELD VALUES ARE NULL
    (
    DEPT,
    DEPTDESCR
    )
                                    )
         LOCATION (BATCH_INBOX:'DEPT.DAT')
      )
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    

    You can use the wrong file as the data file for another external table, with the entire line in a single field.  Please see the demo below.

    Scott@orcl12c > CREATE or REPLACE DIRECTORY batch_inbox AS 'c:\my_oracle_files '.

    2.

    Created directory.

    Scott@orcl12c > CREATE or REPLACE DIRECTORY batch_bad AS 'c:\my_oracle_files '.

    2.

    Created directory.

    Scott@orcl12c > CREATE or REPLACE DIRECTORY batch_log AS 'c:\my_oracle_files '.

    2.

    Created directory.

    Scott@orcl12c > CREATE TABLE DEPT

    2       (

    NUMBER 3 DEPT,

    4 DEPTDESCR VARCHAR2 (10 CHAR)

    (5) ORGANIZATION EXTERNAL

    6 (TYPE ORACLE_LOADER

    7 DEFAULT DIRECTORY BATCH_INBOX

    8 ACCESS SETTINGS

    9 (RECORDS DELIMITED BY "\r\n"

    10 BADFILE BATCH_BAD: 'UPS_DEPT_LOAD.bad'

    11 BATCH_LOG:'UPS_DEPT_%p.log LOGFILE'

    12 NODISCARDFILE

    13 FIELDS TERMINATED BY ' |'

    14 MISSING FIELD VALUES ARE NULL

    15       (

    DEPT 16,

    17 DEPTDESCR

    18       )

    19                       )

    LOCATION 20 (BATCH_INBOX:'DEPT.) DAT')

    21         )

    RELEASE 22 UNLIMITED LIMIT

    23 NOPARALLEL

    24 NOMONITORING;

    Table created.

    Scott@orcl12c > SELECT * FROM dept

    2.

    DEPTDESCR DEPT

    ---------- ----------

    10 SHOES

    CAMERA 30

    2 selected lines.

    Scott@orcl12c > CREATE TABLE DEPT_bad

    2       (

    3 the_whole_row VARCHAR2 (4000)

    (4) ORGANIZATION EXTERNAL

    5 (TYPE ORACLE_LOADER

    6 DEFAULT DIRECTORY BATCH_INBOX

    7 ACCESS SETTINGS

    8 (RECORDS DELIMITED BY "\r\n"

    9 NOLOGFILE

    10 FIELDS TERMINATED BY '\r\n '.

    11. THE MISSING FIELD VALUES ARE NULL

    12       (

    13 the_whole_row CHAR (4000)

    14       )

    15                       )

    16 RENTAL (BATCH_BAD:'UPS_DEPT_LOAD.) THE BAD ")"

    17         )

    RELEASE 18 UNLIMITED LIMIT

    19 NOPARALLEL

    20 NOMONITORING

    21.

    Table created.

    Scott@orcl12c > SELECT * FROM dept_bad

    2.

    THE_WHOLE_ROW

    --------------------------------------------------------------------------------

    20. ELECTRONICS

    1 selected line.

  • Lost my serial number for student, edition I m not a student more - how can I get the number?

    Hello!

    I bought my edition student of Adobe CS Design Premium 5.5 in December 2011 and recently reinstalled my laptop forget out before serial number. I still have the invoice with this purchase "Unimall GmbH" (which does not have its business more and thus couldn t help me) and the box of the product with the code produced on this subject. It s is not possible for me to follow the normal procedure, because I m not a student anymore and, therefore, can´t download a registration certificate.

    How can I get my serial number now?

    Thanks in advance for your help and best regards

    Andrea

    contact your school and check your account, Adobe ID Code

  • How can I get the number to redeem?

    Hello!!! I bought Adobe Photoshop elements 13 in a store, but I have a MAc Pro so I Don t have CD lector. How can I download it? I found the serial number, but I need the number to buy, how can I get it? Thank you

    Hi monican.

    You can download PSE 13 from this link. Products download Photoshop Elements | 10, 11, 12, 13

    In addition, a redemption code is used to acquire your serial No. Redeem your code for your serial number. Instructions here: Redemption Code help

    See you soon!

    ~ David

  • How do I get the number from a file xml for flash as3 area text 'Get_Days '?

    Hello

    I ended up at the daily update of the number of days since the specified days. Say, a work to be finished within 30 days. And the starting day is today. So, tomorrow it will be 29 days left. and so on...

    Thus, instead of reducing a number every day for the last number of days using the flash, it will be easy to change in the xml file.

    How can I do?

    I have a simple 'dynamic text box"text box and the name of the instance:"Days_Left. " Since I am a student, I can't do complex projects. I learn things that are small with very few lines of code that can be modified using xml files.

    So everything I type in a file xml, it must appear in a text box called "Days_Left".

    Thank you.

    You can use:

    var currentDate:Date = new Date();

    It is today
    var projectDueDate:Date = new Date (2010,11,29);

    use the date to the expiration date.

    months are zero-based.  (IE, jan for the month 0, dec is month 11)

    var daysToCompleteProject:Number = (projectDueDate.getTime()-currentDate.getTime())/(1000*60*60*24);

    This is the number of days between currentDate and projectDueDate.  You'll want to probably round or use days: hours: minutes for your display

  • How can I get the number of callers phone number (call history) of an incoming call on iPhone by program (as TrueCaller App does)

    I try to get the caller ID (telephone number or the call history) at the time of the incoming call. TrueCaller has implemented it and they get the phone number of the caller and the call also history.

    Please help me get there.

    Tips:

    1 CoreTelephony Framework(It gives only calling states)

    2 apples 9.0 update: "Maybe" contacts sync. with the mail application and detects the incoming phone number.

    3 TrueCaller App https://www.truecaller.com/articles/iphone

    https://iTunes.Apple.com/app/truecaller-enhances-your-phonebook/id448142450

    You're talking not here who you think you are. Please read the terms of the user agreement you signed.

  • How do I get the number of characters in the table

    Hi all

    I'm writing a query.

    Requirement is like this.

    You will need to obtain the total number of a character in a table.

    Here is an example of data.

    There are table T1 that has Column1, Column2, and Column3.

    Column1Column2Column3
    #*
    *&$
    (**
    *%!

    This is I want to get the total number of characters "*" in the table, regardless of the number of columns in this table.

    By the sample data above, I should get the count as '5'.

    I want to translate is not necessary:

    WITH got_columns_123 AS

    (

    SELECT column1 | Column2 | Column3 AS columns_123

    FROM t1

    )

    SELECT NVL (SUM ((columns_123) - NVL LENGTH (LENGTH (REPLACE (columns_123, ' *')), 0)), 0)

    OF got_columns_123;

  • How do I get the number by using the sql values list

    DECLARE

    v_rec_cnt number: = 0;

    Type v_table is table of the varchar2 (9);

    card_tab v_table: = v_table)

    '372131483',

    '372131566',

    '372131618',

    '372131720',

    '372131801',

    '372131885',

    '372131976',

    '372132058'... records 110000lacks)

    and org_colo_cam_id = 6827;

    Start

    Because me in card_tab. First... card_tab. Last

    loop

    SELECT count (1) in the v_rec_cnt OF dtc_tab_random_no dorn

    WHERE org_colo_cam_id = 6827 and

    NVL(attribute01,'@null@') = 'OFFICE '.

    and dorn_card_no = card_tab (i);

    v_rec_cnt: = v_rec_cnt + 1;

    end loop;

    dbms_output.put_line (' County :'|| v_rec_cnt);

    END;

    I need to get the values in list of bove records I write the script run I got this error can u please help for this

    I got IN the operator, but 1000 is limit in thank you operator for help

    Error on line 1

    ORA-06550: line 4, column 11:

    PLS-00801: internal error [22510]

    ORA-06550: line 4, column 11:

    PL/SQL: Ignored Element

    ORA-06550: line 117342, column 10:

    PLS-00320: the declaration of the type of the expression is incomplete or incorrect

    through utl_file.get_line the id to select queries count (1) inner loop passes the id I had the County thanks

  • How can I get the number of the line causing the error?

    If I try to catch an error with try-catch...

    The object of e which is containing the text error message is not to store the line number where the error occurred.

    try
    {
        error;
    }
    catch ( e )
    {
        $.writeln( e.toSource() ) ;
    }
    

    We are in a html extension Panel, not in extendscript toolkit.

    The result is: (new ReferenceError ("syntax is not defined"))

    It would be extremely useful that we could get the line number.

    Thank you!

    Hi oliverIntergrafika,

    the following doesn't work for you?

    try
    {
        error;
    }
    catch ( e )
    {
        $.writeln( e.toSource() );
        $.writeln( e.line );
    }
    

    Concerning

  • How can I get the number of disks for a virtual machine and PAHO are / s of a disc?

    Hi all

    I would like to know if there is a command that returns the number of disks having a virtual machine.

    and also if there is no command to obtain and change the number of the IOPS / disk s.

    Thanks in advance

    Carlos

    It will give you hard drives attached

    Get - VM | Hard drive


    It will give you count

    Get - vm | Select name, @{N = "TotalHDD"; E={($_ | (Get-harddisk).count}}


    It is possible to retrieve the number of the IOPS / disk s, but what do you mean by editing.

  • How can I get the number of a random process to use in math´s and show the solution to the user?

    I wrote this function and I try to show the number of seconds that the user had to sooner or later the stopbutton to the user click.

    its about to hit stop councelling while inside ther is a random number already, but the user do not know or see.

    the eye opens in a random between 40000 and 100 milliseconds. If they open the user should click on stop without seeing them. so his Sensa.

    I just tried.

    This code is on the mc with the eyes to make them open at random. This is the second image the main code of the time. 1 frame is the Start button and a small description. on the second stop button and closed eyes with the script here as I have already said. and on the framework of the 3rd is the end wher it should be displayed to the user. That's how I tried. Please let me know any suggestions and or other solutions to my problem! If you need to see my flashfile help me just let me know. I send to you or something :-)
    MIC (at) hellrec.at


    function randomRange(minNum:Number,_maxNum:Number):Number

    {

    return (Math.floor (Math.random () * (maxNum - minNum + 1)) + minNum);

    }

    var myTimer:Timer = new Timer ((randomRange (100, 40000)), 1);

    myTimer.addEventListener (TimerEvent.TIMER, openeyes1);

    myTimer.start ();

    var: duration: uint = getTimer();

    function openeyes1(e:TimerEvent):void {}

    gotoAndPlay (26);

    e.updateAfterEvent ();

    }

    to save the use of number:

    function randomRange(minNum:Number,_maxNum:Number):Number

    {

    return (Math.floor (Math.random () * (maxNum - minNum + 1)) + minNum);

    }

    var randomNum:Number = randomRange (100, 40000);

    var myTimer:Timer = new Timer(randomNum,1);

    myTimer.addEventListener (TimerEvent.TIMER, openeyes1);

    myTimer.start ();

    var: duration: uint = getTimer();

    function openeyes1(e:TimerEvent):void {}

    gotoAndPlay (26);

    e.updateAfterEvent ();

    }

    p.s. Please check the useful/correct.

  • How can I get the number of emails in my Inbox (not just read but total) to view the list of folders?

    I use to have a count of the total number of mails in my Inbox. This was listed next to "inbox" in my list of folders. With the latest version, it is gone and I can't find anything in the settings which may bring back this feature. I see the number of emails by right clicking on the folder, but I would love to just see it again a glance.

    You have this add-on?

    https://addons.Mozilla.org/en-us/Thunderbird/addon/extra-folder-columns/

    http://chrisramsden.vfast.co.UK/3_How_to_install_Add-ons_in_Thunderbird.html

  • How do I get the number of customers

    Hi all
    We have a fact table, AR_F, to which are connected the dimensions Party_D and. Fin_D party-org_d is inturn connected to Party_d.

    party_org_D contains details of customers such as the customer name and customer ID (number)
    Fin_D contains the sides (two EV - and + ve) of each customer.

    the scoring range is as follows,

    good note: > 0
    OK rating: between 0 and -1.5
    Bad notes: < - 1.5

    Now, I need to count the number of guests in each range as separate measures.

    Kindly help me to find a solution for this.

    Thank you.

    Hello

    Try this...

    colours n ° 1
    --------
    -case when Fin_D.ratings > 0 then 'good '.
    When Fin_D.ratings > = - 1.5 and Fin_D.ratings<= 0="" then="">
    When Fin_D.ratings< -1.5="" then="" 'bad'="">

    Col 2
    --------
    When case (case when Fin_D.ratings > 0 then 'Well'
    When Fin_D.ratings > = - 1.5 and Fin_D.ratings<= 0="" then="">
    When Fin_D.ratings< -1.5="" then="" 'bad'="" end)='Good' then="">

    When (case when Fin_D.ratings > 0 then 'Well'
    When Fin_D.ratings > = - 1.5 and Fin_D.ratings<= 0="" then="">
    When Fin_D.ratings< -1.5="" then="" 'bad'="" end)='Ok' then="">

    When (case when Fin_D.ratings > 0 then 'Well'
    When Fin_D.ratings > = - 1.5 and Fin_D.ratings<= 0="" then="">
    When Fin_D.ratings< -1.5="" then="" 'bad'="" end)='Bad' then="">
    end

    I hope that help to...

Maybe you are looking for