Query to find out the time used by an user for an application

Hello All,
I want to know the query to find out the whole time used by the user for an application. Please view the below data
Employee:
SNO EMP_ID EMP_NAME EMP_DATE LOGIN_TIME LOGOUT_TIME
1 10 Visu 21-Nov-2010 06:30:00 07:30:00
2 10 Visu 21-Nov-2010 06:40:00 07:20:00
3 10 Visu 21-Nov-2010 06:50:00 07:50:00
4 10 Visu 21-Nov-2010 07:30:00 08:30:00
5 10 Visu 21-Nov-2010 09:30:00 10:30:00
By checking the above data we can say that the total time Visu used the application is
8.30 - 6.30 (From 1,2,3,4 records) = 2hrs
10.30 - 9.30 (Based on 5th rec) = 1hr
So the total time Visu used the application would be 3 hrs = 180 mins.
Could you please help me in getting the result from that data using a query?

odie_63 wrote:
I think it may be solved with analytics too.
with t1 as (
            select 1 sno,10 emp_id,'Visu' emp_name,'21-Nov-2010' emp_date,'06:30:00' login_time,'07:30:00' logout_time from dual union all
            select 2,10,'Visu','21-Nov-2010','06:40:00','07:20:00' from dual union all
            select 3,10,'Visu','21-Nov-2010','06:50:00','07:50:00' from dual union all
            select 4,10,'Visu','21-Nov-2010','07:30:00','08:30:00' from dual union all
            select 5,10,'Visu','21-Nov-2010','09:30:00','10:30:00' from dual
     t2 as (
            select  emp_id,
                    emp_name,
                    emp_date,
                    to_date(emp_date || login_time,'DD-MON-YYYYHH24:MI:SS') login_time,
                    to_date(emp_date || logout_time,'DD-MON-YYYYHH24:MI:SS') logout_time
              from  t1
     t3 as (
            select  t2.*,
                    case
                      when login_time < max(logout_time) over(
                                                              partition by emp_id,emp_date
                                                              order by login_time
                                                              rows between unbounded preceding
                                                                       and 1 preceding
                        then 0
                      else 1
                    end start_of_group
              from  t2
     t4 as (
            select  t3.*,
                    sum(start_of_group) over(partition by emp_id,emp_date order by login_time) grp
              from  t3
     t5 as (
            select  emp_id,
                    emp_date,
                    min(login_time) login_time,
                    max(logout_time) logout_time
              from  t4
              group by emp_id,
                       emp_date,
                       grp
select  emp_id,
        numtodsinterval(sum(logout_time - login_time),'day') time_spent
  from  t5
  group by emp_id
  order by emp_id
    EMP_ID TIME_SPENT
        10 +000000000 03:00:00.000000000
SQL> SY.

Similar Messages

  • How to find out the updates using query which has done in Discoverer Admin

    Hi All,
    I have done some updates in Discoverer Admin like add field in some folders and rename...I want to know the updates which has been done in the front end using sql query.
    Could any one please tell me is there any query to find out the updates in Discoverer admin.
    Thanks,
    Kamal

    Hi Siddarth,
    Solution :
            1) Go to SE16 - Table Name : EKBE (PO History)
            2) Field - BUDAT (Posting Date)
            3) Transaction event Type:
                             - 1 (Only GR's )
                             - 2 (Both GR and IR)
            4) We can fetch both GR Numbers and also PO Numbers for which IR has not been done if transaction event - 1.
    In addition to MB5S, you can try this also...

  • Query to find out the list of user who have delete access

    Hi,
    I need a query to find out the list of users who have delete access on perticular folder/universe/ reports  in infoview.
    Please advice.
    Regards,
    Neo.

    orton607 wrote:
    thanks for replying guys. But the thing is i am using dynamic sql execute immediate in my package, so i want those tables also and the schema name.
    thanks,
    ortonThis is not possible. The best you could do is to have a good guess.
    Or how would you parse some dynamic statement as this:
       v_suffix := 'loyees';
       v_sql := 'Select count(*) from (select ''nonsense'' col1 from emp'||v_suffix||') where col1 = ''Y'''';
       execute_immediate(v_sql);
    ...What is the table name? How do you want to parse that?
    Better rewrite all dynamic SQL statements into non dynamic ones. Or do the source control logic for those dynamic parts in an extra module. For example implement your own dependency table and force every developer to add there all dynamic parts.

  • Wmi script to find out the time when the user was added to local administration group

    Hi Friends,
    i need a script/query based on wmi/wql that find out the time when the user was added to local administration group on this computer
    Regards
    Tanoj
    OSLM ENGINEER - SCCM 2007 & 2012

    WMI does not keep security information.
    Unless you have enabled auditing, this information is not retained in any way.
    If auditing is enabled, you can write a powershell script to look for the specific event in the eventlog. More specifically, you should look for all security events with id 4732 containing the group.
    this one command does the trick
    get-eventlog -logname security -instanceid 4732 -message *administrators*
    https://technet.microsoft.com/en-us/library/dd772663(v=ws.10).aspx
    MCP/MCSA/MCTS/MCITP

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • Need query to find out the sum till a period

    Hi,
    I need to write one query to find out the cumulative sum of raw_cost of table pa_budget_lines till the specified period, I tried to do this by analytical function, but that is not working in Report 10g. Can anybody help me in this.
    Thanks

    not familiar with report but could you do something like this
    with t as
      select 1 grp, 10 * level the_cost, add_months (sysdate,  level) effective_dt from dual connect by  level < 11 union all
      select 2 grp, 5 * level the_cost, add_months (sysdate,  level) effective_dt from dual connect by  level < 11
    input as
      ( select null grp, null the_cost, null running_total,  v_eff_dt effective_dt   from dual)
    select * from(
    select t.grp, t.the_cost, sum(t.the_cost) over (partition by t.grp order by t.effective_dt) running_total, t.effective_dt,
           lead(t.effective_dt) over (partition by t.grp order by t.effective_dt) next_effective_dt,
           input.effective_dt  inp_eff_dt
    from t, input
    where inp_eff_dt between effective_dt and next_effective_dtv_eff_dt would be the input date you are interested in

  • Query to find out the Activities done against a table

    Hi,
    One table has been truncated and data reloaded into the table by the user. But at latter stage user deny that activity. I believe all these activities stored in any oracle 10g database table.
    Need a query to find out the activities done on a specific date say 6th Sep.
    This is too urgent. Thanks in advance

    Hi,
    Welcome to the forum!
    If you don't have enable table auditing maybe you can see last_ddl_time column of user_objects view:
    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    SQL> select * from test2;
          COL1       COL2       COL3
             1          1          3
             1          2          3
             1          3          3
    SQL> select to_char(uo.created, 'DD/MM/YYYY HH24:MI:SS'), to_char(uo.last_ddl_time, 'DD/MM/YYYY HH24:MI:SS') from user_objects uo where uo.object_name = 'TEST2';
    TO_CHAR(UO.CREATED,'DD/MM/YYYY TO_CHAR(UO.LAST_DDL_TIME,'DD/M
    12/09/2009 12:20:26            12/09/2009 12:20:27
    SQL> truncate table test2;
    Table truncated
    SQL> select to_char(uo.created, 'DD/MM/YYYY HH24:MI:SS'), to_char(uo.last_ddl_time, 'DD/MM/YYYY HH24:MI:SS') from user_objects uo where uo.object_name = 'TEST2';
    TO_CHAR(UO.CREATED,'DD/MM/YYYY TO_CHAR(UO.LAST_DDL_TIME,'DD/M
    12/09/2009 12:20:26            12/09/2009 14:01:21
    SQL> Regards,

  • How to find out the time when the ASE started?

    Normally, ASE not reboot for production. Only for maintenance or performance tuning, maybe need to reboot ASE.
    Question is how to find out the time when ASE was started?
    one way maybe is check errorlog. Any more simple way no need to login to server OS?

    Hi Kent,
    In ASE 12.5 and up, you can do 'select @@boottime'  For older releases, a general method is 'select crdate from sysdatabases where dbid=2'
    1> select @@boottime, crdate from sysdatabases where dbid=2
    2> go
                                     crdate
                 Jul 15 2014  9:19AM             Jul 15 2014  9:19AM
    (1 row affected)
    Cheers
    Dan

  • Query to find out the list of tables used in a package

    hello,
    can anyone please help me out with a query; i want to find out the list of tables used by a particular package.
    thanks,
    orton

    orton607 wrote:
    thanks for replying guys. But the thing is i am using dynamic sql execute immediate in my package, so i want those tables also and the schema name.
    thanks,
    ortonThis is not possible. The best you could do is to have a good guess.
    Or how would you parse some dynamic statement as this:
       v_suffix := 'loyees';
       v_sql := 'Select count(*) from (select ''nonsense'' col1 from emp'||v_suffix||') where col1 = ''Y'''';
       execute_immediate(v_sql);
    ...What is the table name? How do you want to parse that?
    Better rewrite all dynamic SQL statements into non dynamic ones. Or do the source control logic for those dynamic parts in an extra module. For example implement your own dependency table and force every developer to add there all dynamic parts.

  • Please let me know a good query to find out the memory being used in DB

    Hi All,
    We are using Automotic memory management by using parameter memory_target option. I want to find out the total memory being used and which is free.
    ie;(SGA+PGA). Please let me know.
    Thanks & Regards,
    Vikas Krishna

    Since we are using memry_target we will not get an accurate value there I guess.
    SQL> show parameter memory
    NAME TYPE VALUE
    hi_shared_memory_address integer 0
    memory_max_target big integer 12G
    memory_target big integer 12G
    shared_memory_address integer 0
    SQL> select round(used.bytes /1024/1024 ,2) used_mb
    2 , round(free.bytes /1024/1024 ,2) free_mb
    3 , round(tot.bytes /1024/1024 ,2) total_mb
    4 from (select sum(bytes) bytes
    5 from v$sgastat
    6 where name != 'free memory') used
    7 , (select sum(bytes) bytes
    8 from v$sgastat
    9 where name = 'free memory') free
    10 , (select sum(bytes) bytes
    11 from v$sgastat) tot;
    USED_MB FREE_MB TOTAL_MB
    1660.92 378.71 2039.62
    Thanks & Regards,
    Vikas Krishna

  • Query to find out the free disk space on C: drive

    Hi Guys,
    I am trying to create a query in  Queries section under Monitoring, To find out the free disk space of C: drive.
    Am using the below query, but it shows lot many fields, I need only Machine names of the collection and their
    Free Disk Space on C: drive
    select * from SMS_R_System inner join SMS_G_System_LOGICAL_DISK on SMS_G_System_LOGICAL_DISK.ResourceId = SMS_R_System.ResourceId where SMS_G_System_LOGICAL_DISK.DeviceID = "C:" and SMS_G_System_LOGICAL_DISK.FreeSpace > 1024
    Please assist

    The SELECT part of the query will govern what fields you are shown, so perhaps try:
    Select SMS_R_System.ResourceID, SMS_R_System.NETBIOSname, SMS_G_System_Logical_Disk.FreeSpace
    from SMS_R_System
    inner join SMS_G_System_LOGICAL_DISK on SMS_G_System_LOGICAL_DISK.ResourceId = SMS_R_System.ResourceId
    where SMS_G_System_LOGICAL_DISK.DeviceID = "C:" and SMS_G_System_LOGICAL_DISK.FreeSpace > 1024
    I hope that helps,
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you found a bug or want the product to work differently,
    share your feedback.
    <-- If this post was helpful, please click the up arrow or propose as answer.

  • How to find out the Time necessary to produce something?

    Hello all, please help me in this issue.
    *{color:#0000ff}I need to find out the amount of time a machine will spend doing some quantity of a product.{color}*
    {color:#008080}*I have a Machine-A which is able to produce _1000 _unities per hour (1 hour = 1000 unities).*{color}
    {color:#333399}*Then I need to produce _3650 _unities.*{color}
    {color:#800000}*Now I have to know what time the Machine-A will need to produce that amount of 3650 unities (in hours and minutes).*{color}
    double unitiesPerHour = 1000;
    double unitiesToProduce = 3650;Any help appreciated.
    Thanks

    {color:#000000}I{color} {color:#020202}w{color}{color:#040404}i{color}{color:#050505}s{color}{color:#070707}h{color} {color:#090909}I{color} {color:#0c0c0c}c{color}{color:#0e0e0e}o{color}{color:#0f0f0f}u{color}{color:#101010}l{color}{color:#121212}d{color} {color:#151515}c{color}{color:#161616}r{color}{color:#171717}e{color}{color:#191919}a{color}{color:#1a1a1a}t{color}{color:#1c1c1c}e{color} {color:#1e1e1e}a{color} {color:#212121}c{color}{color:#232323}o{color}{color:#242424}l{color}{color:#252525}o{color}{color:#272727}u{color}{color:#282828}r{color}{color:#2a2a2a}f{color}{color:#2b2b2b}u{color}{color:#2c2c2c}l{color} {color:#2f2f2f}p{color}{color:#313131}o{color}{color:#323232}s{color}{color:#333333}t{color}{color:#353535},{color} {color:#383838}l{color}{color:#393939}i{color}{color:#3a3a3a}k{color}{color:#3c3c3c}e{color} {color:#3f3f3f}a{color}{color:#404040}l{color}{color:#414141}l{color} {color:#444444}t{color}{color:#464646}h{color}{color:#474747}e{color} {color:#4a4a4a}c{color}{color:#4b4b4b}o{color}{color:#4d4d4d}o{color}{color:#4e4e4e}l{color} {color:#515151}k{color}{color:#525252}i{color}{color:#545454}d{color}{color:#555555}s{color} {color:#585858}d{color}{color:#595959}o{color} {color:#5c5c5c}t{color}{color:#5d5d5d}h{color}{color:#5f5f5f}e{color}{color:#606060}s{color}{color:#626262}e{color} {color:#646464}d{color}{color:#666666}a{color}{color:#676767}y{color}{color:#696969}s{color}{color:#6a6a6a}.{color} {color:#6d6d6d}b{color}{color:#6e6e6e}u{color}{color:#707070}t{color} {color:#727272}a{color}{color:#747474}s{color} {color:#777777}i{color}{color:#787878}t{color} {color:#7b7b7b}i{color}{color:#7c7c7c}s{color} {color:#7f7f7f}I{color} {color:#828282}j{color}{color:#838383}u{color}{color:#858585}s{color}{color:#868686}t{color} {color:#898989}h{color}{color:#8a8a8a}a{color}{color:#8c8c8c}v{color}{color:#8d8d8d}e{color} {color:#909090}o{color}{color:#919191}n{color}{color:#939393}e{color} {color:#959595}t{color}{color:#979797}y{color}{color:#989898}p{color}{color:#9a9a9a}e{color}{color:#9b9b9b}w{color}{color:#9c9c9c}r{color}{color:#9e9e9e}i{color}{color:#9f9f9f}t{color}{color:#a1a1a1}e{color}{color:#a2a2a2}r{color} {color:#a5a5a5}r{color}{color:#a6a6a6}i{color}{color:#a8a8a8}b{color}{color:#a9a9a9}b{color}{color:#aaaaaa}o{color}{color:#acacac}n{color} {color:#afafaf}l{color}{color:#b0b0b0}e{color}{color:#b1b1b1}f{color}{color:#b3b3b3}t{color} {color:#b6b6b6}a{color}{color:#b7b7b7}n{color}{color:#b8b8b8}d{color} {color:#bbbbbb}i{color}{color:#bdbdbd}t{color} {color:#bfbfbf}i{color}{color:#c1c1c1}s{color} {color:#c4c4c4}q{color}{color:#c5c5c5}u{color}{color:#c6c6c6}i{color}{color:#c8c8c8}t{color}{color:#c9c9c9}e{color} {color:#cccccc}w{color}{color:#cdcdcd}o{color}{color:#cfcfcf}r{color}{color:#d0d0d0}n{color} {color:#d3d3d3}o{color}{color:#d4d4d4}u{color}{color:#d6d6d6}t{color}{color:#d7d7d7}.{color}{color:#d9d9d9}.{color}{color:#dadada}.{color}{color:#dbdbdb}.{color}{color:#dddddd}.{color}{color:#dedede}.{color}{color:#e0e0e0}.{color}{color:#e1e1e1}.{color}{color:#e2e2e2}.{color}{color:#e4e4e4}.{color}{color:#e5e5e5}.{color}{color:#e7e7e7}.{color}{color:#e8e8e8}.{color}{color:#e9e9e9}.{color}{color:#ebebeb}.{color}{color:#ececec}.{color}{color:#eeeeee}.{color}{color:#efefef}.{color}{color:#f0f0f0}.{color}{color:#f2f2f2}.{color}{color:#f3f3f3}.{color}{color:#f5f5f5}.{color}{color:#f6f6f6}.{color}{color:#f7f7f7}.{color}{color:#f9f9f9}.{color}{color:#fafafa}.{color}{color:#fcfcfc}.{color}

  • Query to find out the table name and column name..

    Hi Experts,
    I have an Oracle DB in which has more than 50 tables and 100,000 records. I want to get the record which contains *"ITxtVarValue references a non existing text"* the text.
    Is there any query there to find out the table name and column name of this particular record where it reside?
    Please help. Any help will be rewarded.
    Thanks,
    G

    Using this forum's search function, I found a thread that should give you an idea: How to find out a tablename
    C.

  • How to find out the max mem can be allocatedTT for 32 bit Win ?

    How to find out the maximum Permanent Data Size and Temporary Data Size that can be allocated for the Oracle Times Ten for 32 bit Windows OS.

    Hi Chris,
    Am I write in saying that this also depends on shared memory setting as well?
    If that is the case, on a platform like window 2003 32-bit, one cannot have more than 4GB of shared memory. Windows Server 2003 includes support for a startup switch (entered in the boot.ini file) that allows the allocation of memory and memory address space. Regardless of the amount of physical memory that is installed on the system, the operating system uses a virtual address space of 4 GB. Out of that amount, by default, 2 GB is allocated to user-mode processes (for example, Oracle or TimesTen) and 2 GB is allocated to kernel-mode processes (for example the operating system and others). In a nutshell on systems that have more than 1 GB of RAM, this startup switch can be used to allocate more memory to applications (3 GB) and less memory to the operating system (1 GB). However, adding adding the /3GB switch to the boot.ini file will not increase the amount of physical RAM memory, the 3GB switch just tells the computer to allocate the existing memory space differently.
    For a 32-bit TimesTen the limit on memory cannot be more than 2GB (PermSize+TempSize). For example on Linux 32-bit I have 1024MB and 512MB for these two parameters.
    Thanks,
    Mich

  • How do I find out the specs of an LCD TV (for the modeline)

    I bought a Toshiba 37x3030D LCD-TV, and I'm planning to hook it up to the DVI-out. However, I have no idea how to find out the different specs that X needs (vsync, hsync, that sort of thing) and I can't find a readymade modeline anywhere. Is there a decent tool for this, or something?

    There's this really nice utility if you need to figure out a modeline, called gtf. Lets try 1600x1200@85;
    [pelle@pelle-desktop ~]$ gtf 1600 1200 85
    # 1600x1200 @ 85.00 Hz (GTF) hsync: 107.10 kHz; pclk: 234.76 MHz
    Modeline "1600x1200_85.00" 234.76 1600 1720 1896 2192 1200 1201 1204 1260 -HSync +Vsync
    [edit] if you use any kind of modern monitor, you can leave the vertical and horizontal refresh rates out. These should be automatically detected.[/edit]
    btw, i can even start X *without* an xorg.conf, so i was rather surprised you actually needed a modeline for your monitor...
    Last edited by pelle.k (2007-10-25 16:04:03)

Maybe you are looking for

  • ITunes will no longer accept my password

    The same password I have used previously will no longer get accepted so I changed it and that will not get accepted either.  Any suggestions?

  • Sending video OUT via Firewire to my Camcorder FROM my computer?

    Hi all! Can I send video OUT from my comp. to my camcorder via Firewire. I have a camcorder that has Passthrough to use it as a bridge which I have used to hook up a vcr with. But Im not sure if I can send video OUT to the camcorder and record it on

  • How can i transfer a pdf file to my i photos

    How can i transfer a file to my i photo?

  • Photoshop Elements 9 - problems with locating photo files

    I have saved my photos and my catalog on a removable hard drive.  When my laptop's techical support had to unexpectedly replace my laptop's hard drive, it meant I had to reinstall Photoshop Elements 9, which we have done.  For some reason, the My Cat

  • Signatures in Stationary

    My co-worker and I both use MacBooks and are running 10.5.2. She gets her custom signature to show up in stationary templates and I don't. We also created a custom stationary style and neither of us can get a signature in that template. Are there any