How to show total search time in FAST

Hi
does anyone know how to enable the total time to search in FAST?
example will be when you search for an item in google. They will show you this in the search page "About 5,190,000,000 results(0.34 seconds)"
Thanks
Jar

Hi  Jar,
You have to edit the web part "Search Statistics" of your Search Center site. Please take steps as below:
1.Go to your search result page, edit the page.
2.In the Middle Lower Left Zone, edit the Search Statistics Web Part.
3. In the Web Part edit panel, check Display search response time under Result Statistics section.
Using this way , the search will show you in the search page as :“1-10 of
16 results Your search took 0.27 seconds.”.
Reference:
http://office.microsoft.com/en-us/sharepoint-server-help/customize-the-search-center-site-HA010382279.aspx
Best Regards,
Eric
Eric Tao
TechNet Community Support

Similar Messages

  • How to Show total value in the header 2nd page but based on 1st page footer

    How to show total value in header in report builder but i have the total have related with the total in footer.
    Example
    ===============================================
    Page 1
    Empno Ename Sal
    1 Scott 1000
    2 ALlen 2000
    3 Susi 1000
    Total Sal Page 1: 4000
    ===============================================
    Page 2
    Total Sal Page 1: 4000 --> How to get it?????
    Empno Ename Sal
    4 Budi 1000
    5 Roger 200
    6 George 2000
    Total Sal Page 2: 3200
    Please Help..
    Thanks

    hmm .. what i would do is
    - create a placeholder column
    - create a field in the header and one in the footer
    - have the footer field reference the summary column
    - have the header field reference the placeholder column
    - create a fromat trigger on the footer field to
    store the value of the footer into the placeholder column
    so when the report is executed and the footer field is formatted, the format trigger stores the current value of the summary in the placeholder. then the pagebreak occures and the header field is formatted .. printing the value.
    there might actually be an easier way, just reference the two fields to the same summary column and in theory, since there is nothing happening between the time when the footer is formatted and the header is formatted, the values should be the same .. however this is a theory and i have not actually tested this. since reports does all kinds of fancy optimization this might have unexpected results, but it's worth a try.
    thanks,
    ph.

  • How to Show Total Calculation in Footer of Table

    Hi everyone, is it possible to show total calculation in footer of table in webdynpro ? For the calculation, I think i can handle it because many thread in forum and weblog discuss it but for show it in footer of table , i can't find.
    Display
    A
    B
    C
    D
    | ____Total | XX |  --> XX shows total calculation for column D
    If this is not possible, how to trick it ? Thank you
    null

    Hi,
    Even i had the same requirement once, but as this is not possible i.e displaying the total as the footeer of the table.
    the other option for this is to hav a seperate table below the main table & then displaying the total in that table.
    You can collect the value of each cell of column D in an integer variable at the time of displaying the data in the table.
    A | B | C | D |
    1
    2
    3
    for(int i = 0;i<node.lenght();i++)
    int tot = wdcontext.element
    now at the end you can create the element of the node & assign this variable "tot" to that element, then add teh element to the node
    Hope it helps you.
    Regards
    Jeet

  • How to show the processing time taken for a BPEL process in BAM report.

    Hi All,
    I have the data as below in the Data object. I would like to show the time taken for each order to complete in the report.
    instance Id     order Id     product Name     product Code     price     status     instance Time      updaterName
    1360010     ord004     Guitar     prod003     2000     requested     9/22/2008 12:12:11 PM     Invoke_InsertSalesOrder
    1360010     ord004     Guitar     prod003     2000     Approved     9/22/2008 12:15:11 PM     Invoke_OrderStatusUpdate
    This data comes from simple BPEL process where sensors are configured at the start and end of BPEL process. Also have a human task activity in between to create the time difference.
    In Enterprise link design studio, I tried to calculate the time difference using expression calculator and store it as calculated field. But that doesn't seems to work because when I execute the plan, second sensor data reaches only after human approval whereas first sensor data would be waiting for calculation and ultimately nothing comes into data object.
    How and where the calculation be done to show the processing time in the report. Please someone throw some light on this.
    Regards
    Jude.
    Edited by: user600726 on Sep 30, 2008 1:30 AM

    I would suggest modifying your data object so that the data can all be in a single row and use the sensor at the end of the process to upsert (update) the row created by the sensor at the start of the process. The time difference between two fields in the same row is then an easy calculation on a BAM report -- No EL plan should be needed.

  • How to show Date and Time with TimeZone

    Dear All,
    I have to show Date and Time with TimeZone abbreviation,
    for example:
    1) 31 March 2011 2:30 in india standard time - it should show in screen 31 March 2011 2:30 IST.
    2) 31 March 2011 2:30 in Australia/New Zealand - Eastern time zone it should show in screen 31 March 2011 2:30 AEST.
    how can i show *Australia/New Zealand - Eastern time zone to AEST*,
    I tried with format DD MMM YYYY HH:MM zzz, and i looked time zone API too.
    Appreciate your help
    Thanks
    Daya

    Dayananda wrote:
    ok, than i have to use zzzz format, as z won't help in my case, so i have to use zzzz which display descriptive value like, Indian Standard Time i.e. ISTPer the javadocs there is a very specific reason why that is a problem especially if you intend to support many timezones in one application.
    "+For compatibility with JDK 1.1.x, some other three-letter time zone IDs (such as "PST", "CTT", "AST") are also supported. However, their use is deprecated because the same abbreviation is often used for multiple time zones (for example, "CST" could be U.S. "Central Standard Time" and "China Standard Time"), and the Java platform can then only recognize one of them+."
    Thus you have one single case where there can be many and moreover it can change (twice a year I believe.)
    There is a standard source for this information although when I tried it it appears to not work.
    If the app only needs to display one zone then provide a configuration value that allows a user to overload the display value.
    If the app needs to display many values then you MUST inform business users of the problem because there are duplicates and they, not you, need to decide specifically what happens in those cases.

  • How to find total refresh time of Materialize view?

    Hello All,
    I want to know the total refresh time of Materialize view. i m refreshing MV by below statement
    i hv not logging the start and end time of this in process.
    exec dbms_mview.refresh('EMP_MV','C','',FALSE,FALSE,0,0,0,TRUE);
    So, anybody can you please know the using which database table it cab be possible?
    Thanks in advance

    The only way you can log the refresh time for each execution is to wrap the call inside a procedure that also logs the start and end times to a logging table.
    (if you manually run the exec dbms_mview.refresh from an SQLPlus command line, you could also SET TIMING ON in SQLPlus)
    Hemant K Chitale

  • How to show total pages in a report

    Hi Experts,
    I have to show the pages in the formart current page/ Total pages. I am not able to claculate the total pages. Please help me and give the code.
    Thanks a lot.
    Krishan

    The code below shows how to display the total number of pages in a report like "Page 1 of 8."  However, it doesn't work if you execute the program as a background jobs.
    CODE
    " Declare a variable
    DATA L_PAGE_COUNT(5) TYPE C.
    "  Copy this code to the end of program
    "  Page count will be printed on each page here
        WRITE SY-PAGNO TO L_PAGE_COUNT LEFT-JUSTIFIED.
        DO SY-PAGNO TIMES.
            READ LINE 1 OF PAGE SY-INDEX.
            REPLACE '-----' WITH L_PAGE_COUNT INTO SY-LISEL.
            MODIFY CURRENT LINE.
        ENDDO.
    TOP-OF-PAGE.
        WRITE: /(70) 'Heading' CENTERED, 70 SY-PAGNO,'of ', '-----'.
    Refer : http://www.sap-basis-abap.com/sapab007.htm

  • Help regarding how to show total and grand total

    hi all
    please help me to show the total / grand total fund wise
    i m giving final output that i want
    which functions may i use .
    following is my query
    SELECT MUT_NAME , NATURE , BROK_TYPE ,sum(BROKERAGE) brokerage   FROM (
    SELECT MUT_NAME , NATURE , BROK_TYPE ,BROKERAGE  FROM (
      select mf.mut_name , si.nature ,'UPFRONT' BROK_TYPE ,  sum(up1.paid_brok)  BROKERAGE from upfront_paid up , upfront_paid_dtl upd , upfront_pr up1 , scheme_info si , mut_fund mf
      where up.slab_id = upd.slab_id
      and up.SLAB_ID = up1.paid_slab_id
      and up.sch_code = si.sch_code
      and si.mut_code = mf.mut_code
    -- and si.mut_code = 'MF004'
      group by   grouping sets (  (mf.mut_name , si.nature) ) ROLLUP(MF.MUT_NAME,SI.NATURE)
      UNION ALL
      select mf.mut_name , si.nature ,'TRAIL' BROK_TYPE ,   sum(up1.paid_brok)    BROKERAGE  from TRAIL_paid up , TRAIL_paid_dtl upd , TRAIL_pr up1 , scheme_info si , mut_fund mf
      where up.slab_id = upd.slab_id
      and up.SLAB_ID = up1.paid_slab_id
      and up.sch_code = si.sch_code
      and si.mut_code = mf.mut_code
    -- and si.mut_code = 'MF004'
      group by  grouping sets (  (mf.mut_name , si.nature) ) ) ROLLUP(MF.MUT_NAME,SI.NATURE)
    UNION ALL
    SELECT 'TOTAL ' MUT_NAME , ' ' NATURE , ' ' BROK_TYPE ,SUM(BROKERAGE)  FROM (
      select mf.mut_name , si.nature ,'UPFRONT' BROK_TYPE ,  sum(up1.paid_brok)  BROKERAGE
      from upfront_paid up , upfront_paid_dtl upd , upfront_pr up1 , scheme_info si , mut_fund mf
      where up.slab_id = upd.slab_id
      and up.SLAB_ID = up1.paid_slab_id
      and up.sch_code = si.sch_code
      and si.mut_code = mf.mut_code
      --and si.mut_code = 'MF004'
      group by  grouping sets (  (mf.mut_name , si.nature) ) ROLLUP(MF.MUT_NAME,SI.NATURE)
      UNION ALL
      select mf.mut_name , si.nature ,'TRAIL' BROK_TYPE ,   sum(up1.paid_brok)    BROKERAGE  from TRAIL_paid up , TRAIL_paid_dtl upd , TRAIL_pr up1 , scheme_info si , mut_fund mf
      where up.slab_id = upd.slab_id
      and up.SLAB_ID = up1.paid_slab_id
      and up.sch_code = si.sch_code
      and si.mut_code = mf.mut_code
    -- and si.mut_code = 'MF004'
      group by  grouping sets (  (mf.mut_name , si.nature) ) ) ROLLUP(MF.MUT_NAME,SI.NATURE)))
    GROUP BY grouping sets (MUT_NAME),( NATURE ),( BROK_TYPE)
    ORDER BY MUT_NAME , NATURE , BROK_TYPE 
    Sl. No.     Fund House     Fund Type     Brokerage Type     "Type-wise
    Commission "     Gross Commission
    (1)     Fidelity Mutual Fund     Equity     Upfront Commission     xxx     
                   Trail     xxx     
                   Others     xxx     
              Debt     Upfront Commission     xxx     
                   Trail     xxx     
                   Others     xxx     
    T O T A L :                         xxxxx
    (2)     Franklin Templeton Mutual Fund     Equity     Upfront Commission          
                   Trail          
                   Per Form          
                   AUM Linked          
                   SIP Advance Annual Brokerage          
                   Others          
              Debt     Upfront Commission          
                   Trail          
                   Others          
    T O T A L :                         xxxxx
    CONSOLIDATED TOTAL COMMISSION :                         xxxxxany help appriciated.

    how can i use compute in procedure
    actually i am giving the output from query to ref_cursor and from front end ( .NET) they are fetch rows and show the output.
    i want output as fallows
    fund name -- nature --- brok type --- brokerage
    1] fidelity     equity     upfront       2000
                 equity     trail         1000
                 debth      upfront       1500
                 debth      trail         500
      Fidelity                            5000
    2] abc       --                     
    so on hope this clears you
    Message was edited by:
    Pankaj M

  • How to show date besides time in the topmost space?

    Hi, I can't find an option in settings to make my iPad2 show the date AND the time on the screen. Time is shown by default. Is there a way to add the date?
    Thanks.

    You can try leaving feedback : http://www.apple.com/feedback/ipad.html

  • How to show Total amount and distributed amounts in one report

    Hi,
    I have the Plan Amounts distributed across Fiscal Year Periods for various WBS Elements in the cube.
    I have to give a report wherein I should display the Total Plan amount for each of the WBS Element in one column, and the plan amounts across the fiscal year periods in the corresponding columns.
    The user enters a Plan Start Date and a Plan End Date as input. The fiscal year periods to be displayed should be between this selection. For example if the user enters Plan Start Date as March07 and Plan End Date as Jun 07, the data should be displayed as follows:
    WBS Element Total Plan Mar07 Apr07 May07 Jun07
    WBS1 5000 3000 1000 0 1000
    WBS2 8000 0 2000 4000 2000
    If I take WBS Element in the row, Amount and Fiscal Year Period in the column, I am getting Plan Amounts distributed across the Fiscal Year Periods. I am not able to display the Total Plan amount.
    If I take WBS Element in the row, and Amount in the column, I am getting Total Plan Amounts for each WBS but I am not getting amounts distributed across the Fiscal Year Periods.
    I have tried by creating restricted key figures for all the fiscal year periods, but this doesn't work as the Fiscal Year Periods to be displayed are dynamic based on the user selection of Plan Start Date and Plan End Date .
    Is there any way this can be handled by writing some ABAP code??
    Please suggest on what can be done.
    Regards,
    Srini.

    Hi,
    If i understand your question ,
    you want like Total plant amount for range entered , and plan amount for variaous fiscal periods , is that correct...
    Y dont u try following ways:
    Total plan amount,,,,,,jan,,feb,,mar,,apri...............dec
    wbs element..
    Now take wbs element in Rows
    In columns take  plan amount , and double click it so u will reach selection screen.
    In this selection... take fiscal period from Time Char and drag it to right side
    Restrict the fiscal period with creating Interval variable...
    change description to TOTAL PLAN AMOUNT
    Now again take Plan amount and bring it in columns..
    Double clikc and in selection bring Fiscal period.
    Right click it and restrict it to january/ period 1
    Change description to January
    Copy this January,,,,, 11 times and paste it below
    now go in each january and then restrict them with different values....
    for one, select february and change description to february
    for 2nd select march as restriction and change description to march...
    Same way carry out till december.
    Save the query...
    Click Query in Menu and click properties...
    Apply zero row suppression to rows and columns..
    This way you will get Total plan amount for total range and for each period in same columns...
    With zero row supression if ur user enter only range march to june ,,, all other period values plan amount will get cancel out and u will not see them in display...
    Try this workaround and let me know...

  • How to show number of times as output?

    i have a table books_issue_details. I would like to show as output
    books table:
    book_id,book_name,author_name,etc..
    book_issue_details
    columns book_id,issue_id,student_id,issue_date
    output:
    title 1 has been issued o times
    title 2 has been issued 4 times

    Use outer join:
    with books as (
                   select 1 book_id,'A' book_name from dual union all
                   select 2,'B' from dual
         book_issue_detail as (
                               select 2 book_id,99 student_id from dual
    select  'Title ' || t1.book_name || ' has been issued ' || count(t2.book_id) || ' times.' cnt
      from      books t1
            left join
                book_issue_detail t2
              on t2.book_id = t1.book_id
      group by t1.book_id,
               t1.book_name
    CNT
    Title A has been issued 0 times.
    Title B has been issued 1 times.
    SQL> SY.

  • How to caluculate total transaction time for a particular service in OSB?

    Hi All,
    We are using osb 11g in our project.As a part of performance testing we need to caluculate the total time taken for one transaction i.e at the time of invocation of that particular service till completion of that service.Also We need to caluculate the total time taken in intermediatory service callout if at all it is been used.Is there any out of box functionality provided by osb for caluculating the total time taken for each transaction?
    Since we are using routing and service callouts in our message,log action will not help us.
    Any pointers on the same would be of great help.
    Regards,
    Roopa Marella

    You can turn on monitoring for OSB proxy services. This out of the box gives you average execution time for the proxy service.
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/operations/monitoring.html

  • How to get Query response Time?

    II am on BI 7.0. I ran some queries using RSRT command. I want to find how much time the queries took.
    I went to
    st03 -> expert mode -> BI system load-> select today / week/month according to the query runtime day
    I do not see any Info Providers. Query was on a cube so why no Info Providers.
    Does something have to turned on InfoPorvider to show.
    When I look  in RSDDSTAT_OLAP table, I do see many rows but cannot make any sense. Is there some documentation on how to get total  query time from this table?
    Is there any other way to get query response time?
    Thanks a lot.

    HI,
    why not use RSRT ? You can add database statistics option in "Execut & Debug" and you get all the runtime metrics of your query
    In transaction RSRT, enter the query name and press u2018Execute +Debugu2019.
    Selecting u2018Display Statistics Datau2019 .
    After executing the query will return a list of the measured metrics.
    The event id / text describes the steps  (duration in seconds):
    "OLAP: Read data" gives the SQL statements repsonse time (ok - because the SAP
    application server acts as an Oracle client a little network traffic from the db server is included,
    but as far as you not transferring zillions of rows it can be ignored)
    But it gives you much more (i.e. if the OLAP cache gets used or not )...
    In the "Aggreagate statistcs" you get all the infoproviders involved in that query.
    bye
    yk

  • Very long search times from an IMac running 10.6.7 Snow Leopard when searching for files on a windows 2003 server

    The issue is as follows:
    The Imac is connected to the  windows 2003 server via SMB type connection.
    There are four sub folders in the main directory. We go to one of the sub folders in this case Server.
    We go to search window and type the file name that we want to search such as test .
    The choices selected for search parameters are Server for location and contains (same results if picked by file name)
    Search takes roughly 6 minutes before it returns the result.
    If we do the same search on the old Mac Server it will take 15 seconds to complete using same search parameters.
    Any ideas on how to speed up search times to the Windows 2003 Server? I have tried going to finder preferences and removing the sharing section. That did not help.

    Okay, I've....
    1) Reinstalled XE, to start from scratch
    2) Went in to SQL*Plus, did a "create pfile from spfile;"
    3) Shutdown the database
    4) Started it up in MOUNT mode
    5) Ran NID, to change the database name from 'XE' to 'CTXMGMT'
    6) Shutdown the database again
    7) Edited the pfile to change the database name (i.e. "db_name='CTXMGMT'")
    8) Started up the database
    And that worked! So that's good... but now my question is:
    How do I change the SID for the database? Currently, the instance name for the database is still 'XE'....
    SQL> select instance_name
    2 from v$instance;
    INSTANCE_NAME
    xe
    I'd like it so a connection could be made to the database with the tnsnames.ora file looking like this:
    CTXMGMT =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(Host = rodin)(Port = 1521))
    (CONNECT_DATA = (SID = CTXMGMT))
    Could someone explain how to get the database to this state? Thanks.
    - Gary

  • QUERY EXECUTION TIME OR SEARCH TIME

    Hi Guys,
    Is there any way in OUAF to know how much time did the server took to retrieve the records when an User enters a filter in a Query Zone.
    How to know the search time. Is this stored anywhere?
    Please help me kindly.
    Your help will be highly appreciated

    Follow the below steps,
    01. Launch the application in debug mode(?debug=true)
    02. Check the Global Debug check box
    03. Now do the operation which executes ur query or query zone
    04. Open the log file, go thru it. You will find the each and every executed queries. spot it ur query and check the time the of execution and retried result time. just subtract the times. You will get the execution time of the query.

Maybe you are looking for

  • Many Lion Server Problems

    I think I have run into most of the Lion Server issues mentioned so far and perhaps a few self inflicted new ones. 1) Upgrade from Snow Leopard worked except the migration failed.  Naturally I did not have a backup of the server configuration. 2) Man

  • Crossplatform Migration 8.1.7.4 db on TRU64 to SUN Solaris PW850.

    Hi, I'm performing a migration study of a Oracle 8.1.7.4 database ( ODS Warehouse ) across different OS platforms. I'm trying to determine which method is the most suitable to migrate/transfer this database from Tru64 over to a Sun Solaris 10 Os. Sin

  • How can i use my laptop

    is there any softwar permissions me to make call  by mobile phone throught laptop..i mean iwant to connect my nokia phone to laptop via usb cable and use laptop as a head and mic to make calls.  many thanks for your soon reply

  • In CORR where we can enter the rework quantity

    Hi , In CORR collective confirmation , where i can give the rework quantity , How the rework quantity maintain in the Corr transaction. Second question  :-   is there any reservation number for rework order ? Regards satish

  • How to lock a user

    Hi, I have a workflow in which I want to lock a user. I would appreciate if anyone could provide an example as to how to do this. Thanks, John I