How to add and remove storage from ASM at the same time?

Scenario:
I want to drop some disks from asm
1- Add disk to asm -----> rebalance
2- drop disk from asm ----> rebalance
Is there anyway to make this process faster instead of going to rebalancing twice?

I think you could try something like this.....
Add with a power limit of zero and then drop the disks with a powerlimit of 11.
alter system set ASM_POWER_LIMIT=0;
select * from v$asm_operation;
alter diskgroup DBFILE01_GRP
add disk 'ORCL:DB0009', 'ORCL:DB0010', 'ORCL:DB0011', 'ORCL:DB0012';
alter diskgroup DBFILE01_GRP drop disk DB0001, DB0002, DB0003, DB0004;
alter diskgroup DBFILE01_GRP rebalance power 11;
select * from v$asm_operation;

Similar Messages

  • App to record screen and capture video from camera at the same time?

    For the love of God, why is it 2013 (the age of YouTube and such), and I can't find an app that lets me record my hdv camera (canon hv30) AND the computer screen at the same time? I make piano tutorials on YouTube and my current workflow is so horrendous that I havent even made a video in almost a year. What should take 30 minutes, takes 5 hours. Here is my current shi**y workflow.
    1. I use iMovie Hd to capture hdv camera
    2. I use QuickTime X to capture the screen (i record a virtual keyboard display that lights up the keys I am playing)
    3. I have to use a DAW to record the piano sound and my voice since iMovie hd doesnt have the ability to record audio from a separate source than the camera, for some **** reason. (opening up and setting up all three programs takes about 8 minutes)
    4. I press "record" on all three programs as quickly as possible to make syncing easier. (my videos are about 7 minutes long, so this part takes about 7 minutes)
    5. After I record all 3 things, I export the video from iMovie into a friendlier format to edit in another video editor since iMovie doesmt have the ability to overlay the screencap over another video (****). (25 minutes)
    6. I render the audio I recorded in the DAW into a wave file. (another 10 minutes)
    7. I import the camera footage, the screen cap, and the audio file into the video editing program. (another 5-10 minutes)
    8. I sync the audio and video clips since they were recorded separately (2 minutes)
    9. I do all the edits (add intro, cut unwanted footage etc) (10 minutes)
    10. I re-render the footage into a final video file. (about 30 minutes)
    This is fu*****g ridiculous. There is no ONE program that does everything I need, just diferrent programs that have a feature I need, but is missing another. For example, a program called "screen flow" let's me record the screen, a camera, and an external audio source all at once, but for some frisking reason, it doesmt support "hdv" cameras (basically anything that records HD). Then, there are programs that record HD, but can't record the screen at the same time. This is only an issue since I am on a Mac, since apparently there are countless of programs that can do all the things I need at once (so I don't have to resync, and render things like 3 times each) and many of them are even free (such as xsplit) but they only work in Windows. For the love of God why? It's 2013 for christs sakes. It shoudnt take me 5 hours to make a 7 minute video. If it wasmt for this turn-off, I would have thousands of piano tutorials on yourtube already.
    So my question. Is there an app that fixes my workflow and allows me to do all the things I need in one program? If there isn't such a program, why isn't there one?

    maybe you have outgrown or just need to look at the "pro" applications instead.
    Other pro audio applications
    https://discussions.apple.com/community/professional_applications/other_pro_audi o
    http://www.apple.com/support/logicexpress/
    http://www.apple.com/support/logicstudio/
    http://www.apple.com/support/finalcutstudio/
    At the least, check out their communities.

  • How to Add and Remove Apps from Launchpad?

    I have noticed that I have apps missing in launchpad that I do have in my apps folder.
    How do I add these to launchpad.
    On the flip side, then how can I remove apps from launchpad that I hardly ever use?

    Did you check the second page of Launchpad?
    Click the second white dot in the bottom middle of the Launchpad screen.
    Hope  information from these articles helps.
    http://support.apple.com/kb/PH4524
    http://www.macobserver.com/tmo/article/how_to_get_the_most_from_the_macs_launchp ad
    Best.

  • How to mask and format an input field at the same time?

    Dear Experts,
    I need to have an input field, which has the following behavior:
    1. The input field accepts only number, i.e. characters other than number are ignored (not displayed on the text field).
    2. The number is automatically formatted to ###,###,### as the user enter the number.
    Example as the user enter 1-2-3-4-5-6-7, the sequence of number displayed in the text field is:
    1
    12
    123
    1,234
    12,345
    123,456
    1,234,567
    I have done the following:
    import java.awt.*;
    import javax.swing.*;
    import java.text.*;
    import javax.swing.text.*;
    class FormattedTFDemo {
         NumberFormat cf;
         JLabel jlab;
         JFormattedTextField jftfSalary;
         JFormattedTextField jftfEmpID;
         JButton jbtnShow;
         public FormattedTFDemo() {
              JFrame jfrm = new JFrame("JFormattedTextField");
              jfrm.getContentPane().setLayout(new FlowLayout());
              jfrm.setSize(240, 270);
              jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              try {
                   MaskFormatter mf = new MaskFormatter("###,###,###");
                   jftfEmpID = new JFormattedTextField(mf);
              } catch (ParseException exc){
                   System.out.println("Invalid Format");
                   return;
              jftfEmpID.setColumns(15);
              cf = new DecimalFormat("###,###,###");
              jftfSalary = new JFormattedTextField(cf);
              jftfSalary.setColumns(15);
              jftfSalary.setValue(new Integer(7000));
              jfrm.getContentPane().add(new JLabel("First field"));
              jfrm.getContentPane().add(jftfEmpID);
              jfrm.getContentPane().add(new JLabel("Second field"));
              jfrm.getContentPane().add(jftfSalary);
              jfrm.setVisible(true);
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        new FormattedTFDemo();
    }The "First field" adopts no. 1 behavior, i.e. it does not allow any character other than numbers, but the "," are always displayed and the number displayed as I enter 1-2-3-4-5-6-7 are:
    1 , ,
    12 , ,
    123, ,
    123,4 ,
    123,45 ,
    123,456,
    123,456,7
    which is not according to behavior no. 2
    The "Second field" displayed 1,234,567 only after the focus left the text field and not while typing. Moreover, characters other than number can still be displayed and only rejected after the focus left the text field.
    I need a guide of what text field and what filter / format / mask I should use. Am I correct to use JFormattedTextField? Is the only way to accomplish this by using JTextField and create my own PlainDocument for the textfield, where
    I rebuild the displayed output after each character is entered?
    Thanks for any advice,
    Patrick

    So exactly what do you want the user to put in? and what do you want to see?
    I need to have an input field, which has the following behavior:
    1. The input field accepts only number, i.e. characters other than number are ignored (not displayed on the text field).
    2. The number is automatically formatted to ###,###,### as the user enter the number.
    Example as the user enter 1-2-3-4-5-6-7, the sequence of number displayed in the text field is:
    1
    12
    123
    1,234
    12,345
    123,456
    1,234,567The user should type only numbers and when he types other than numbers, the field ignore it.
    What I want to see, as the user, for example, types 1-2-3-4-5-t-6-7 is:
    1
    12
    123
    1,234
    12,345
    <beep / ignore> (because t is invalid)
    123,456
    1,234,567
    Thus, I need a guide of what swing components should I use to accomplish this task. If you can give me the code, that will be perfect.
    Hope you can advise me,
    Patrick

  • How do I stop multiple videos from loading at the same time and playing while looking at any article on google news?

    Multiple videos load at once and start playing creating sound mess and sucking up ram. This is happening on Firefox on both Windows 8 and Windows 7 machines. This started about three weeks ago. I have run Avast, malwarebytes, hitman pro, and other malware killers. A new youtube setting appeared in settings, I have unticked everything. The videos do not appear to be youtube based.

    You could enable plugins click-to-play. Also, set the plugins to Ask to Activate rather than Always Activate. I also recommend the extension "Click to Play per-element".
    https://addons.mozilla.org/en-US/firefox/addon/click-to-play-per-element/

  • How do I add and remove mp3s from my iPhone?

    I've forgotten again how to add and remove mp3s from my iPhone.  Can someone please remind me?  I am an iTunes subscriber using a PC running Windows 7 and iTunes 11.1.

    dj003 wrote:
    Where are all these places, and how do I do it, step-by-step?  I really have zero understanding at all.  I know how to drag-and-drop mp3s onto my Sandisk mp3 player.  It's basically one-step.  I can't figure out how this is done in iTunes for an iPhone.
    Make sure you have iTunes 11.1.1 installed on your computer.
    Plug your iPhone into your computer.
    Open iTunes. Create a new Playlist and name it whatever you want. I use iPhone Sync.
    Go to your Music Library, click and drag the music you want into your new Playlist.
    Click on your iPhone along the top right. Click on Music and select Sync Music and choose just the new Playlist.
    Click on the Sync button on the bottom right of the iTunes screen.

  • How am I able to add and remove people from a group message?

    How am I able to add and remove people from a group message?

    You'd need to start a new thread.

  • Is there any API to add and remove certs from acrobat trusted identities?

    Is there any API to add and remove certs from acrobat trusted identities? if this is not possible any work around for this. Please help me

    No, there is not – that would be a security concern.

  • Add and Remove Publishers from Replication Monitor using T SQL

    Is there any possibility to add an Publishers from Replication Monitor using T SQL.i am trying to configure the replication using T SQL..i can create all other steps but didn't find any way to add publisher to the replication monitor..kindly suggest..

    Hi Snehasis,
    Tom is correct, there is no T-SQL command to add a publisher to Replication Monitor.  However, the server from which you launch Replication Monitor will automatically be added to Replication Monitor if it is a Publisher.  Also, you can add additional
    Publishers using the Add Publisher dialog.
    This is covered in
    Add and Remove Publishers from Replication Monitor
    Brandon Williams (blog |
    linkedin)

  • Yesterday, I downloaded I.O.S. 8 to both my iPhone and my wife's iPad at the same time.  She wants I.O.S. 8 removed.  How do I remove it from both devices?  I am willing to resort to my old IOS7.1.2.

    Yesterday, I downloaded I.O.S. 8 to both my iPhone and my wife's iPad at the same time.  She wants I.O.S. 8 removed.  How do I remove it from both devices?  I am willing to resort to my old IOS7.1.2.

    Sorry...downgrading is not supported.

  • Phone and my husbands iphone ring at the same time when only one of us is being called. How can I stop this from happening?

    Both my iphone and my husbands iphone ring at the same time when only one of us is being called. How can I stop this from happening?

    This post has already been answered. Why are you plugging your own site with an answer that has already been given? Not to mention that the information you are handing out is incorrect. There is no bug, there is no patch, and no one needs to delete any email addresses. If you take the time to read the posts with the correct answers, you will see that the solution is totally different than the erroneous one you have posted.
    GB

  • I was backing up my iPhone and importing photos onto iPhoto at the same time , then suddenly it says no more space available (i had 48GB before i do this and now i have 18GB) i can't find the back up or the photo anywhere , how can i delete them ?

    i was backing up my iPhone and importing photos onto iPhoto at the same time , then suddenly it says no more space available (i had 48GB before i do this and now i have 18GB) i can't find the back up or the photo anywhere , how can i delete them ? i dont need the pictures or the back ups , i want to delete them but they are not there

    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then reboot. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown asBackups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Reboot and it should go away.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install ODS in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders, sorted by size with the largest at the top. It may take a few minutes for ODS to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with ODS, quit it and also quit Terminal.

  • I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    Try one of these extensions for multiple cookie sessions.
    Multifox: <br />
    http://br.mozdev.org/multifox/ <br />
    Cookie Swap extension: <br />
    https://addons.mozilla.org/firefox/3255/ <br />
    Cookie Pie extension: <br />
    http://www.nektra.com/oss/firefox/extensions/cookiepie/

  • HT4796 Hi, I've just bought a new Macbook Pro and started migrating from PC but the remaining time is about 70 hours long, I just wanted to know if that timing is normal and if not, does leaving running my MacBook that time can affect it?

    Hi, I've just bought a new Macbook Pro and started migrating from PC but the remaining time is about 70 hours long, I just wanted to know if that timing is normal and if not, does leaving running my MacBook that time can affect it?

    70 hours...  no, it's not normal but it can't hurt your Mac to be running for that amount of time.
    Try this support article > OS X Mavericks: Transfer your info from a PC

  • HT203167 I downloaded two movies from itunes at the same time (both free digital copies from a dvd) and when they finished downloading... they disappeared. I've not been able to re-download them or find them.. anywhere. Any suggestions for tracking them d

    I downloaded two movies from itunes at the same time (both free digital copies from a dvd) and when they finished downloading... they disappeared. I've not been able to re-download them or find them.. anywhere. Any suggestions for tracking them down?

    If you downloaded them on your computer's iTunes then they should have gone into the Movies part of your iTunes library, if on a device (iPad, iPhone or iPod Touch) then into the Videos app - they haven't appeared there ?
    If you downloaded on your PC and they don't show in the Movies section then you could try searching for them by name (or part of their name) via windows explorer and see if that finds them. Or if you downloaded them on a device and they aren't in the Videos app then have you got a film age rating set in Settings > General > Restrictions that is hiding them, and if not can you find them via the device's spotlight search screen (swipe your first homescreen to the right) ?

Maybe you are looking for

  • Communicat​​e between C# window applicatio​​n and Labview.

    Hello all! Now what I shall do is to use both labview application and C# window application for my project. Basically it's that the state change in labview triggers an event in C#. As a short description, my labview application receives UDP message f

  • Volume anamorphosis correction?

    Hello! I'm enjoying the LR4 Beta, great work on a wonderful piece of software. I own DXO Optics and was curious if we might be able to look forward someday to being able to make volume anamorphosis correction (recover cylinders) directly within Light

  • Why does app mgr "fail to install" when it tries to update itself?

    I have reinstalled the app mgr, as instructed on the CC web site, as it was supposedly corrupted (although it worked fine a couple of hours ago).  Whenever I try to download PS CC, the app mgr goes through trying to update itself and "fails to instal

  • Ct_bind issue in ASE15.7

    Hi All, We upgraded our sybase version from 12 ->15.7. After  upgrade, we are getting below bind issue during ct_bind call  through our c routine eg-          ct_bind(dbproc->cmd,column,temp_ptr,varaddr,NULL,null_ind); in above call ct_bind is assign

  • Buffer pool Hit% more than 100%

    In one of my AWR Report under tab Instance Efficiency Percentages (Target 100%) , My Buffer Hit % is showing as 102.01% . I am not able to understand how can this possible to more than 100%. Please revert.