NEW FEATURE: Summary Report

The rating scale wasn't the only feature in our July 22nd release. We rounded out our support for surveys by adding the "Summary Report" tab to all of your forms. The summary report contains a chart for each question in your form. The charts show how many and what percent of users picked each choice in a question. The cool thing about the summary report is that it is automatically generated for you - you don't need to do anything. The data in the summary report is updated in real time just like the View Response tab:
Mousing over a report tile shows an option button - when clicked you can see the customization options for the respective report tile:
You can show/hide the caption, percent, data count and footer. You can also change the chart type. The captions are completely editable so you can add you own custom title to each tile. You can also delete a tile by clicking the trash can icon.
And there are many ways to share your summary report: 1) Print it to paper; 2) Export to a PDF file; 3) Export all tiles to images that can be placed into your PowerPoint presentations; or 4) Use the share button at the bottom left corner to share it with your team.
Try it out and send us your feedback.
Randy Swineford
FormsCentral Product Manager
NOTE: In Japanese forms the "Save as PDF" or "Export as PDF" button is grey and is disabled, saving as PDF from the Summary Reports tab is not supported for Japanese forms

Is it possible to also see the number of responses per colored bar in the summary report? For example, under Help Us Improve, 18 total people rated Accommodations by Very Unsatisfied, Unsatisfied, Neutral, etc.
It'd be helpful to be able to see, in this view, the number of people who responded in each colored box. I made a mock-up example of this below--numbers are incorrect, but hopefully you get the picture.

Similar Messages

  • Looking for 10g New Features Summary

    Anybody know where I can get a 10g new features summary?
    Thanks in advance,
    -Ken

    That link has good DETAIL. I'm looking for a SUMMARY of the features. You know, like an outline...
    Automatic Undo Management
    Automated Storage Management (ASM)
    PL/SQL Enhancements
    Enterprise Manager
    Exclusively Browser Based
    Run on the Database
    DBMS_DATAPUMP()
    etc.

  • Urgent ,complaint summary report  ??

    Hi Gurus,
    "The new complaint summary report is missing Location from the Ship-to Name/Location and Sold-to Name/Location fields" this is the problem.
    Please let me know how to go abt this .. which tcodes do I need to refer.. do I need to look at CRMD_ORDER
    if yes then how do I look at the report ??
    I'll reward points for this ..

    Hi Ravi,
    Thanks for your reply ..
    Is this the right site .. I get an error message ...
    could you please send all the possible CRM Forum sites
    were I can place query.. to it...
    Rgds,
    Aryan

  • Complaint Summary Report

    Hi Gurus,
    ........Points Guaranteed ........
    Below is my issue....
    The new complaint summary report is missing Location from the Ship-to Name/Location and Sold-to Name/Location fields.
    Please guide me how to go abt things ...
    1) which T-code do I need to refer to
    2) how will I be able to see the report.
    all the steps .. I am totally new to CRM ...
    Regds,
    Aryan

    Hi Ravi,
    Thanks for your reply ..
    Is this the right site .. I get an error message ...
    could you please send all the possible CRM Forum sites
    were I can place query.. to it...
    Rgds,
    Aryan

  • What new features in Oracle 11g can Apps 11.5.10.2 benefit from ?

    hi there,
    we run Apps 11.5.10.2 on Solaris 10. I'm thinking of upgrading the RDBMS version from 10.2.0.4 --> 11.1.0.6 and I was wondering if anyone can reccomend some good features within the new 11g database to make use of.
    I'm aware of :
    - advanced compression
    - database replay (real application testing).
    Does anything else spring to mind ?
    many thanks
    Cameron.

    Hi,
    Please refer to the following links.
    Oracle Database 11g The Top New Features for DBAs and Developers
    http://www.oracle.com/technology/pub/articles/oracle-database-11g-top-features/index.html
    Note: 466931.1 - Oracle Database 11g Top New Features : Summary
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=466931.1
    Database Documentation -- 11g
    http://www.oracle.com/technology/documentation/database.html
    Regards,
    Hussein

  • At new statement for Summary report

    Hi,
      I have made a vendor balance report having debit and credit entry in on eintrenal table IT_BSIK, with all line item detail in another table IT_TAB1  i want to make summry report by adding all the amount of of line item it is also working fine  but i wan tto change the summary report i want summary for debit and credit entery seperate How to do it find Below the code part for summary how to use  AT NEW SHKZG then append the IT_TAB1
    find the code here.
    **********************summarised part
       loop at it_lfnr.
          Clear : VTOTBAL, vNtdue, vDue, vDue0, vDue31, vDue61, vDue91,V1TOTBAL.
          loop at it_bsik where lifnr = it_lfnr-lifnr.
              IT_TAB1-LIFNR = IT_BSIK-LIFNR.
              IT_TAB1-BUKRS = IT_BSIK-BUKRS.
              IT_TAB1-SAKNR = IT_BSIK-SAKNR.
              IT_tab1-NAME1 = IT_bsik-NAME1.
             ADD IT_BSIK-dmbtr TO V1TOTBAL.
             move V1TOTBAL TO IT_TAB1-dmBTR.
             ADD IT_BSIK-WRBTR TO VTOTBAL.
             move VTOTBAL TO IT_TAB1-WRBTR.
             MOVE IT_BSIK-WAERS TO IT_TAB1-WAERS.
             ADD IT_BSIK-NTDUE TO VNTDUE.
             move VNTDUE TO IT_TAB1-NTDUE.
             ADD IT_BSIK-DUE TO VDUE.
             move VDUE TO IT_TAB1-DUE.
             ADD IT_BSIK-DUE0 TO VDUE0.
             move VDUE0 TO IT_TAB1-DUE0.
             ADD IT_BSIK-DUE31 TO VDUE31.
             move VDUE31 TO IT_TAB1-DUE31.
             ADD IT_BSIK-DUE61 TO VDUE61.
             move VDUE61 TO IT_TAB1-DUE61.
             ADD IT_BSIK-DUE91 TO VDUE91.
             move VDUE91 TO IT_TAB1-DUE91.
           endloop.
            append it_tab1.
       endloop.
    ***********************************end of summarised vendor part ***************************

    Hi,
    loop at it_bsik where lifnr = it_lfnr-lifnr.
    if it_bsik-SHKZG eq 'Debit.
       add all your fields to table itab.
    else.
       add all your fields to table itab1.
    endif.
    endloop.
    This way you will get debit data in table itab and credit data in itab1.
    Then you can use  At new lifnr for both tables separately and you will be able to sum it separately.
    Hope its clear.
    Thanks,
    Archana

  • New Feature (Filter on Reports)

    I've just noticed that there's been a new feature added in the latest OATS v9.10 patch so that you can filter reports based on a time range. This is extremely useful, particularly if you want to 'ignore' any ramp-up/ramp-down periods and just take a sample while the test is running at the desired level.
    However, there doesn't appear to be a similar filter for the graphs. Does anyone know if this is possible? If not, hopefully the feature can be extended to graphs in a later release?

    Hi Ian,
    Custom time range feature for graphs is already available. Once a graph is rendered, click on Edit -> Select an axis (x or y) . You can change the min and max time range for the graph (if applicable) or any other units.
    Cheers
    Raj

  • What are new features of interactive reporting in hyperion  9.3 release

    hi
    what are new features of hyperion system 9.3 interactive reporting over hyperion system 9.

    Here is a link to Reporting and Analysis New Features pdf for 9.3
    http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/hs_new_features.pdf
    Brian Chow

  • How can I view free-response text answers in the Summary Report of FormsCentral?

    Can we view full individual free-responses in the Summary Report of FormsCentral?
    One of the only things that keeps me using Survey Monkey occasionally over FormsCentral is that I can't find a way for FormsCentral to show users' free-response answers  in the Summary Report.  Survey Monkey produces all the customizable charts and graphs and also provides a "Show Free Reponses" or "Show all responses" option so you can view/report those details under the question summary, as well as the numbers.  I would prefer to use FormsCentral for everything, so I hope I'm not missing something obvious.  But, if this functionality doesn't exist yet on FormsCentral, this would be a really helpful enhancement in the future.
    Thanks in advance to anyone who can point me to a solution!

    Hi;
    Your observation is correct, the text responses are not shown as text in the Summary Report.
    We do have a Form where you can vote on existing Feature Requests or add a new one of your own: https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Josh

  • New Features for OWB 9.2

    Mark Van De Wiel mentioned yesterday in this forum that OWB 9.2 is now available at http://otn.oracle.com/software/products/warehouse/content.html . From the version number it would appear that this is a major new release, and it's a separate install rather than a patch on OWB9.0.4.
    Would Mark, Igor or Shauna be able to give us some background on the new features in this new release? From quickly looking at the release notes they would appear to be;
    - Correlated Commit (committing changes across all targets uniformly)
    - Ability to create public database links
    - Direct PEL (removes the need for temporary tables when exchanging partitions)
    - Enhanced Flat File Support
    - Mapping Debugger
    - Incorporation of ETL functionality previously found in standalone Pure*Integrate
    - Metadata change management using the OWB GUI rather than using OMB*Plus
    - Multiple Name and Address Software Providers
    - Name/Address Wizard
    - New Public API for OWB
    - Better support for Real Application Clusters
    - Advanced Repository Security and Audit options
    - Support for MITI metadata bridges to third-party products
    It would be good to know the thinking behind these and what areas they think will be particularly of interest to us. Also, has anything been removed or changed that we've got used to using?
    Also, any day now (fingers crossed) the patch to make the OLAP functionality in OWB9.0.4 work (the 9i 9.2.0.3.x patch?) should be out - will this work with OWB9.2 as well?
    Many thanks
    Mark Rittman
    [email protected]

    Hi Mark,
    While I'm not in your list of people to respond I figure I give it a go anyways :-)
    The list of features you mentioned is a nice summary. One of the main release themes is data quality as you noticed. Apart from changes to the name&address functionality we also added the advanced matching and merging into this release. So you can use custom rules to match and merge data. This also allows you to do things like householding for customer data records. In essence we have now completed the integration of Pure*Integrate into Warehouse Builder.
    The mapping debugger is another big thing. This allow you to walk through your mappings and see in detail what happes to the data.
    The metadata change management is now in the UI. THis means there is now object level version management in Warehouse Builder via the UI. You can also compare versions and get a difference report.
    As you mentioned there are a number of smaller and bigger features next to this. The idea for this release is to make OWB a top Data Quality product and allow you to do your ETL and DQ in one tool. Apart from that we have added usability features (debugger, N&A wizard) and we have added some features to solve specific problems.
    Especially the corelated commit is interesting in that respect. You can now, in a map with multiple targets control the commit, and choose to either commit all targets or none, or commit them individually (current behavior).
    As usual there is a lot more, as this is indeed a major release. Keep an eye on OTN for more collateral regarding the new features. We are currently updating the site to reflect the new stuff.
    On the OLAP patch, both 9.0.4 and 9.2 will work equally well with the OLAP patch (when it is available). In 9.2 we added some small thing around composites. More about that when there is an OLAP patch to test this one on in a customer site.
    I hope this answered the question, if not let me know.
    Jean-Pierre

  • E-Mail Summary Report and Detailed Report Automatically

    Hi, I have just started a new job (1st IT job since leaving college) and I've been told that our Small Business Server 2011 used to email a Summary Report directly to a specified email address, as well as a weekly Detailed Report to the same email address,
    but that has stopped sending reports now. How do i make sure that the reports are automatically generated and sent out via email to the specified address. Any help would be great.

    Hi,
    Based on your description, I understand that there some issue occurred in Report feature in the SBS 2011.
    On current situation, please refer to following steps and troubleshoot this issue. Then check if can help you.
    1. Login the SBS server. Please open Windows SBS Console and select
    Reports tab. In the Reports panel, select a report (Summary or Detailed), then View report properties. In Report Properties page, please select
    E-Mail Options to check if had added the correct user account or e-mail address. Also please select Schedule tab, and check if had configured correctly.
    2. Then manually click
    Generate report option in Tasks. Please check if successfully generated the report. If not, please refer to following TechNet article and repair Monitoring and Reporting features in the SBS server. Then monitor the result.
    Repair Monitoring and Reporting Features
    in Windows Small Business Server 2011 Standard
    3. If generated the report successfully, please manually click
    Generate report and e-mail report option in Tasks. Then check if run successfully. Or any error message occurred?
    4. If this issue still exists, please refer to following path: C:\Program Files\Windows Small Business Server\Logs\MonitoringServiceLogs and check if there has some log files
    which be related to Report (Summary or Detailed). If has, please check if can find some more clues. Meanwhile, please open Event Viewer and check if find some relevant errors. Those may hope us to go further analyze.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • IBP 4.0 FP1 Patch 2 - Need more info on new features in Supply Planning

    Hi All,
    I was reading the SAP help and some of the new features are not very clear to me, if you have clarity around it please read and help me to get more clarity.
    As per SAP Help,The following features are now available in IBP for supply:
    Separate lead time units of measure can be defined for use in multiple planning areas depending on different time granularities.
    My Query - Where do we define it? I do not see any additional attribute in the MDT where lead time is present but don't see any attribute to define lead time units or any other different settings in the planning area so how can we define this?
    Static periods of supply are taken into account as input for the inventory target, with projected periods of coverage provided as output.
    My Query - What exactly has changed and which are the new key figures here to support this? I could not understand this from reading the above text.
    Independent demand is taken into account as input at the product location, in addition to the distribution demand from other nodes and customer demand.
    The optimizer algorithm supports the Non-Delivery Cost Rate key figure as input for the independent demand at the product location.
    My Query - A new key figure "INDEPENDENTDEMAND" is available now @PERPRODLOC so first point is very clear but second point is very confusing to me as "Non delivery cost rate" is only defined @PERPRODCUST so how we will define the non delivery cost rate for independent demand which is at different planning level and if we are not able to define it how optimizer algorithm will support it? Ideally it needs to be at same level like consensus demand and Non delivery cost rate both @PERPRODCUST Level.
    Thanks
    Girish

    Hi Mark,
    While I'm not in your list of people to respond I figure I give it a go anyways :-)
    The list of features you mentioned is a nice summary. One of the main release themes is data quality as you noticed. Apart from changes to the name&address functionality we also added the advanced matching and merging into this release. So you can use custom rules to match and merge data. This also allows you to do things like householding for customer data records. In essence we have now completed the integration of Pure*Integrate into Warehouse Builder.
    The mapping debugger is another big thing. This allow you to walk through your mappings and see in detail what happes to the data.
    The metadata change management is now in the UI. THis means there is now object level version management in Warehouse Builder via the UI. You can also compare versions and get a difference report.
    As you mentioned there are a number of smaller and bigger features next to this. The idea for this release is to make OWB a top Data Quality product and allow you to do your ETL and DQ in one tool. Apart from that we have added usability features (debugger, N&A wizard) and we have added some features to solve specific problems.
    Especially the corelated commit is interesting in that respect. You can now, in a map with multiple targets control the commit, and choose to either commit all targets or none, or commit them individually (current behavior).
    As usual there is a lot more, as this is indeed a major release. Keep an eye on OTN for more collateral regarding the new features. We are currently updating the site to reflect the new stuff.
    On the OLAP patch, both 9.0.4 and 9.2 will work equally well with the OLAP patch (when it is available). In 9.2 we added some small thing around composites. More about that when there is an OLAP patch to test this one on in a customer site.
    I hope this answered the question, if not let me know.
    Jean-Pierre

  • Comments & multi-line text not showing up on summary report

    My multi-line answers and comments are not showing up on my summary report

    Hi;
    The summary report does not show the text based answers.  This isn't something FormsCentral supports.
    If this is an important feature for you, we do have a "Feature Request" form where you can vote on popular existing ideas or add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Josh

  • Follow-up to archived thread "Another Error (I think) In the 12.1 New Features Guide"

    I hoped to be able to add a reply to the most recent reply on March 8 in the "Another Error (I think) In the 12.1 New Features Guide" thread (https://community.oracle.com/thread/3526588), but since that thread has been archived, I am doing what was suggested elsewhere: create a new thread referencing the old one. My reply is:
    Thank you for your explanation about preferring PDF over HTML. That is perfectly fine and understandable. Also, we very much appreciate your documentation feedback in this forum, and encourage you to continue to report any issues here.
    I apologize for not replying much sooner. I either didn't get or overlooked an original notification about "Recent activity" after your reply; otherwise, I would have replied then.

    Thanks for that comment. I have sent a pointer to it to the writer for that book. Note that with the New Features Guide, most of the content is automatically drawn from an internal system that tracks projects and features; so if a change is needed, the writer will notify the owner of that content (typically a developer or a product manager) to investigate and (if necessary) modify the underlying data, after which the changed information will be picked up for a future revision of the book.
    Also, while anyone is welcome to enter documentation comments in this forum, another option that may be more convenient for comments on specific sections is the Reader Comment area at the bottom of each HTML page (such as http://docs.oracle.com/cd/E16655_01/server.121/e17906/chapter1.htm#NEWFT495 for the page containing Section 1.5.9.8). Any comments entered in a Reader Comment area go to someone in our documentation production group, who forwards them to the appropriate writers.
    However, if a comment involves multiple HTML pages or books, or if you want the matter to be in a public forum for visibility and searchability, posting in this forum is a good option.

  • Oracle 10G New Feature........Part 1

    Dear all,
    from last couple of days i was very busy with my oracle 10g box,so i think this is right time to
    share some intresting feature on 10g and some internal stuff with all of you.
    Have a look :-
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Oracle 10g Memory and Storage Feature.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1.Automatic Memory Management.
    2.Online Segment Shrink
    3.Redolog Advisor, checkpointing
    4.Multiple Temporary tablespace.
    5.Automatic Workload Repository
    6.Active Session History
    7.Misc
    a)Rename Tablespace
    b)Bigfile tablespace
    c)flushing buffer cache
    8.ORACLE INTERNAL
    a)undocumented parameter (_log_blocks_during_backup)
    b)X$ view (x$messages view)
    c)Internal Structure of Controlfile
    1.Automatic memory management
    ================================
    This feature reduce the overhead of oracle DBA.previously mostly time we need to set diff oracle SGA parameter for
    better performance with the help of own experience,advice views and by monitoring the behaviour
    of oracle database.
    this was just time consuming activity.........
    Now this feature makes easy life for oracle DBA.
    Just set SGA_TARGET parameter and it automatically allocate memory to different SGA parameter.
    it focus on DB_CACHE_SIZE
    SHARED_POOL_SIZE
    LARGE_POOL
    JAVA_POOL
    and automatically set it as
    __db_cache_size
    __shared_pool_size
    __large_pool_size
    __java_pool_size
    check it in alert_log
    MMAN(memory manager) process is new in 10g and this is responsible for sga tuning task.
    it automatically increase and decrease the SGA parameters value as per the requirement.
    Benefit:- Maximum utlization of available SGA memory.
    2.Online Segment Shrink.
    ==========================
    hmmmmm again a new feature by oracle to reduce the downtime.Now oracle mainly focus on availablity
    thats why its always try to reduce the downtime by intrducing new feature.
    in previous version ,reducing High water mark of table was possible by
    Exp/imp
    or
    alter table move....cmd. but on these method tables was not available for normal use for long hrs if it has more data.
    but in 10g with just few command we can reduce the HWmark of table.
    this feature is available for ASSM tablespaces.
    1.alter table emp enable row movement.
    2.alter table emp shrink space.
    the second cmd have two phases
    first phase is to compact the segment and in this phase DML operations are allowed.
    second phase(shrink phase)oracle shrink the HWM of table, DML operation will be blocked at that time for short duration.
    So if want to shrink the HWM of table then we should use it with two diff command
    first compact the segment and then shrink it on non-peak hrs.
    alter table emp shrink space compact. (This cmd doesn't block the DML operation.)
    and alter table emp shrink space. (This cmd should be on non-peak hrs.)
    Benefit:- better full table scan.
    3.Redolog Advisor and checkpointing
    ================================================================
    now oracle will suggest the size of redo log file by V$INSTANCE_RECOVERY
    SELECT OPTIMAL_LOGFILE_SIZE
    FROM V$INSTANCE_RECOVERY
    this value is influence with the value of FAST_START_MTTR_TARGET .
    Checkpointing
    Automatic checkpointing will be enable after setting FAST_START_MTTR_TARGET to non-zero value.
    4.Multiple Temporary tablespace.
    ==================================
    Now we can manage multiple temp tablespace under one group.
    we can create a tablespace group implicitly when we include the TABLESPACE GROUP clause in the CREATE TEMPORARY TABLESPACE or ALTER TABLESPACE statement and the specified tablespace group does not currently exist.
    For example, if group1 is not exists,then the following statements create this groups with new tablespace
    CREATE TEMPORARY TABLESPACE temp1 TEMPFILE '/u02/oracle/data/temp01.dbf'
    SIZE 50M
    TABLESPACE GROUP group1;
    --Add Existing temp tablespace into group by
    alter tablespace temp2 tablespace group group1.
    --we can also assign the temp tablespace group on database level as default temp tablespace.
    ALTER DATABASE <db name> DEFAULT TEMPORARY TABLESPACE group1;
    benefit:- Better I/O
    One sql can use more then one temp tablespace
    5.AWR(Automatic Workload Repository):-
    ================================== AWR is built in Repository and Central point of Oracle 10g.Oracle self managing activities
    is fully dependent on AWR.by default after 1 hr, oracle capure all database uses information and store in AWR with the help of
    MMON process.we called it Memory monitor process.and all these information are kept upto 7 days(default) and after that it automatically purge.
    we can generate a AWR report by
    SQL> @?/rdbms/admin/awrrpt
    Just like statspack report but its a advance and diff version of statspack,it provide more information of Database as well as OS.
    it show report in Html and Text format.
    we can also take manually snapshot for AWR by
    BEGIN
    DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT ();
    END;
    **The STATISTICS_LEVEL initialization parameter must be set to the TYPICAL or ALL to enable the Automatic Workload Repository.
    [oracle@RMSORA1 oracle]$ sqlplus / as sysdba
    SQL*Plus: Release 10.1.0.2.0 - Production on Fri Mar 17 10:37:22 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> @?/rdbms/admin/awrrpt
    Current Instance
    ~~~~~~~~~~~~~~~~
    DB Id DB Name Inst Num Instance
    4174002554 RMSORA 1 rmsora
    Specify the Report Type
    ~~~~~~~~~~~~~~~~~~~~~~~
    Would you like an HTML report, or a plain text report?
    Enter 'html' for an HTML report, or 'text' for plain text
    Defaults to 'html'
    Enter value for report_type: text
    Type Specified: text
    Instances in this Workload Repository schema
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DB Id Inst Num DB Name Instance Host
    * 4174002554 1 RMSORA rmsora RMSORA1
    Using 4174002554 for database Id
    Using 1 for instance number
    Specify the number of days of snapshots to choose from
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Entering the number of days (n) will result in the most recent
    (n) days of snapshots being listed. Pressing <return> without
    specifying a number lists all completed snapshots.
    Listing the last 3 days of Completed Snapshots
    Snap
    Instance DB Name Snap Id Snap Started Level
    rmsora RMSORA 16186 16 Mar 2006 17:33 1
    16187 16 Mar 2006 18:00 1
    16206 17 Mar 2006 03:30 1
    16207 17 Mar 2006 04:00 1
    16208 17 Mar 2006 04:30 1
    16209 17 Mar 2006 05:00 1
    16210 17 Mar 2006 05:31 1
    16211 17 Mar 2006 06:00 1
    16212 17 Mar 2006 06:30 1
    16213 17 Mar 2006 07:00 1
    16214 17 Mar 2006 07:30 1
    16215 17 Mar 2006 08:01 1
    16216 17 Mar 2006 08:30 1
    16217 17 Mar 2006 09:00 1
    Specify the Begin and End Snapshot Ids
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Enter value for begin_snap: 16216
    Begin Snapshot Id specified: 16216
    Enter value for end_snap: 16217
    End Snapshot Id specified: 16217
    Specify the Report Name
    ~~~~~~~~~~~~~~~~~~~~~~~
    The default report file name is awrrpt_1_16216_16217.txt. To use this name,
    press <return> to continue, otherwise enter an alternative.
    Benefit:- Now DBA have more free time to play games.....................:-)
    Advance version of statspack
    more DB and OS information with self managing capabilty
    New Automatic alert and database advisor with the help of AWR.
    6.Active Session History:-
    ==========================
    V$active_session_history is view that contain the recent session history.
    the memory for ASH is comes from SGA and it can't more then 5% of Shared pool.
    So we can get latest and active session report from v$active_session_history view and also get histortical data of
    of session from DBA_HIST_ACTIVE_SESS_HISTORY.
    v$active_session_history include some imp column like:-
    ~SQL identifier of SQL statement
    ~Object number, file number, and block number
    ~Wait event identifier and parameters
    ~Session identifier and session serial number
    ~Module and action name
    ~Client identifier of the session
    7.Misc:-
    ========
    Rename Tablespace:-
    =================
    in 10g,we can even rename a tablespace by
    alter tablespace <tb_name> rename to <tb_name_new>;
    This command will update the controlfile,data dictionary and datafile header,but dbf filename will be same.
    **we can't rename system and sysaux tablespace.
    Bigfile tablespace:-
    ====================
    Bigfile tablespace contain only one datafile.
    A bigfile tablespace with 8K blocks can contain a 32 terabyte datafile.
    Bigfile tablespaces are supported only for locally managed tablespaces with automatic segment-space management.
    we can take the advantage of bigfile tablespace when we are using ASM or other logical volume with RAID.
    without ASM or RAID ,it gives poor response.
    syntax:-
    CREATE BIGFILE TABLESPACE bigtbs
    Flushing Buffer Cache:-
    ======================
    This option is same as flushing the shared pool,but only available with 10g.
    but i don't know, whats the use of this command in prod database......
    anyway we can check and try it on test server for tuning n testing some query etc....
    SQL> alter system flush buffer_cache;
    System altered.
    ++++++++++++++++++
    8.Oracle Internal
    ++++++++++++++++++
    Here is some stuff that is not related with 10g but have some intresting things.
    a)undocumented parameter "_log_blocks_during_backup"
    ++++++++++++++++++++++++
    as we know that oracle has generate more redo logs during hotbackup mode because
    oracle has to maintain the a complete copy of block into redolog due to split block.
    we can also change this behaviour by setting this parameter to False.
    If Oracle block size equals the operating system block size.thus reducing the amount of redo generated
    during a hot backup.
    WITHOUT ORACLE SUPPORT DON'T SET IT ON PROD DATABASE.THIS DOCUMENT IS JUST FOR INFORMATIONAL PURPOSE.
    b)some X$ views (X$messages)
    ++++++++++++++++
    if you are intresting in oracle internal architecture then x$ view is right place for getting some intresting things.
    X$messages :-it show all the actions that a background process do.
    select * from x$messages;
    like:-
    lock memory at startup MMAN
    Memory Management MMAN
    Handle sga_target resize MMAN
    Reset advisory pool when advisory turned ON MMAN
    Complete deferred initialization of components MMAN
    lock memory timeout action MMAN
    tune undo retention MMNL
    MMNL Periodic MQL Selector MMNL
    ASH Sampler (KEWA) MMNL
    MMON SWRF Raw Metrics Capture MMNL
    reload failed KSPD callbacks MMON
    SGA memory tuning MMON
    background recovery area alert action MMON
    Flashback Marker MMON
    tablespace alert monitor MMON
    Open/close flashback thread RVWR
    RVWR IO's RVWR
    kfcl instance recovery SMON
    c)Internal Structure of Controlfile
    ++++++++++++++++++++++++++++++++++++
    The contents of the current controlfile can be dumped in text form.
    Dump Level Dump Contains
    1 only the file header
    2 just the file header, the database info record, and checkpoint progress records
    3 all record types, but just the earliest and latest records for circular reuse record types
    4 as above, but includes the 4 most recent records for circular reuse record types
    5+ as above, but the number of circular reuse records included doubles with each level
    the session must be connected AS SYSDBA
    alter session set events 'immediate trace name controlf level 5';
    This dump show lots of intresting information.
    it also show rman recordes if we used this controlfile in rman backup.
    Thanks
    Kuljeet Pal Singh

    You can find each doc in html and pdf format on the Documentation Library<br>
    You can too download all the documentation in html format to have all on your own computer here (445.8MB)<br>
    <br>
    Nicolas.

Maybe you are looking for

  • Blog page in iweb site not responding or linking like other pages

    Hi This is a new issue for me. I have multiple pages that I created in my iweb site through my personal domain ... studio8films.net All page hyperlinks will work properly, but the BLOG page seems to stall and when I look at the bottom of the window i

  • "Alert : Text contains formatting (see detail screen) "

    Hi everyone! In my service desk transaction monitor, when i click on one particular transaction (this problem doesnt exist with other transactions), it opens up flagging a message "Text contains formatting (see detail screen)". [Message no. COM_TEXT2

  • Useless product.

    I have an ongoing issue with my hp printer (see previous posts). It is not printing under the wireless connectivity, only through the eprint facility, which is hit and miss as I continually have to re enter my hpeprint address for it to function. I h

  • SSRS null values, correct on excel

    Dear All,  I have a problem. i have a sales measure that should return amount values (Currency). I am applying a unit conversion in SSAS.  The problem is that The sales Amount measure is returning correct figures in Excel, but it gives null values in

  • When I click the attachment button firefox freezes and I have to force quit the application every time

    when I click the attachment bar firefox freezes and i have to hit force quit and restart the application