Setup awr generation through script

how can i setup awr report generation through product UI pag?
using oracle 11g enterprise edition.. please help.
if steps provided appreaciated.

Hi,
I think you can use this
Generating the AWR Report
Regards

Similar Messages

  • I have made .indd file with some form fields in it, now haw to read these fields and manipulate its content through script in indesign

    I have made .indd file with some form fields in it, now haw to read these fields and manipulate its content through script in indesign

    It's probably best to ask in the InDesign Scripting forum:
    InDesign Scripting

  • Can you set a layer to "Template" through script?

    Hi there,
         I am creating a script to batch export multiple artboards as SVG, and setting a layer to "Template" will keep my unwanted paths from exporting. I am using Illustrator version 17.1.9(64bit)
    Is there a way to set a layer to "template" through script?
    Thanks!
    Scott

    You are correct on this, if I create a template Action let say called "template layer" I can call that with app.doScript("template layer", "folder"). After testing it does work... on my client where I have the Action, but I have a few other artist who will need to run this script.
    EXAMPLE:
    for (var i = 0; i < app.activeDocument.layers.length; i++)
        app.activeDocument.activeLayer = app.activeDocument.layers[i] ;        
        if(app.activeDocument.layers[i].visible == false){
            app.doScript ("template layer", "NI");
    The only other solution I can think of is putting all non-exportable objects on a layer, and call that layer "nonExport" and select all objects on this layer delete them, then export, then undo this action ... ewwww... sounds messy.
    Cheers,
    Scott

  • Is there way to export a selection to JPEG through script (CS3)

    Hi all,
    Is there way to export a selection to JPEG through script (CS3).
    CS2 has possible method to export a selection to JPEG using the method
    Application.JPEGExportPreferences.ExportingSelection = True. But this method is not supported in CS3.
    Regards,
    Hemi

    Hi Hem,
    http://forums.adobe.com/thread/424774?tstart=30
    regards,
    sudar

  • Hide navigation pane of adobe reader through scripting

    Hi.. I'm looking for a script to hide the navigation pane of the adobe reader through scripting, is there any way I can achieve that?
    my main objective is to restrict user from attaching a file by using navigation pane because I'm already giving buttons to attach a file on the pdf and I want user to attach a file ONLY using buttons on the pdf. Can I achieve this by any other way?
    Thanks in advance.
    Sunaif

    Hi,
    you can hide all panes with this script in the docReady:event.
         event.target.viewState = {overViewMode:1};
    More examples:
    http://thelivecycle.blogspot.com/2010/04/xfa-form-control-view-settings.html

  • Change font type through scripting support.

    Please help me for this scripting support. . I have 100 of PSD with text. Text is brush script. I need to change font as some other font through scripting.

    With the Mail App you cannot change the font.

  • How to load the Employee Images through Script

    Dear All,
    How to load Employee Images into HRMS module through script, Pls provide scripts any body having..
    Thank in advance,
    Hanimi
    Edited by: Hanimi on Jun 7, 2011 10:12 AM

    Hi Hussain,
    Following ctl file is working fine for loading images, But problem is at a time it is loading only 64 rows, pls let me know what i have change in my ctl file for loading all data at a time..
    load data
    infile '/usr/tmp/Images_Data.dat'
    INTO TABLE PER_IMAGES
    append
    FIELDS TERMINATED BY ','
    TRAILING NULLCOLS(
    parent_id,
    table_name constant "PER_PEOPLE_F",
    ext_fname FILLER CHAR(80),
    "IMAGE" LOBFILE(ext_fname) TERMINATED BY EOF,i
    mage_id "PER_IMAGES_S.nextval"
    Thanks,
    Hanimi..

  • How to find out web content files linked in folio through scripting

    Hi all,
    Please suggest me, how to find out web content files linked in folio through scripting.
    Regards,
    Moorthy

    @Moorthy – can you tell us a bit more? By mentioning "folio", I think you are referring to Adobe Digitial Publishing Suite (ADPS or short: DPS). If yes:
    1. Do you want to analyze Folio files *.folio and get the linked web content files?
    2. Or do you want to check an InDesign file with an overlay and check what files are linked as web content?
    3. Or something else?
    Where is your base problem?
    Packaging the InDesign files and copy/relinking the web content files after the packaging process?
    Uwe

  • Pie Chart Animation through Script

    hi,
    i want to animate a pie chart which created dynamically through script.
    please help.
    Thanks

    Hi there
    Not sure how you want to animate your chart but, in the example below the chart is created in code.  I've instansiated a SeriesInterpolate class and set the showDataEffect of the series.  This then aminates the chart when the data changes.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="createChart()" >
        <mx:Script>
            <![CDATA[
                import mx.controls.Button;
                import mx.charts.effects.SeriesInterpolate;
                import mx.charts.series.PieSeries;
                import mx.charts.PieChart;
                import mx.collections.ArrayCollection;
                private var pie:PieChart;
                [Bindable]
                    private var medalsAC:ArrayCollection = new ArrayCollection( [
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 } ]);
                [Bindable]
                    private var medalsAC2:ArrayCollection = new ArrayCollection( [
                { Country: "USA", Gold: 105, Silver:25, Bronze: 15 },
                { Country: "China", Gold: 32, Silver:22, Bronze: 20 },
                { Country: "Russia", Gold: 85, Silver:55, Bronze: 35 } ]);
                private function createChart():void {
                    pie = new PieChart();
                    pie.width = 300; pie.height=300;
                    pie.x = 100; pie.y = 100;
                    pie.dataProvider = medalsAC;
                    // Series interpolate is one type of animation available
                    var si:SeriesInterpolate = new SeriesInterpolate();
                    si.duration = 2000;
                    var ps:PieSeries = new PieSeries();
                    ps.field = 'Gold';
                    ps.setStyle('showDataEffect',si);
                    pie.series = [ps];
                    addChild(pie);
                    var btn:Button = new Button()
                    btn.label = 'ChangeData';
                    btn.x =10; btn.y = 10;
                    btn.addEventListener(MouseEvent.CLICK, changeData);
                    addChild(btn);
                private function changeData(event:MouseEvent):void {
                    pie.dataProvider = medalsAC2;
            ]]>
        </mx:Script>
    </mx:Application>
    Hope this helps you on your way.
    Andrew

  • Change Color Settings through Scripting

    We're having an issue at my work where Photoshiop is frequently losing its Color Settings.  Is there a way to modify these settings through scripting, so I can have it run automatically?  The settings are:
    Working Spaces
    RGB:  sRGB IEC61966-2.1
    Color Management Policies
    RGB: Covert to Working RGB
    Turn off “Ask when opening” for profile mismatches and missing profiles
    Conversion options
    Intent: Perceptual
    Thank you for your help.

    May be one of these will help…? Add to the event manager… You should really be looking at why this happens thou… Change to suit your settings name…
    app.load( File( Folder.appData + 'Adobe/Color/Profiles/Recommended/CoatedFOGRA39.icc' ) );
    app.colorSettings = 'CoatedFOGRA39.icc';

  • Kill Session through Script

    Hi ..
    any one can tell me how to kill session through Script in Oracle Open Script..?

    Do you mean how to stop the current virtual user or stop all the virtual users in the OLT session?
    I previously posted this on how one virtual user can stop itself.
    Re: How to stop single VU, java-code

  • Transform implementation goes wrong when I try transforming a image through script and save the new image using a HTML to canvas plugin.

    Transform implementation goes wrong when I try transforming a image through script and save the new image using a HTML to canvas plugin. The rotation comes up fine, but the origin of the transformation is faulty (compared to other browsers like Chrome & IE)

    A good place to ask advice about web development is at the mozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.

  • How do i transform a layer with maintain aspect ratio through scripting in Photoshop?

    Hi,
         How do i transform a layer with maintain aspect ratio through scripting in Photoshop? I am expecting your reply.
    thanks,
    Rajiv.s

    I don't think your talking apples to apples.  First I do not know of any Maintain Aspect Ratio icon in Photoshop. The only icon I think associated with transform is the anchor point icon in the option bar for transform. I think you may referring to the constrain check box in the image size dialog which you can check when resample is checked. Image size effect all layers in the document and the documents canvas size. The document canvas size will be changed to the values in the images size dialog and all layers will be transformed by percentage the canvas was changes while maintaining the layers position over the canvas and the layers I think may be cropped so only pixels over the canvas remain.
    I do not know if you know that layers can be any size and have aspect ratios different then the documents canvas.
    In your case it sounds like your describing a template that has a canvas size that is 2000px wide be 3000px high a 2:3 portrait aspect ratio.  Your image file has a landscape aspect. If you place that image into your template place would by default transform the image so the image would fit within the 2000px by 3000px canvas size there would be a white border top and bottom.  You could transform that smart object layer to it actual pixels size activeDocument.activeLayer.resize(100,100, AnchorPosition.MIDDLECENTER); then calculate the size you want to transform its height to. By retrieving the canvas size and the layers boundaries. Divide the canvas height pixel size by the layers pixel height size should give you the percentage you need to use. Make sure you set the ruler units to pixels so your working with pixel values for the canvas and layer size values. The resulting layer will be larger then canvas size keeping the anchor point centered will result in the canvas size masking off both sides.  In effect cropping you landscape to a portrait.  Note cropping a image from one orientation to the other changes the composition drastically.
    If your trying to make a composit like collage you may want to look at my Photoshop Collage Toolkit it will fit images to fill a 2000px by 3000px area http://www.mouseprints.net/old/dpr/PhotoCollageToolkit.html
    You could also do centered 2:3 crop that is resized to a 3000px

  • Save .wav file into database through script

    Hi,
    I want to store a .wav file into a database through script. Is that possible to do it through the ccx script?
    Thanks,
    HowYee

    Hi,
    At this moment, script can save the file only to Custom directory of UCCX. It's not possible to save it to external DB.
    Regards
    GP.

  • Barcode printing through script

    Hi,
       How to print a barcode through script
    Best Regards,
    Jeswanth

    There will be font called 3 of 9. You have to install that font. confirm whether u want to run it from forms or u want it in reports

Maybe you are looking for