Looking at a months history, how to check actual day dates of activity

I am trying to isolate several date periods within a month to assess usage in those periods, (Need to have valid info to pull kids into line!!) The history does not show dates and I can't figure out how to get the info. The web site addresses do not help as we all use many of the same sites. Cheers....Noel

SQLite Manager extension to see the data.
https://addons.mozilla.org/en-US/firefox/addon/5817/
Then use the Epoch converter to translate the date / time.
http://www.epochconverter.com/

Similar Messages

  • How to check if Oracle Data Access Components  is installed?

    How to check if  Oracle Data Access Components is installed and version on my computer?
    Also How to check if Oracle Data Provider is installed and version?
    TIA
    Steve42

    Regedit HKLM->Software->Oracle.  See what's there...
    At the very least, that can give you paths and can check file versions from there.

  • How to check Internet usage userwise in Active Directory ?

    How to check Internet usage userwise in Active Directory ? Without third party software is it possible ?
    Thanks & Regards, Amol . Amol Dhaygude

    Hi,
    Thanks for your comment. 
    The schema is the Active Directory component that defines all the objects and attributes that the directory service uses to store data. 
    Active Directory stores and retrieves information from a wide variety of applications and services. So that it can store and replicate data from a potentially infinite variety of sources, Active Directory standardizes how data is stored in the directory. By
    standardizing how data is stored, the directory service can retrieve, update, and replicate data while ensuring that the integrity of the data is maintained. 
    The directory service uses objects as units of storage. All objects are defined in the schema. Each time that the directory handles data, the directory queries the schema for an appropriate object definition. Based on the object definition in the schema, the
    directory creates the object and stores the data. 
    Object definitions control the types of data that the objects can store, as well as the syntax of the data. Using this information, the schema ensures that all objects conform to their standard definitions. As a result, Active Directory can store, retrieve,
    and validate the data that it manages, regardless of the application that is the original source of the data. Only data that has an existing object definition in the schema can be stored in the directory. If a new type of data needs to be stored, a new object
    definition for the data must first be created in the schema. 
    You can find more information from below article.
    Active Directory Schema Technical Reference
    http://technet.microsoft.com/en-us/library/cc759402(v=ws.10).aspx
    What's New in Active Directory Domain Services (AD DS)
    http://technet.microsoft.com/en-in/library/hh831477.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • How do i determine the date of activation of active data in DSO?

    Hi,
    I just want to know how do i determine the date of activation of active data in a given DSO?
    thanks,
    yoly

    Hi,
    if you are using BI 7.0 than you use RSA1.
    Select the infoprovider you want to check.
    Right mouse click and select manage.
    Click the Contents tab.
    Click on the logs button lower left part of the screen and select Activation of Loaded DSO Data.
    This should give you the information that you are looking for.
    regards,
    Raymond Baggen
    Uphantis bv

  • How can i make requirement date in component take the actual day date??

    hello evry one >>>
    why requirement date in component ( service order ) dose not take the
    actual day date when we Withdrawn part from stock >>>> how can i make
    the requirement date take the day date automaticly without change it
    from offset field
    for example :
    when i withdrawn apart in (old service order) .. the requirement date
    take the old date or ( the service order date ) and it dosen't tack
    the day date ( day when i withdrawn part )
    please i whant help & thank you . good luck
    .... omar gamar ...

    Wrong forum:
    http://www.microsoft.com

  • How to check  which column data differs from master table and archive table

    Hi All,
    i have two tables, table a (a1 number,a2 varchar2,a3 varchar2) and table b (b1 number,b2 varchar2,b3 varchar2).
    how to check the data in both the table are same( including all columns).
    data in a.a1 is same as b.b1 and a.a2 is same as b.b2 like that.
    if they not same , i need to know which field differs.
    Kindly Share ur ideas.

    887268 wrote:
    thanks Sven W. ,
    above reply clearly shows what my question is.
    one column must be primary key, based on that key i need to find out which are the fields having different data..
    im strugling with this, i tried the following already, but not able to get.
    select the columns from a MINUS select the columns from b.
    -- from this i can find whether the difference occurred or not.
    but i cant able to get which are the fields value changed.Good. Then you would match the rows using the PK column and need to compare the columns
    Instead of a MINUS + UNION ALL + MINUS we can now use a FULL OUTER JOIN
    It is a little task to write out all column names, but 40 columns can be handled.
    This statement would show you both tables with matching rows on the same line.
    select a.*, b.*
    from a
    FULL OUTER JOIN b on a.id = b.idNow filter/check for mismatches
    select case when a.col1 != b.col1 then 'COL1 value changed'
                    when a.col2 != b.col2 then 'COL2 value changed'
                    when a.col3 != b.col3 then 'COL3 value changed'
             end as compare_result
            ,a.*, b.*
    from a
    FULL OUTER JOIN b on a.id = b.id
    /* return only non matching columns */
    where (a.col1,a.col2,a.col3) != (b.col1,b.col2,b.col3) You might need to add nvls to take care of null values. Test this!
    Another way could be to group upon the primary key
    select *
    from (
      select id 
               ,count(distinct col1)-1 cnt_col1
               ,count(distinct col2)-1 cnt_col2
               ,count(distinct col3)-1 cnt_col3
       from
         select 'A' source, a.*
         from a
         UNION ALL
         select 'B' source, b.*
         from b)
       group by ID
    /* only records with differences */
    where 1 in (cnt_col1, cnt_col2, cnt_col3)
    ;The count columns will hold either 1 or 0. If it is 1 then this column has a difference.

  • How to check the expired date of a public key stored in my keyStore

    Hello,
    I would like to know if there is any possibility to check the expiration date of a public key which is present in my keystore.
    I did read the help of keytool but did not found any explanation about that.
    Thanks in advance for your answers.
    Alain.
    Message was edited by:
    Philipina

    Public key doesn't have an expiration date. Certificate has. Run keytool -list -v and you can read something looks like:
    Valid from: ... until: ...

  • How to check actual allocated and used memory for java process in solaris?

    Hi,
    I'm testing performance for java application on solaris 10. And I would like to know how to measure actual memory allocated and used for java process.
    I'm setting -Xms512m -Xmx512m for my java process and I use prstat command to monitor it's memory. But I found that when I run prstat to check, in SIZE column is more than I setting (found 644).
    So I'm don't know the actual memory that java process used. (In this case,is it mean the process use memory (644) more than setting (512)?)
    Thank you.

    With Xms/Xmx you specify the Java heap size. On top of that comes the permanent generation (default max size 64m) and the C part of the process (the JVM itself with all its libraries and data).
    With "ps -e -o pid,vsz,rss,args" you get the virtual and set resident size of your processes.
    Nick.

  • After completing MSS PCR, how to check the updated data in R3

    Hi,
    After completing and submitting the MSS PCR, How do I check the updated data in R3?
    Thanks
    Reva

    I got the answer.

  • How to check the master data records in using SE16 transaction?

    Hi,
    Can you please help me to check the master data records using SE16 transaction?
    Loaded master data for Characteristic and want to check the records in the master data tables.
    Thank you for your help!
    Lakshmi

    Hi!
    Welcome to SDN.
    you have to check the master data tables.
    soo in Se16 you have to select the appropriate master data table and view the data.
    following thread explains about masterdata tables
    MasterData table?
    regards
    mohan
    Message was edited by:
            Mohan Krishna

  • How to directly access day/date in iOS 8 phone calendar?

    I have an iPhone 5, and mistakenly downloaded the latest OS 8.0. I have not experienced some of the other problems reported with this upgrade, but am totally frustrated with the latest release of the Calendar app.
    The new iPhone software does not seem to allow me to enter appointments/events directly to the date chosen. When in the Month display, this latest software will not allow access to the date chosen, but now pulls up a list of dates with already scheduled events. If I don't want one of those dates, there appears to be no way to get the date I want anymore. When the + (add event icon in upper right) is tapped, the app now displays whatever date it chooses but NOT the date I wanted to enter a new event in. I must then readjust the date wheel to the date I want before proceeding with the calendar entry.
    It seems the calendar can now only find/display days/dates that have entries/events already in place. This is completely bass-ackwards prioritization of entry process. When I call up a date in the calendar from the month display, it should give me that date, NOT some other date(s) that already have entries/events/appointments. I want the date I am requesting.
    What to do?

    Thanks!
    When I tried the "list" icon previously, nothing happened to change the screen. Now it works fine (Doh!).

  • How to get Privious Day data in OBIEE

    Hi experts i need to get preivious day data(Rating Given by Bank to a customer). Because this data (rating) is not an measure so i can't use AGO function.
    So please suggest me how can i Get this without using AGO function.
    Thanks in Advance
    Regards
    Frnds

    Hi..
    yes, need to do as naresh said..
    but in filter you need to assing this..
    Apply filter on your date column
    and click on convert this filter to SQL option..
    here you need to assign the code given by naresh..
    like..
    your datecolumn =*timestampadd(sql_tsi_day,-1,daycolumn)*
    likewise, you get.. but this gives you only previous day data as you asked..
    Thanks & Regards
    Kishore Guggilla

  • Check the end date of activation of Adobe CC products

    hello,
    After installing Adobe CC on our Graphics stations, we can not authorize them to connect to the internet for security reasons ..
    To know when to pass on machines (every 180 days with the team agreement), there is a file or key Register with this information.
    The purpose is to pass on machines with a wireless key to reactivate the license, but for that I must know the end date of activation.
    If you have an answer, I thank you in advance
    cordially

    Hi Emi
    As Ravi rightly said, there is no such field..
    Couple of possible ways
    1. Check AW01N - Comparison tab - This can tell you in which Year the depreciation would end
    2. Develop a Custom Query (SQ01) or Custom report based on Capitalizaion Date + Useful Life = End Date
    Br, Ajay M

  • How to get next day date (i.e., tommarow's date) from java

    Hi all,
    One small help plz..........
    Which is the method to get next day date(for eg: 2mmarow)....
    How can I get tommarow's date from Date class or some others in Java..
    Iam able to get today date.....but my requirement is I should get next day date....Plz help me....
    Plz help me.....
    Any help will be appreciated...
    Thanks a lot.....~!~!

    Here's a working example:
    import java.util.Calendar;
    import java.text.SimpleDateFormat;
    public class Tomorrow {
        public static void main(String[] args) {
            Calendar c = Calendar.getInstance(); // current date
            c.add(Calendar.DAY_OF_MONTH, 1); // add one day
            SimpleDateFormat sdf = new SimpleDateFormat("dd"); // use the pattern: day_of_month
            String str = sdf.format(c.getTime()); // fromat the date to string
            System.out.println(str); // print it at the console
    }You should read the [url http://java.sun.com/j2se/1.5.0/docs/api/java/util/Calendar.html]Calendar and [url http://java.sun.com/j2se/1.5.0/docs/api/java/text/SimpleDateFormat.html]SimpleDateFormat class javadoc.

  • How to Check Creation/Change data for PO Service Line item

    Hi, I was wondering what field(s) from what table(s) I would have to check if I wanted a report to look for the creation or chnaged date of a specific service item in a PO?
    Currently it is using the EKPO-AEDAT field to check if a PO line item has been changed, but I would like to narrow it down to just some service line items instead of capturing all the service lines in a recently changed PO line item.
    Thank you very much in advance for the advice!

    Hi Rashid, thanks for the advice, but it doesn't really solve my problem.
    What I want to know is if there is a field where the date of a service item was created in a PO line item is stored, so that an ABAP report can be written to retrieve newly created service items from POs.

Maybe you are looking for

  • How do I add a stroke to only the outside of a shape?

    I'm trying to add a stroke to a logo for my company. It's basically similar to the shape of a donut so there is an open area the shape of a circle in the middle of the logo. When I add a stroke, it adds it to the outside of the logo, but also in that

  • Utl_file not getting generated

    hi i wrote one procedure using utl_file , to check the output of the file in a text format and it was created successfully , intially it had problems with directory and i created that directory and even granted permissions using system user but nothi

  • Pagination with pl/sql region.

    Hi all, I have created one more sample page with pl/sql region workspace: srijaks login:[email protected] password:srijakutty Application: 49471 - Sample Field Display page 16 Initially it will display the first two records of the concerned departmen

  • What happened to the Report Bugs to Apple... option in the Safari menu?

    What happened to this? http://browsers.about.com/od/safar1/ss/safaribugreport.htm Can't find it in Safari 6.0 Why would Apple remove this tool and when can we get it back? Any thoughts.

  • Installing another WLS 6.0 instance in same root /bea directory

    I have a running WLS 6x instance in /bea/wls6***. I want to put another instance in /bea directory as a totally separate instance (/bea/wls6trn e.g.) Is this a valid way to do this or do I need to go ahead and install to another separate filesystem.