Help me in getting Script

Hi all,
I am trying to get Script to get the details of below requirment in single shot. any one help me providing these.
Database Name, Database Size, Tablesapce_name, Tablespace_size, Table_name, Table_size,Index_name,Index_size.
Please some one provide me the script where i get abvoe details. It would be appreicate the size would be in BYTES.
For reference.
Server     Database     Space allocated      Schema/Shared components     Space allocated to the Schmea
     Space used for each table     Spce used for all the indexes associated to this table
Thanks

Pleaes any one help me here ...

Similar Messages

  • Can anyone help me write a script that would click "get info" and then "enter" on each movie in my itunes library? I am asking because my itunes 11 repeatedly loses the artwork to my movies in my itunes library.

    Can anyone help me write a script that would click "get info" and then "enter" on each movie in my itunes library? I am asking because my itunes 11 repeatedly loses the artwork to my movies in my itunes library. I can restore the artwork (and make my apple tv see the movie exists as well) by going into the movie library and clicking on each movie by hand, slecting get info, and then selecting enter. Now doing this 10 times in 20 days was fun and all BUT I would really like to automate the process so everytime itunes screws it up I can fix it easier.
    I saw this example of an itunes script that restores artwork for music
    tell application "iTunes" set theSelection to selection repeat with i from 1 to count of theSelection tell (item i of theSelection) set artworkCount to count of artwork repeat artworkCount times set theArtwork to data of artwork 1 delete artwork 1 set data of artwork artworkCount to theArtwork end repeat end tell end repeat end tell
    but I need to tweak this to fit my needs for simply clicking the "get info" button and "enter" in the movie library rather than all the stuff this guy has listed. Any ideas or help on writing this? Thanks.

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • Plz help me to get : drkorean.sql script

    Can any one please help me to get following script. My migration is withheld becuase of this script.
    drkorean.sql

    Are you looking for help on EBS? there is different division for that.
    are you looking for the script.. drkorean.sql --> *$ORACLE_HOME/ctx/sample/script/drkorean.sql* ?
    check this link as well
    http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&ved=0CC4QFjAC&url=http%3A%2F%2Fgavinsoorma.com%2Fwp-content%2Fuploads%2F2009%2F07%2F10g-post-upgrade-steps_app_database.doc&ei=NyjiTv2hCqOJsQLgh9WJBg&usg=AFQjCNGnjWnEMU_19Ow0rPsFz1NoXt__dQ&sig2=kAoxmc6TTtE6P1afx-RUxQ
    Edited by: CKPT on Dec 9, 2011 8:57 PM

  • When trying to creat a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem...

    Question
    When trying to create a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem?I do not have any installed plugins....at least none that I know of.....remember I am a new user......Basically, the desktop icon is not going directly to the Mozilla FF to get me to the web site I need to go to.....FF works when I use the Mozilla FF icon.....just not the icons I create.....THANKS!!! I have also tried reinstalling FF and get the same results.....HELP!!!

    The address beginning with file:/// denotes a saved file (local file). The file may not be present. You can try dragging the site icon of this page on the left edge of the location (Address) bar and release it on the desktop. Please try opening it. If it still shows an error it could be a problem with the system's zone permissions. You can try setting each zone in the Windows Control Panel or IE > '''Internet Options''' > '''Security''' tab to '''Default Level'''.

  • Help with first Adobe Script for AE?

    Hey,
    I'm trying to create a script that will allow me to set a certain number of layer markers at an even interval to mark out a song. Could someone help me troubleshoot this script? I've been working on it for ages now, and I'm about to snap. I've basically gone from HTML and CSS, to javascript and Adobe scripting in the past few hours, and I cannot figure this out for the life of me.
    I want to create a dialog with two fields, the number of markers to place, and the tempo of the song. Tempo is pretty simple, its just the number of beats per minute. The script is meant to start at a marker that I have already placed, and set a new marker at incrementing times. Its mainly to help me see what I'm trying to animate too, even if the beat is a little hard to pick up every once in a while.
    Also, is there a better way to do this? This script will help me in the long run because I will need to do this pretty often, but I'm wondering if there was something that I could not find online that would have saved me these hours of brain-jumbling?
    Thank you very much for any help you can offer.
        // Neo_Add_MultiMarkers.jsx
        //jasondrey13
        //2009-10-26
        //Adds multiple markers to the selected layer.
        // This script prompts for a certain number of layer markers to add to the selected audio layer,
        //and an optional "frames between" to set the number of frames that should be skipped before placing the next marker
        // It presents a UI with two text entry areas: a Markers box for the
        // number of markers to add and a Frames Between box for the number of frames to space between added markers.
        // When the user clicks the Add Markers button,
        // A button labeled "?" provides a brief explanation.
        function Neo_Add_MultiMarkers(thisObj)
            // set vars
            var scriptName = "Neoarx: Add Multiple Markers";
            var numberOfMarkers = "0";
            var tempo = "0";
            // This function is called when the Find All button is clicked.
            // It changes which layers are selected by deselecting layers that are not text layers
            // or do not contain the Find Text string. Only text layers containing the Find Text string
            // will remain selected.
            function onAddMarkers()
                // Start an undo group.  By using this with an endUndoGroup(), you
                // allow users to undo the whole script with one undo operation.
                app.beginUndoGroup("Add Multiple Markers");
                // Get the active composition.
                var activeItem = app.project.activeItem;
                if (activeItem != null && (activeItem instanceof CompItem)){
                    // Check each selected layer in the active composition.
                    var activeComp = activeItem;
                    var layers = activeComp.selectedLayers;
                    var markers = layers.property("marker");
                    //parse ints
                    numberOfMarkers = parseInt (numberOfMarkers);
                    tempo = parseInt (tempo);
                    // Show a message and return if there is no value specified in the Markers box.
                    if (numberOfMarkers < 1 || tempo < 1) {
                    alert("Each box can take only positive values over 1. The selection was not changed.", scriptName);
                    return;
                    if (markers.numKeys < 1)
                    alert('Please set a marker where you would like me to begin.');
                    return;
                    var beginTime = markers.keyTime( 1 );
                    var count = 1;
                    var currentTime = beginTime;
                    var addPer = tempo/60;
                    while(numberOfMarkers < count)
                    markers.setValueAtTime(currentTime, MarkerValue(count));
                    currentTime = currentTime + addPer;
                    if (count==numberOfMarkers) {
                        alert('finished!');
                        return;
                    else{
                        count++;
                app.endUndoGroup();
        // Called when the Markers Text string is edited
            function onMarkersStringChanged()
                numberOfMarkers = this.text;
            // Called when the Frames Text string is edited
            function onFramesStringChanged()
                tempo = this.text;
            // Called when the "?" button is clicked
            function onShowHelp()
                alert(scriptName + ":\n" +
                "This script displays a palette with controls for adding a given number of markers starting at a pre-placed marker, each separated by an amount of time determined from the inputted Beats Per Minute (Tempo).\n" +
                "It is designed to mark out the even beat of a song for easier editing.\n" +
                "\n" +
                "Type the number of Markers you would like to add to the currently selected layer. Type the tempo of your song (beats per minute).\n" +           
                "\n" +
                "Note: This version of the script requires After Effects CS3 or later. It can be used as a dockable panel by placing the script in a ScriptUI Panels subfolder of the Scripts folder, and then choosing this script from the Window menu.\n", scriptName);
            // main:
            if (parseFloat(app.version) < 8)
                alert("This script requires After Effects CS3 or later.", scriptName);
                return;
            else
                // Create and show a floating palette
                var my_palette = (thisObj instanceof Panel) ? thisObj : new Window("palette", scriptName, undefined, {resizeable:true});
                if (my_palette != null)
                    var res =
                    "group { \
                        orientation:'column', alignment:['fill','fill'], alignChildren:['left','top'], spacing:5, margins:[0,0,0,0], \
                        markersRow: Group { \
                            alignment:['fill','top'], \
                            markersStr: StaticText { text:'Markers:', alignment:['left','center'] }, \
                            markersEditText: EditText { text:'0', characters:10, alignment:['fill','center'] }, \
                        FramesRow: Group { \
                            alignment:['fill','top'], \
                            FramesStr: StaticText { text:'Tempo:', alignment:['left','center'] }, \
                            FramesEditText: EditText { text:'140', characters:10, alignment:['fill','center'] }, \
                        cmds: Group { \
                            alignment:['fill','top'], \
                            addMarkersButton: Button { text:'Add Markers', alignment:['fill','center'] }, \
                            helpButton: Button { text:'?', alignment:['right','center'], preferredSize:[25,20] }, \
                    my_palette.margins = [10,10,10,10];
                    my_palette.grp = my_palette.add(res);
                    // Workaround to ensure the editext text color is black, even at darker UI brightness levels
                    var winGfx = my_palette.graphics;
                    var darkColorBrush = winGfx.newPen(winGfx.BrushType.SOLID_COLOR, [0,0,0], 1);
                    my_palette.grp.markersRow.markersEditText.graphics.foregroundColor = darkColorBrush;
                    my_palette.grp.FramesRow.FramesEditText.graphics.foregroundColor = darkColorBrush;
                    my_palette.grp.markersRow.markersStr.preferredSize.width = my_palette.grp.FramesRow.FramesStr.preferredSize.width;
                    my_palette.grp.markersRow.markersEditText.onChange = my_palette.grp.markersRow.markersEditText.onChanging = onMarkersStringChanged;
                    my_palette.grp.FramesRow.FramesEditText.onChange = my_palette.grp.FramesRow.FramesEditText.onChanging = onFramesStringChanged;
                    my_palette.grp.cmds.addMarkersButton.onClick    = onAddMarkers;
                    my_palette.grp.cmds.helpButton.onClick    = onShowHelp;
                    my_palette.layout.layout(true);
                    my_palette.layout.resize();
                    my_palette.onResizing = my_palette.onResize = function () {this.layout.resize();}
                    if (my_palette instanceof Window) {
                        my_palette.center();
                        my_palette.show();
                    } else {
                        my_palette.layout.layout(true);
                else {
                    alert("Could not open the user interface.", scriptName);
        Neo_Add_MultiMarkers(this);

    You should ask such questions over at AEnhancers. I had a quick look at your code but could not find anything obvious, so it may relate to where and when you execute certain functions and how they are nested, I just don't have the time to do a deeper study.
    Mylenium

  • I am getting script errors on startup - Script: chrome://global/content/bindings/browser.xml:194 WHY?

    The last couple of days I have been getting script errors on startup - Script: chrome://global/content/bindings/browser.xml:194 ,
    I am also getting shutdown errors when I power down "end program" types including sgtray.exe, hkcmd.exe, directcd.exe, msascui.exe, d3d9window.exe,
    Some of these are associated with programs I use but have not caused problems previously.

    This post can help you with your problem : https://support.mozilla.org/en-US/kb/warning-unresponsive-script
    Hope it helps :)

  • Help - I'm getting errors ORA-06502:and ORA-01002: at runtime

    Help
    I am getting the following errors at runtime and need some isdeas on what to check:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "OWB_RUNTIME.WB_RT_MAPAUDIT", line 1736
    ORA-06512: at "OWB_RUNTIME.WB_RT_MAPAUDIT", line 2625
    ORA-06512: at "OWB_TARGET.MAP_BSL_PLACEMENT_FACT2B", line 1148
    ORA-01002: fetch out of sequence
    ORA-02063: preceding line from BASIL@LOC_TARGET_NEW_LOC_BASIL_SOURC
    ORA-06512: at "OWB_TARGET.MAP_BSL_PLACEMENT_FACT2B", line 1457
    ORA-06512: at "OWB_TARGET.MAP_BSL_PLACEMENT_FACT2B", line 3458
    ORA-06512: at line 1
    My Mapping is a fact recording enrolments in courses (located in my main target database - oracle 9i)
    joining with an equi-join to a table that contains an audit of all changes to the enrolment (in my source database - Sybase 12.5)
    then updating two fields in a tabke that is a second definition of the first fact
    The equi join uses the key to the enrolment table, plus a transaction type to identify only the creation of the record
    Between the join and the update of the table one field is going thru a trim (converting char to varchar2) then an expression that sets the value to "not_supplied" for cases where the value was null.
    The other field is a date (from sybase datetime to oracle Date)
    (they are the user that created the enrolment and the date the enrolment was actioned)
    I created this mapping by copying another mapping that does pretty much the same thing, deleting the join and table it was joining to and adding the audit table and new join.
    Both mapping deploy fine with no warnings, the original executes fine the variation gives the errors above.
    I have tried removing one then the other of the columns I am updating. (the same errors occur)
    I am about to re-write the mapping from scratch, but can anyone guess what is wrong with it ? (I'm using OWB 9.2.0.2.8)

    Thanks for the suggestion
    There are no "char(32767)"s in the package - altho there are "varchar2(32767)"s
    I have tried a variotion on the script, outputting the result to a new table instead of updating the enrolment - which ran fine so the error is in the update.
    I tried adding a step using the result in the temp table to update the enrolment table - and got my errors again. So there is something funny in my data. Nothing obvious shows.
    The full temp table contains 745292 records - when it failed 150 records had been written.
    I note that although I had expected only to find one record per enrolment, there are some where there are two (@#$%!! source system writing two "insert" audit records) - could my problem be that I am updating a record previously updated - where do I set the script to commit as it goes?
    Sandra

  • Help wanted for modifying script

    This is a new request following an answer from an earlier thread.
    I have got written permition from Steve Wareham to use his script, and get it modifyed to suit my needs. I offered him to do the job for me, but he asked me to pass it on. I don't know anything about scripting, so I would like someone to do the job for me.
    The script is this one from the earlier discussion no. 5799917, kindly modified and posted by Vandy88: http://forums.adobe.com/message/5799917#5799917
    As mentioned in the end, I would like to recieve help on having the script modified to have another option in the dialogbox "Perform operation on" where I can chose a page range for the script to be affecting?
    ie: From page ____ to page ____ .
    I want to use this on long documents with step-by-step instructions, where I sometimes need to remove a step in the middle, and therefore need the numbers changed for the rest of the document. The textboxes with numbers are using Paragraph Styles and are not linked. Due to other reasons it is not a solution to just link the textflow.
    I will pay a reasonable fee for help on this. Please include an estimate on the cost for re-scripting this.
    It needs to work on InDesign CS6 (IE version) and preferable on CC too.

    This is a new request following an answer from an earlier thread.
    I have got written permition from Steve Wareham to use his script, and get it modifyed to suit my needs. I offered him to do the job for me, but he asked me to pass it on. I don't know anything about scripting, so I would like someone to do the job for me.
    The script is this one from the earlier discussion no. 5799917, kindly modified and posted by Vandy88: http://forums.adobe.com/message/5799917#5799917
    As mentioned in the end, I would like to recieve help on having the script modified to have another option in the dialogbox "Perform operation on" where I can chose a page range for the script to be affecting?
    ie: From page ____ to page ____ .
    I want to use this on long documents with step-by-step instructions, where I sometimes need to remove a step in the middle, and therefore need the numbers changed for the rest of the document. The textboxes with numbers are using Paragraph Styles and are not linked. Due to other reasons it is not a solution to just link the textflow.
    I will pay a reasonable fee for help on this. Please include an estimate on the cost for re-scripting this.
    It needs to work on InDesign CS6 (IE version) and preferable on CC too.

  • Am getting script errors. js/ff_browser:28. how can this be resolved

    have been getting script errors. js/ff_browser:28.
    it only happens with firefox. please advise how this can be resolved.

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • My phone wont let me download anything even free stuff or update.it keep saying something wrong with my billing info so i fix it but still cant download.I signed out sign back in still nothing please help i'm getting angry

    My phone wont let me download anything even free stuff or update.it keep saying something wrong with my billing info so i fix it but still cant download.I signed out sign back in still nothing please help i'm getting angry

    If it says your billing info is wrong that means that your credit card issuer is refusing to approve your account. You will have to solve the problem with your bank or credit card company.

  • How can I create an active table of content in the sidebar to help readers to get to the section?

    How can I create an active table of content in the sidebar to help readers to get to the section?

    You can create bookmarks with Adobe Acrobat.

  • Hi all, can someone help me in getting last login date of a user in CQ5 please?

    Hi all, can someone help me in getting last login date of a user in CQ5 please?

    CQ is REST based and does not have the concept of session. So there is no feature to track login or logout details.  Most of our customers use some kind of central authentication Ex- SSO hence no need arises to have such functionality built in.  However if needed you have the ability to implement such at a project level solution. Ex:- custom login modules or auth-handler by taking project specific constraints and requirements into account

  • I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid

    I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid of this.

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • Can anyone help me with getting the best setting for me system

    can anyone help me with getting the best setting for me system on cpufan it says my temp is 38c but on corecentre it says 42c can anyone help get my system overclocked any more but keeping it stable as well thanx in advance for the help  

    my corecenter temp sometimes says im at 60 cel at idle....and i have the most recent update...i would rely on speedfan for temp control...core center seems to always read 3 degrees higher than speedfan on my pc....
    i wouldnt be too concerned...those temps are pretty low to begin with.

  • I cannot get i-tunes anymore. I tried the i-download. Still no help. I get an error message that reads  The file "itunes Library itl" cannot be read because it was created by a newer version of iTunes. What can I do?   tunes down load

    I cannot get i-tunes. I tried the download, but no help. I get an error message The file "iTunes library itl" cannot be read because it was created by a newer version of iTunes. Any suggestions?

    If you still have an issue you may have to see about using the iTunes version (application) included with Snow Leopard 10.6 from the installer or an another one if available online, and see if that will install.
    Sometimes you may have uninstall the bits left in your system by the earlier (or later) iTunes installers; as they all leave a trace and these can stop a different version of iTunes from being installed.
    Not sure if the following site/link will tell the method...
    •Apple - Support - iTunes - install & update:
    http://www.apple.com/support/itunes/install/
    •Troubleshooting iTunes installation on Mac OS X:
    http://support.apple.com/kb/HT2311
    Good luck & happy computing!
    ps: i see you resolved this issue. it's magic!

Maybe you are looking for

  • How to have dotted box in Smartform

    I wish to create a dotted box something like      |_ _ _ _ _|    this in Smartform Any ideas how to go about Message was edited by:         gagan kasana

  • Decimal places in Purchase orders

    Hello, currently, when typing in the unit price in a purchase order, we can only use 2 decimal places. We need to be able to use 4 decimal places for materials such as paper, which we buy at 0,028 € (example). Can this be modified through customizing

  • Xy graph active plot property settings not working

    I set the xy graph plot properties manually and they appear to work. However, when I try to set them in the program they revert to the manual settings. What's going on? PaulG. "I enjoy talking to you. Your mind appeals to me. It resembles my own mind

  • Issue in BADI  BBP_PGRP_FIND

    Hi SRM Gurus, How can i get the Shopping Cart Item details,Company Code and Product Category in the BADI 'BBP_PGRP_FIND'?. I checked with the BADI Interfaces and i could find only Product Category. My Exact Requirement is to get the Approvers(Maintai

  • Events in ALV block list

    Hi, Im using ALV block list to display the output. In that one column is highlighted using HOT SPOT. I have to capture that event and display the information as pop-up. can anyone tell me how to do this? Thanks, Amal