Which job refreshes Snapshot Queries?

Does anyone know which job in the Automation Server refreshes the cached used by Snapshot Queries?
The Admin Guide states "These cached search results are refreshed at the same interval as many other end-user caches, every 15 minutes.".
Does that correspond to a particular job (ie. Card Refresh or Search Update 1)? Or am I confused?
Thanks in advance,Justin

Hi,
I thing with the DBA studio it is taking the nextinterval time as sysdate+1/288; So find out that job which is running for that and change the interval value using the
dbms_job package to
trunc(sysdate)+1 then it will run exactly at 12 midnight;
I hope this will help you
regards,
khaleel

Similar Messages

  • Which user and which procedure takes snapshots for AWR in 10g??

    Hi, all.
    Which user and which procedure takes snapshots for AWR in 10g??
    The snapshot interval is 1 hour.
    I checked dba_scheduler_job, and dba_job.
    However, I was not able to find a job which takes a snapshot.
    On EM, I can see snapshots are being taken per one hour.
    Thanks and Regards.
    Message was edited by:
    user507290

    Dear Shmyg and VAS.
    Thanks for your reply.
    MMON takes a snapshot and stores snapshot information in DBA_HIST_** tables.
    Right??
    Does MMON have something to do with dbconsole and emagent??
    Even when I stopped dbconsole and emagent, snapshots are being taken.
    If so, what does do dbconsole and emagent??
    Thanks and Regards.
    Message was edited by:
    user507290

  • Automatic refresh of queries into workbook

    Dear SAP fans,
    I am using a workbook with 2 BEX queries and some VBA coding for each "onRefresh".
    I set both queries to "refresh query when opening the workbook" so that my workbook is automatically updated when I open it.
    Unfortunately the "system" automatically refreshes the queries in the "wrong" order. Therefore my result in incomplete...
    Any idea to refresh the queries in the right order?
    Alternatively, I was thinking to refresh the second query via VBA coding, but I can't get it right...
    Thanks in advance for your help!!
    Kind regards
    Julien

    Hi both,
    Thanks a lot for your great answer:
    S.Sankaran,
    I saw the same behaviour, but was not quite sure it will be the rule...
    This solution does work!
    However I would be happy to use Sebastian solution, which sounds cleaner and more flexible...
    Unfortunately I do not manage to make it work: I do not manage to get the option definition..
    Seastian,
    Could you help me to open the object katalog of the sapbex.xla?
    Thanks again both of you!
    Julien

  • How to find out which job is calling package

    Respected sir,
    How to find out which job is calling my package. Please help me regarding this.
    Regards,
    user570124

    Please read about [url http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_util.htm#i997163]DBMS_UTILITY.FORMAT_CALL_STACK in the manual.
    or [url http://asktom.oracle.com/tkyte/who_called_me/index.html]this routine from Tom Kyte may be what you are looking for.
    Regards,
    Rob.

  • Relative dates in advanced search / snapshot queries

    Hi -
    Is there any way to search with a relative date in PT 5.x? EX: "Find me content published in the last week"
    We have over 700 publications that make use of relative date searches in PT 4.5 WS. I understand that these should be converted to separate snapshot queries in 5.x, but as I look at things I realize there does not seem to be a way to query by relative date - I seem to need fixed, specific dates ("between October 1 and October 7"). We realy heavily on this kind of logic in order to keep our content fresh with no ongoing maintenance.
    Anyone have any suggestions? Are we missing something obvious?
    Thanks,
    Eric

    Hi.
    You can do this:
    1.- Replace the controller class (MAC) for the corresponding structure.
    2.- Redefine the method QUERY; then is possible to change the parameters that the "Search Engine"  (might be the Reporting Framework) uses
    You can find more details in "The cookbook" and this can be found in the marketplace. If you don't have access give me your e-mail and i will send it to you.
    Best Regards.
    Armando Rodriguez.

  • APS Collections Refresh Snapshot Thread running for very long

    Hi,
    Program "APS Collections Refresh Snapshot Thread" for "BOM_INV_COMPS_SN" snapshot is running for very long time.
    Can we cancel it?
    It's running in FAST refresh mode.
    Thanks.

    Hi,
    Count the records in the mlog tables of these MVs. If the record count is more than do a complete refresh.
    Thanks,
    Abhishek Sharma

  • Refresh individual queries within a workbook in SP20 EHp1 System

    Hi,
    Currently we have upgraded our BI system to EHP1 pack for SP20. Now we are in BI7.01. We have found in SAP release notes for EHP1 like " in BEX 7 analyzer we will able to Refresh individual queries within a workbook:".
    Can you please tell me how to acheive that, as when we are trying to do it refreshes all the sheets.
    Also in Global settings tab " Allow single data provider refresh" is disabled. Kindly tell me step by step procedure to acheive this,
    Thanks

    Hi Krishna,
    Really thanks for your instructions. We have enabled hte "refresh on individual workbooks" in the workbook settings tab adn we are able to see the same in the context menu of the analysis grid.
    Again i have few doubts.
    I can able to see two options as below.
    1. Refresh
    2. Refresh this query.
    What is the difference between this two?. Also when i click the "refresh this query" it shud display the "selections screen of the particular query", But it is not at all showing me a selection screen,
    What i am doing is.. I am simply doing "refresh this query" option that will refresh my screen first adn i am doing change variables.
    That will give me the selection screen of the particular query. If i am not doing so, all workbooks are refreshing,
    Please advice, whether selection screen of the particular query can be shown when clicking "refresh this query".
    Thanks/

  • In which Table all ABAP queries store?

    Hi Guys,
    In which Table all ABAP queries store?
    Thanks,
    Sa nkar

    Hi..
    ABAP Queries are also stored in the Table TADIR along with other Repository Objects.
    the following fields must be checked to Find ABAP Queries in this Table:
    PGMID = 'R3TR'
    OBJECT = 'AQQU' "For ABAP Queries
    This will help u to retrieve the ABAP queries from this table TADIR.
    sample code:
    data: itab type table of TADIR.
    SELECT * FROM TADIR into table ITAB.
    WHERE PGMID = 'R3TR'
    and OBJECT = 'AQQU'
    and (OBJ_NAME like 'Z%' or OBJ_NAME like 'Y%').
    REWARD IF HELPFUL.

  • Which job is taking log Backup of specific database using command?

    In my SQL Server there are around 200 jobs of different databases for backup.
    Which job is taking log Backup of specific database using command?
    Kindly help.
    Thanks

    Hi,
    Its generally a bad design to create different jobs for different databases expecially backup and restore if you create you give specific names to the jobs otherwise it would be difficult for you to track. below query will give you littlt help but if you
    are running a proc to backup log files and that proc is situated in master database it wont help. If you are running SSIS package it wont help
    The column database name will help you in locating the DB name for which job is running
    use msdbgoselect sj.name,
    sj.description,
    jst.database_name,
    sj.date_created,
    sj.date_modified,
    jst.step_name,
    jst.command
    from
    dbo.sysjobs sj
    join
    dbo.sysjobsteps jst
    on
    sj.job_id=jst.job_id
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Tables which contain details about queries

    Hi All,
    I would like to know the database tables which hold information about queries like structure, fields, Query elements etc. Thanks in advance
    thanks & regards
    satish murthy d.s

    try RSZCOMPDIR ??
    have a look at tables: rsrworkbook , rsrw*
    Re: Where-used list of an attribute (either display or navigational)
    Also try : RRMX_WORKBOOK_QUERIES_GET
    Re: Query Detailes
    Re: Query-InfoObject - Tables
    Re: Query Issues
    Re: Workbooks - Where-Used
    assign points if useful ***
    Thanks,
    Raj

  • Have to refresh multiple queries in a single refresh

    Hi  Gurus,
    Our user want  to refresh multiple queries in a single shot instead of opening multiple times. is there any macros or any other way to acheive that?
    Please help me out in this issue.

    Hi there,
    You can use workbook for that.
    Create a workbook with several queries and in the properties of the workbook, on the tab Variables, choose to display the duplicate variables only once.
    This will display only once the popup pf the variables for all the queries.
    Diogo.

  • How to find out which job delete old spool requests?

    Dear Experts,
    We have a problem with spool requests being deleted automatically, we've checked job RSPO1041 and made sure it was not scheduled to run, but somehow spool requests are gone. We also checked all the jobs on the day requests were deleted but nothing stands out. I would really appreciate it if any of you can help us find out which job is doing this or how to avoid requests being deleted.
    Thank you!
    Ling

    Hi,
    Please check the value of parameter 'rspo/req_lifetime' as it decides the lifetime of the spool requests which are generally stored in TemSe.Go through note 48400,this may help you understand how spool requests are stored and reorganized.
    Thanks

  • How to find which job fill ztable

    hallow
    i have table in database and i thihnk that job that run in night is fill it with data
    how ifind which job do that>
    Regards

    <b>First</b> find the programs that may insert into table :
    - Go though where-used on the table in SE11 dictionary or in SE86 repository. 
    - Copy the list of program to clipboard
    - go to SE38 and search for 'INSERT ZTABLE' or 'INSERT INTO ZTABLE' in those programs (utilities, find in source code)
    (<u>NB</u>: If you have ressources (cpu) use RSRSCAN1 to find these strings without any selection on program names.)
    - Note the programs thats insert into ztable
    <b>Second</b> search if they run by night
    - Go to SM37 and check if one of those is called by night in a job-step. (SM37 has a selection on program name)
    - Maybe those program are called/submitted from inside another program, so you may need to go through another where-used of the programs;
    Regards

  • Snapshot queries and activity rights?

    Anyone know the absolute bare minimum activity rights a user needs to have for creating snapshot queries? I keep getting "user does not have adequate rights to create portlets" in PTSpy, even though they have access to "create portlets" and "create snapshot queries" activity rights.
    Any help much appreciated,
    Thanks,
    Eric

    Michael,
    Thanks for your response. I did read through your post. Our DB_CONFIG is similar to what is outlined there. The issue that we are running into stems from the way we use dbxml. To speed up paging when a user is viewing a large dataset, we keep XmlResults open for a certain time duration. This leads to read lock one or two pages (the pages that contain the current result). We thought if we switch to MVCC, even that lock will go away and if a writer tries to update document(s) in those pages, a copy of those pages will be made. However, we were surprised to find that all the previous pages seen (they were not locked in the non-MVCC scenario) were also copied. This led to an abundance of freezer files and performance impact.
    What I am trying to figure out is,
    1. is our diagnosis correct (we are assuming that the previous pages were also copied - but not really sure about that)
    2. If our diagnosis is correct, is there any configuration magic that we can do to prevent unnecessary page copies (by unnecessary, I am referring to pages that were not locked in the non-MVCC scenario).
    A related question is, I have noticed that the freezer files continue to stay in the filesystem even where there are no active transactions. When do these files get removed?
    Thanks
    Chelliah

  • How to know which procedure is scheduled by which Job

    can i write a query to find whether my stored procedure is a scheduled as job. if it scheduled then scheduled which
    job name ..?
    i

    You can find out the table to query by
    select * from dict where table_name like '%JOBS%';SS ;)

Maybe you are looking for

  • How to print Integrity sql in the preparedstatement?

    How to print Integrity sql in the preparedstatement? Connection conn = null; String sql = "select * from person where name=?"; PreparedStatement ps = conn.prepareStatement(sql); ps.setObject(1, "robin"); ps.executeQuery(); i'm wants print Integrity s

  • Need help calling and looping custom classes

    Hi, I am writing a code with custom classes in it and another program that calls upon all of the classes in the first program. I can get the second one (L6) to call upon and execute all of the classes of the first (Foreign). However, I need the secon

  • HOW TO UNLOCKED MY IPHONE

    how i can unlocked iphone

  • Restrictions on transaction FPCPL

    Hi Experts, I'm looking for a way to authorize two different Business Units in a way that thay aren't able to see or change each other's payment lots within transaction FPCPL. Both are using the same organizational levels, such as CC and Business Are

  • Link Between Activity Document and Campaign

    Hi, We currently have configuration that generates activity documents from an e-mail campaign when the campaign is executed. however I can see not link to the Campaign i.e. the Campaign ID is not stored anywhere in the activity document. Can anyone t