Ruuning reports at a specified time in 10g

Hello all,
i am looking for a help, we just converted all our PRO*C reports into ORacle 10g reports. one feature we have to have is runinng the report at a specified time.
for example, if we need to run a report at 1:00 AM in the moring how can we schedule to run the report at the time in advance?
any help will be greatly appreciated.

Same question answered in Forms forum - see Re: A report 10 g question

Similar Messages

  • How To Restore Deleted Table With It's Data To Specified Time Using 10g

    Hello Everybody
    I would like to gain from your experience in the Felid of DBA so now i am not trying to restore the full database, but i have a stupid user dropped accedintaly a single table from the database. i want to restore this table after being deleted but also i have big problem i dont have any backup for this table so if you please send to me any solution to restore this deleted table
    Notes : I have (Flash backup On , Archive Log Is On)
    it is not that the database is corrupted or anything
    Ramez S. Swires

    Hey N. Gasparotto
    Thank you for replying me. in the first thread you told me
    ( Without any flashback availability, you haven't any other choice than PITR (Point In Time Recovery)).
    i already checked i found that flashback is working and archive log are working and both are working normally and working before dropping the table and also i cant restore the table which is dropped.
    So what can i do?
    Do you have any other idea?
    Ramez S. Sawires

  • Weather App that reports to your notification center at a specified time?

    Here's the scenario:
    I work outdoors and live in the Midwest so the weather can and often does vary A LOT from day to day.
    I plug my iPad in for the night and go to sleep.
    When I wake up, I hit the home button to see my notification center. Contained there is the report from this weather app, telling me the basic information immediately: Current temperature, the day's high/low, any preciptiation chance.
    Now here's the added bonus that I really want:
    Everyone knows the temperature changes drastically from night to day, so a temperature reading would need to be taken near to the time that you wake up. What if you could set this app to display the information at a certain time? It's a concept just like an alarm where an action is triggered at a specified time, in this case, weather readings. Say I'm getting up at 6am. I'd set the app to report at 5:55am or something like that.
    OR the much simpler apprach would just be to add a weather widget of some sort to the lock screen. If that's an option, I'd gladly go for that as well.
    So does anything like this exist?
    Thanks to all!
    [EDIT]
    I found the solution to my question. I had a feeling it was something really easy that I was just missing. Thanks! Feel free to delete this thread. I would but I'm not sure how or if I even can.

    You are correct that things would be easier if it was automatic. However, you will generally find that it is a program with a built-in scheduler, such as a backup program or a video recording program, that left some code behind even if the program was trashed or removed from the system.
    As far as the PDP11, I don't think I could afford the electricity to run one even if I had one. The PDP11 is the first computer I was exposed to in medical imaging. I list it because every once in a while it draws out the truth from folks like yourself when they admit to knowing what one is.
    I think the first disk drives that thing used were housed in recycled washing machines using the old motors to drive the spindles.
    -DP

  • Automatically run report at specified time

    Hi,
    Is it possible to run the specified report which is registered with Portal automatically at a specified time?!
    with best regards,
    Mathan

    Mathan,
    I'll assume you are talking about the Oracle Reports and Oracle9iAS Portal integration. Best bet would be to ask the Reports folks in the Oracle Reports forum.
    Rich

  • ORA-08180: no snapshot found based on specified time

    Hi,
    on 10g R2, why I can not use Flash version query even if I use a large time interval :
    SQL> SELECT versions_startscn, versions_starttime,
      2         versions_endscn, versions_endtime,
      3         versions_xid, versions_operation,
      4  ename from  scott.EMP
      5  VERSIONS BETWEEN TIMESTAMP
      6        TO_TIMESTAMP('2003-07-18 14:00:00', 'YYYY-MM-DD HH24:MI:SS')
      7    AND TO_TIMESTAMP('2010-07-18 17:00:00', 'YYYY-MM-DD HH24:MI:SS')
      8  ;
    ename from  scott.EMP
    ERROR at line 4:
    ORA-08180: no snapshot found based on specified time
    SQL> select ename, sal from scott.emp;
    ENAME             SAL
    SMITH             800
    SQL> update scott.emp set SAL=SAL*2 where ename='SMITH';
    1 row updated.
    SQL> select ename, sal from scott.emp;
    ENAME             SAL
    SMITH            1600
    SQL> SELECT versions_startscn, versions_starttime,
           versions_endscn, versions_endtime,
           versions_xid, versions_operation,
    ename from  scott.EMP
    VERSIONS BETWEEN TIMESTAMP
          TO_TIMESTAMP('2003-07-18 14:00:00', 'YYYY-MM-DD HH24:MI:SS')
      AND TO_TIMESTAMP('2010-07-18 17:00:00', 'YYYY-MM-DD HH24:MI:SS')
    ename from  scott.EMP
    ERROR at line 4:
    ORA-08180: no snapshot found based on specified time
    SQL> commit;
    Commit complete.
    SQL> SELECT versions_startscn, versions_starttime,
      2         versions_endscn, versions_endtime,
      3         versions_xid, versions_operation,
      4  ename from  scott.EMP
      5  VERSIONS BETWEEN TIMESTAMP
      6        TO_TIMESTAMP('2003-07-18 14:00:00', 'YYYY-MM-DD HH24:MI:SS')
      7    AND TO_TIMESTAMP('2010-07-18 17:00:00', 'YYYY-MM-DD HH24:MI:SS')
      8  ;
    ename from  scott.EMP
    ERROR at line 4:
    ORA-08180: no snapshot found based on specified timeThank you.
    PS :
    ORA-08180: no snapshot found based on specified time
    Cause: Could not match the time to an SCN from the mapping table.
    Action: try using a larger time.

    Thank you Centinul,
    SQL> show parameter undo
    NAME                                 TYPE        VALUE
    undo_management                      string      AUTO
    undo_retention                       integer     900
    SQL> SELECT versions_startscn,
      2             versions_endscn,
      3             versions_xid, versions_operation,
      4      ename,sal from  scott.EMP
      5      VERSIONS BETWEEN TIMESTAMP
      6            TO_TIMESTAMP('2010-04-02 15:08:00', 'YYYY-MM-DD HH24:MI:SS')
      7       AND TO_TIMESTAMP('2010-04-02 15:12:00', 'YYYY-MM-DD HH24:MI:SS')
      8     ;
    VERSIONS_STARTSCN VERSIONS_ENDSCN VERSIONS_XID     V ENAME             SAL
                                                         SMITH            1600
                                                         ALLEN            1600
                                                         WARD             1250
                                                         JONES            2975
                                                         MARTIN           1250
                                                         BLAKE            2850
                                                         CLARK            2450
                                                         SCOTT            3000
                                                         KING             5000
                                                         TURNER           1500
                                                         ADAMS            1100
    VERSIONS_STARTSCN VERSIONS_ENDSCN VERSIONS_XID     V ENAME             SAL
                                                         JAMES             950
                                                         FORD             3000
                                                         MILLER           1300
    14 rows selected.Then why versions_startscn, versions_endscn columns are not filled ?
    Edited by: user522961 on Apr 2, 2010 6:16 AM

  • Report execution takes long time

    Dear all,
    we have a report which takes long time to exceute due to select statement.. here is the code..
    SELECT vkorg vtweg spart kunnr kunn2 AS division FROM knvp
        INTO CORRESPONDING FIELDS OF TABLE hier
        WHERE kunn2 IN s_kunnr
        AND   vkorg EQ '0001'
        AND   parvw EQ 'ZV'.
        l_parvw = 'WE'.
    SORT hier.
    * select all invoices within the specified invoice creation dates.
      CHECK NOT hier[] IS INITIAL.
      SELECT vbrk~vbeln vbrk~fkart vbrk~waerk vbrk~vkorg vbrk~vtweg vbrk~spart vbrk~knumv
             vbrk~konda vbrk~bzirk vbrk~pltyp vbrk~kunag vbrp~vbeln vbrp~aubel vbrp~posnr
             vbrp~fkimg vbrp~matnr vbrp~prctr vbpa~kunnr
             vbrp~pstyv vbrp~uepos
             vbrp~kvgr4  vbrp~ean11          
        INTO CORRESPONDING FIELDS OF TABLE it_bill
        FROM vbrk INNER JOIN vbrp ON vbrp~vbeln = vbrk~vbeln
                  INNER JOIN vbpa ON vbpa~vbeln = vbrk~vbeln
        FOR ALL entries IN hier
        WHERE (lt_syntax)
        AND   vbrk~vbeln IN s_vbeln
    *    AND   vbrk~erdat IN r_period
        AND   vbrk~fkdat IN r_period       
        AND   vbrk~rfbsk EQ 'C'
        AND   vbrk~vkorg EQ hier-vkorg
        AND   vbrk~vtweg EQ hier-vtweg
        AND   vbrk~spart EQ hier-spart.
    Can anyone say about how to reduce the execution time.?
    Edited by: Thomas Zloch on Sep 22, 2010 2:46 PM - please use code tags

    Hi
    first of all never use move corressponding.
    Rather you should declare a work area for table hier.
    select values into the work area and then append that workarea into the table hier.
    In case of for all entries include all the primary keys in the selection and for the keys which are of no use declare constants with initial valules like:
    'prmkey' is a primary field for table 'tab1' .
    Constants: field1 type tab1-prmkey value initial.
    and then in your where condition write.
    prmkey GE field1.
    I hope it is clear to you now.
    Thanks
    lalit Gupta

  • How to start Report Server automatically in developer suit 10g

    Hi all
    I have an application implemented using Developer Suit 10 g forms and reports builder.
    For this application, the first report to be printed after booting the computer takes a long time (around 5 minutes)
    when printing any more report (even if it was the one printed before ) it takes a little time, this means that the first report made the report server start.
    I rebooted the computer, but this time i started the report server manually using this command :
    <strong>rwserver server=report_server_name</strong>
    Now, the report is printed after a little time, It's OK.
    <strong>Is there any configuration to start the Report Server automatically in developer suit 10g after the computer boots ?
    </strong>Please help

    No answer ?

  • Error Message : Object could not be scheduled within the specified time interval

    Post Author: mohamed elkashef
    CA Forum: Publishing
    Dear All when i try to run event for daily reports it sometimes take generation status failed with this error  message : Object could not be scheduled within the specified time interval so  i need to know the reason of failure and how can i fix  this error  thanks a lot 

    Post Author: nvnaresh
    CA Forum: Publishing
    Dear jsanzone,
    I'm facing the same error even when the server time out is more than the query execution time of the report.By server time out I assume connection time out of WebI report server which I have set to 180 min.But the actual query takes maximum of 5 min.
    We are using BO XIR2+SP2.
    I scheduled a webI report to get saved in Excel format to an Unmanaged disk location upon a File Event.
    We have 3 such reports to be scheduled on the same event.
    Expected frequency of File Event getting fired in a day is twice.Scheduling frequency I have set it as every one hour with the file event.
    This usually should work fine.
    But frequently 1 or 2 of the above 3 instances are getting failed with the following error "Object could not be scheduled with in specified time interval " after being in Running state for few hours(8). Amazingly this is not happening every time. May be once or twice in a week.This works fine after I restart the BO services and the same thing repeats after 3 or 4 days.
    Do I need to increase any server parameters?
    Why is this happening randomly?  

  • Installing Forms&Report  Services with Oracle Application Server 10g Rel 3

    Can I Install Forms & Report Services with Oracle Application Server 10g Release 3 some how?
    I am thinking of installing Forms & Reports Services in separate home with Oracle Application Server 10g Rel 3.
    Does any body has any different idea so that they both can run more smoothly together.
    Thanks
    Raj
    www.oraclebrains.com

    They WILL NOT RUN TOGETHER. We have discussed this many times before. They must be in separate homes.
    Check the search function for this forum to find the previous discussions.

  • Anyway to auto shut down iTunes at specified time?

    Hi my iTunes library stored on a NAS. The NAS is set to sleep overnight.
    However if I leave my iTunes on my iMac open, the NAS doesnt auto mount, and then iTunes has loads of errors, cant save file, cant locate iTunes library etc etc. I have to close iTunes, remount NAs (use CMD-K, chose the share), then re-open iTunes. So 2 questions...
    1) Is there someway I can auto shut down iTunes at a specified time, ie before my NAS goes to sleep, even if my iMac is asleep or is this impossible?
    2) How can I auto mount my NAS share, so every morning when the NAS comes awake, it aut mounts. I leave my iMac on all the time, but it goes to sleep, and just use one log in, ie its always logged in.
    cheers

    lune:
    Lots of questions. I'll try to get to at least a few now.
    I am doing the repairs on HD volume rather than the 74.4gb Hitachy, never been sure which one to choose)
    When working in Disk Utility, both for Repair Disk and Repair Disk Permissions, you want to select the Manufacturer's ID, instead of the volumne name. You want to work with the volume on the HDD, as the directory is built into the HDD.
    Would you say that I should consider the idefrag solution to keep things running smoothly?
    Here's what Apple says About disk optimization with Mac OS X. That said, I do a complete disk optimization at least monthly, sometimes twice. I use Tech Tool Pro. It's one of the best all round utilities out there. DriveGenius is supposed to be pretty good, too, but I am not personally familiar with it. It is the one utility that I have heard reported to do repartitioning on the fly successfully.
    I'll return to you other questions later.
    Good luck.
    cornelius

  • ERROR : Object could not be scheduled within the specified time interval

    I have the next error Object could not be scheduled within the specified time interval.
    When i schedule a report to be refreshed and the moment come when the report have to be refresh appear the error.
    i check the error in the following path in the CMC
    HOME> FOLDERS > USER FOLDERS > ... > "REPORT FOLDER"  Instance Properties
    Why i get this error?
    Anyone can give me a good solution to solve this error?
    Thanks!!!

    Hi Ed,
    The above error message is appearing due to the reason, when a large number of requests are scheduled to start at the same time, this may exceed the Maximum Number of Simultanius Requests that the deployment can support.
    To resolve this error message, increase the end time on the scheduled instance. To increase the end time, use the following steps:
    1. In the Infoview, browse to the desired report and click 'History'.
    2. Find the desired scheduled instance and click 'Reschedule'.
    3. Under the 'When' section, increase the end time for the scheduled instance.
    Upon completing these steps, the error message no longer appears.
    Hope it will help in resolving the error.
    Regards,
    Ritesh Nayyar

  • Discoverer report is taking much time to open

    Hi
    All the discoverer report are taking much time to open,even query in lov is taking 20 -25 min.s.We have restart the services but on result found.
    Please suggest what can be done ,my application is on 12.0.6.
    Regards

    This topic was discussed many times in the forum before, please see old threads for details and for the docs you need to refer to -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Discoverer+AND+Slow&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Lock Frontpanel when user takes no activity in a specified time

    Hello !
    I have a PanelPC with Touchscreen and want to lock the frontpanel when the user doesn't make an input for a specified time. After this time the frontpanel locks and shows a password input to unlock the frontpanel. How do i detect if the user makes no input ? The VI has to run, because it makes an automatic control/ regulation of a factory. I found an example with a password protection, but i don't know how to detect the user input. Can anyone help me ?

    You can monitor the "mouse events" and also the "keypress events (using the keyboard)" and with this FP can be locked/unlocked based on the time out. 
    Create an event structure so that it will be easy to handle the mouse events. Add another frame of this event structure which can be used for handling the timeout and when ever a event occurs on the FP you can reset it to 0
    Regards
    Guru (CLA)
    Attachments:
    timeout.vi ‏13 KB

  • How to schedule a concurrent request to run at a specified time/day?

    Hi All,
    How to schedule a concurrent request to run at a specified time/day (ex: Sunday 12pm)?
    Thanks,
    Chiru
    Message was edited by:
    Megastar_Chiru

    Is this to run periodically ?
    During the request submission, click schedule, choose the specific days, and click on S = Sunday.
    Change the start date on the date of the sunday you want to run, eg : 15-JUL-07 14:00:00, change the end date as well.

  • Report taking too much time in the portal

    Hi freiends,
    we have developed a report on the ods,and we publish the same on the portal.
    the problem is when the users are executing the report at the same time it is taking too much time.because of this the perfoemance is very poor.
    is there any way to sort out this issue,like can we send the report to the individual user's mail id
    so that they can not log in to the portal
    or can we create the same report on the cube.
    what could be the main difference if the report made on the cube or ods?
    please help me
    thanks in advance
    sridath

    Hi
    Try this to improve performance of query
    Find the query Run-time
    where to find the query Run-time ?
    557870 'FAQ BW Query Performance'
    130696 - Performance trace in BW
    This info may be helpful.
    General tips
    Using aggregates and compression.
    Using less and complex cell definitions if possible.
    1. Avoid using too many nav. attr
    2. Avoid RKF and CKF
    3. Many chars in row.
    By using T-codes ST03 or ST03N
    Go to transaction ST03 > switch to expert mode > from left side menu > and there in system load history and distribution for a particular day > check query execution time.
    /people/andreas.vogel/blog/2007/04/08/statistical-records-part-4-how-to-read-st03n-datasets-from-db-in-nw2004
    /people/andreas.vogel/blog/2007/03/16/how-to-read-st03n-datasets-from-db
    Try table rsddstats to get the statistics
    Using cache memory will decrease the loading time of the report.
    Run reporting agent at night and sending results to email. This will ensure use of OLAP cache. So later report execution will retrieve the result faster from the OLAP cache.
    Also try
    1. Use different parameters in ST03 to see the two important parameters aggregation ratio and records transferred to F/E to DB selected.
    2. Use the program SAP_INFOCUBE_DESIGNS (Performance of BW infocubes) to see the aggregation ratio for the cube. If the cube does not appear in the list of this report, try to run RSRV checks on the cube and aggregates.
    Go to SE38 > Run the program SAP_INFOCUBE_DESIGNS
    It will shown dimension Vs Fact tables Size in percent.If you mean speed of queries on a cube as performance metric of cube,measure query runtime.
    3. To check the performance of the aggregates,see the columns valuation and usage in aggregates.
    Open the Aggregates...and observe VALUATION and USAGE columns.
    "---" sign is the valuation of the aggregate. You can say -3 is the valuation of the aggregate design and usage. ++ means that its compression is good and access is also more (in effect, performance is good). If you check its compression ratio, it must be good. -- means the compression ratio is not so good and access is also not so good (performance is not so good).The more is the positives...more is useful the aggregate and more it satisfies the number of queries. The greater the number of minus signs, the worse the evaluation of the aggregate. The larger the number of plus signs, the better the evaluation of the aggregate.
    if "-----" then it means it just an overhead. Aggregate can potentially be deleted and "+++++" means Aggregate is potentially very useful.
    In valuation column,if there are more positive sign it means that the aggregate performance is good and it is useful to have this aggregate.But if it has more negative sign it means we need not better use that aggregate.
    In usage column,we will come to know how far the aggregate has been used in query.
    Thus we can check the performance of the aggregate.
    Refer.
    http://help.sap.com/saphelp_nw70/helpdata/en/b8/23813b310c4a0ee10000000a114084/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/60/f0fb411e255f24e10000000a1550b0/frameset.htm
    performance ISSUE related to AGGREGATE
    Note 356732 - Performance Tuning for Queries with Aggregates
    Note 166433 - Options for finding aggregates (find optimal aggregates for an InfoCube)
    4. Run your query in RSRT and run the query in the debug mode. Select "Display Aggregates Found" and "Do not use cache" in the debug mode. This will tell you if it hit any aggregates while running. If it does not show any aggregates, you might want to redesign your aggregates for the query.
    Also your query performance can depend upon criteria and since you have given selection only on one infoprovider...just check if you are selecting huge amount of data in the report
    Check for the query read mode in RSRT.(whether its A,X or H)..advisable read mode is X.
    5. In BI 7 statistics need to be activated for ST03 and BI admin cockpit to work.
    By implementing BW Statistics Business Content - you need to install, feed data and through ready made reports which for analysis.
    http://help.sap.com/saphelp_nw70/helpdata/en/26/4bc0417951d117e10000000a155106/frameset.htm
    /people/vikash.agrawal/blog/2006/04/17/query-performance-150-is-aggregates-the-way-out-for-me
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1955ba90-0201-0010-d3aa-8b2a4ef6bbb2
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce7fb368-0601-0010-64ba-fadc985a1f94
    http://help.sap.com/saphelp_nw04/helpdata/en/c1/0dbf65e04311d286d6006008b32e84/frameset.htm
    You can go to T-Code DB20 which gives you all the performance related information like
    Partitions
    Databases
    Schemas
    Buffer Pools
    Tablespaces etc
    use tool RSDDK_CHECK_AGGREGATE in se38 to check for the corrupt aggregates
    If aggregates contain incorrect data, you must regenerate them.
    202469 - Using aggregate check tool
    Note 646402 - Programs for checking aggregates (as of BW 3.0B SP15)
    You can find out whether an aggregate is usefull or useless you can find out through a proccess of checking the tables RSDDSTATAGGRDEF*
    Run the query in RSRT with statistics execute and come back you will get STATUID... copy this and check in the table...
    This gives you exactly which infoobjects it's hitting, if any one of the object is missing it's useless aggregate.
    6
    Check SE11 > table RSDDAGGRDIR . You can find the last callup in the table.
    Generate Report in RSRT
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cccad390-0201-0010-5093-fd9ec8157802
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4c0ab590-0201-0010-bd9a-8332d8b4f09c
    Business Intelligence Journal Improving Query Performance in Data Warehouses
    http://www.tdwi.org/Publications/BIJournal/display.aspx?ID=7891
    Achieving BI Query Performance Building Business Intelligence
    http://www.dmreview.com/issues/20051001/1038109-1.html
    Assign points if useful
    Cheers
    SM

Maybe you are looking for