How to move or migrate whole directories between ASM disk groups?

Hello everyone!
I'm playing around with Oracle ASM and Oracle Database (11g R1), I'm a student. This is just for testing purposes.
Computer specifications are:
Processor: Intel Pentium 4 HT 3.00 Ghz.
RAM Memory: 2 GB.
Hard Disk: 250 GB
O.S.: Windows XP Professional Edition SP 2.
I installed Oracle ASM, I created an ASM disk group (+FRA), I installed Oracle Database and I created a testing database. The database is working properly over the ASM disk group. Days ago, I got help about the initialization parameters DB_CREATE_FILE_DEST, DB_CREATE_ONLINE_LOG_DEST_1, DB_CREATE_ONLINE_LOG_DEST_2 and DB_RECOVERY_FILE_DEST, based on their function, I created another 3 ASM disk groups (+FILES, LOG1, LOG2). Currently, the four initialization parameters are pointing to its corresponding ASM disk group. As you can deduce, at the installation moment of the Oracle Database I used the ASM disk group "+FRA" and inside it were created the directories: CONTROLFILE, DATAFILE, ONLINELOG, PARAMETERFILE, TEMPFILE and the SPFile.
My point is I wanna move or migrate the directories DATAFILE, PARAMETERFILE, TEMPFILE and the SPFile to "+FILES", ONLINELOG and CONTROLFILE to "+LOG1" and "+LOG2", this way, the ASM disk group "+FRA" will contain the Flash Recovery Area only. What is the procedure to do this?
Thanks in advance!

user1987306 wrote:
Hello everyone!
My point is I wanna move or migrate the directories DATAFILE, PARAMETERFILE, TEMPFILE and the SPFile to "+FILES", ONLINELOG and CONTROLFILE to "+LOG1" and "+LOG2", this way, the ASM disk group "+FRA" will contain the Flash Recovery Area only. What is the procedure to do this?
Thanks in advance!
Hi,
There are couple of approaches you can use, here is some of them
- To move datafile, start the database in mount state
RMAN > copy datafile '+FRA/xxx' to '+FILES1';
SQL > alter database rename file '+FRA/xxx' to '+FILES1/xxx';
- To move tempfile
SQL > alter tablespace TEMP add tempfile '+FILES1' SIZE 10M;
SQL > alter database tempfile '+FRA/xxx' drop;
- To move onlinelog
SQL > alter database add logfile member '+LOG1' to group 1;
SQL > alter database add logfile member '+LOG2' to group 1;
SQL > alter database drop logfile member '+FRA/xxx';
- To move controlfile
SQL > restore controlfile to '+FILES1' from '+FRA/xxx';
update the spfile to reflect new location of controlfile
Cheers

Similar Messages

  • Moving datafles between ASM disk groups?

    Does anyone know the proper process to move a datafile to a different ASM disk group?
    For example, I would like the TEMP and UNDOTBS01 to be in their own ASM disck groups separate from SYSTEM. Right now everything is in one ASM disk group. An argument could be made for such simplicity. However, is it a total nightmare to move things around amongst ASM disk groups to further eliminate disk contention beyond just ASM mirroring everything in one huge disk group?
    Thanks for any help!

    There is only one ASM instance running.
    These are not datafiles any more.
    ASMCMD> cp ARCHLOG01/ERPBF/DATAFILE/APPS_TS_ARCHIVE.305.748450671 ERPBF/ERPBF_OLD_BACKUP/DATAFILE
    copying ARCHLOG01/ERPBF/DATAFILE/APPS_TS_ARCHIVE.305.748450671 -> ERPBF/ERPBF_OLD_BACKUP/DATAFILE/APPS_TS_ARCHIVE.305.748450671
    ASMCMD-08016: copy source->'+ARCHLOG01/ERPBF/DATAFILE/APPS_TS_ARCHIVE.305.748450671' and target->'+ERPBF/ERPBF_OLD_BACKUP/DATAFILE/APPS_TS_ARCHIVE.305.748450671' failed
    ORA-19505: failed to identify file "+ERPBF/ERPBF_OLD_BACKUP/DATAFILE/APPS_TS_ARCHIVE.305.748450671"
    ORA-17502: ksfdcre:4 Failed to create file +ERPBF/ERPBF_OLD_BACKUP/DATAFILE/APPS_TS_ARCHIVE.305.748450671
    ORA-15046: ASM file name '+ERPBF/ERPBF_OLD_BACKUP/DATAFILE/APPS_TS_ARCHIVE.305.748450671' is not in single-file creation form
    ORA-06512: at "SYS.X$DBMS_DISKGROUP", line 258
    ORA-06512: at line 3 (DBD ERROR: OCIStmtExecute)
    ASMCMD>
    Edited by: 812261 on Apr 18, 2011 1:46 PM

  • Difference between ASM Disk Group, ADVM Volume and ACFS File system

    Q1. What is the difference between an ASM Disk Group and an ADVM Volume ?
    To my mind, an ASM Disk Group is effectively a logical volume for Database files ( including FRA files ).
    11gR2 seems to have introduced the concepts of ADVM volumes and ACFS File Systems.
    An 11gR2 ASM Disk Group can contain :
    ASM Disks
    ADVM volumes
    ACFS file systems
    Q2. ADVM volumes appear to be dynamic volumes.
    However is this therefore not effectively layering a logical volume ( the ADVM volume ) beneath an ASM Disk Group ( conceptually a logical volume as well ) ?
    Worse still if you have left ASM Disk Group Redundancy to the hardware RAID / SAN level ( as Oracle recommend ), you could effectively have 3 layers of logical disk ? ( ASM on top of ADVM on top of RAID/SAN ) ?
    Q3. if it is 2 layers of logical disk ( i.e. ASM on top of ADVM ), what makes this better than 2 layers using a 3rd party volume manager ( eg ASM on top of 3rd party LVM ) - something Oracle encourages against ?
    Q4. ACFS File systems, seem to be clustered file systems for non database files including ORACLE_HOMEs, application exe's etc ( but NOT GRID_HOME, OS root, OCR's or Voting disks )
    Can you create / modify ACFS file systems using ASM.
    The oracle toplogy diagram for ASM in the 11gR2 ASM Admin guide, shows ACFS as part of ASM. I am not sure from this if ACFS is part of ASM or ASM sits on top of ACFS ?
    Q5. Connected to Q4. there seems to be a number of different ways, ACFS file systems can be created ? Which of the below are valid methods ?
    through ASM ?
    through native OS file system creation ?
    through OEM ?
    through acfsutil ?
    my head is exploding
    Any help and clarification greatly appreciated
    Jim

    Q1 - ADVM volume is a type of special file created in the ASM DG.  Once created, it creates a block device on the OS itself that can be used just like any other block device.  http://docs.oracle.com/cd/E16655_01/server.121/e17612/asmfilesystem.htm#OSTMG30000
    Q2 - the asm disk group is a disk group, not really a logical volume.  It combines attributes of both when used for database purposes, as the database and certain other applications know how to talk "ASM" protocol.  However, you won't find any general purpose applications that can do so.  In addition, some customers prefer to deal directly with file systems and volume devices, which ADVM is made to do.  In your way of thinking, you could have 3 layers of logical disk, but each of them provides different attributes and characteristics.  This is not a bad thing though, as each has a slightly different focus - os file system\device, database specific, and storage centric.
    Q3 - ADVM is specifically developed to extend the characteristics of ASM for use by general OS applications.  It understands the database performance characteristics and is tuned to work well in that situation.  Because it is developed in house, it takes advantage of the ASM design model.  Additionally, rather than having to contact multiple vendors for support, your support is limited to calling Oracle, a one-stop shop.
    Q4 - You can create and modify ACFS file systems using command line tools and ASMCA.  Creating and modifying logical volumes happens through SQL(ASM), asmcmd, and ASMCA.  EM can also be used for both items.  ACFS sits on top of ADVM, which is a file in an ASM disk group.  ACFS is aware of the characteristics of ASM\ADVM volumes, and tunes it's IO to make best use of those characteristics. 
    Q5 - several ways:
    1) Connect to ASM with SQL, use 'alter diskgroup add volume' as Mihael points out.  This creates an ADVM volume.  Then, format the volume using 'mkfs' (*nix) or acfsformat (windows).
    2) Use ASMCA - A gui to create a volume and format a file system.  Probably the easiest if your head is exploding.
    3) Use 'asmcmd' to create a volume, and 'mkfs' to format the ACFS file system.
    Here is information on ASMCA, with examples:
    http://docs.oracle.com/cd/E16655_01/server.121/e17612/asmca_acfs.htm#OSTMG94348
    Information on command line tools, with examples:
    Basic Steps to Manage Oracle ACFS Systems

  • How can I exchange my whole data between my mac book pro and my iMac?

    How can I exchange my whole data between my mac book pro and my iMac?

    i use both, the macbook at work and the imac at home, but ineed to have the same data on both macs, how can i sync them?

  • How reInstall Gride Infrastructure and Use old ASM disk groups

    <pre>Hello to all
    I installed Grig Infrastructure 11gR2 on a standalone server (OS is Linux)
    and I configured ASM and my database created on ASM
    Conceive that my OS disk corrupted and OS doesn't start and the Gride Home is on that disk,
    and I have to install OS again
    My ASM disks are safe , Now how can I install Grig Infrastructure again somehow that it can use previous ASM disks
    and disk groups and I don't oblige to create my database again ?
    In the step 2 of installing Gride Infrastructure it has four options
    <pre>
    1.Install and configure Oracle Grid Infrastructure for a Cluster
    2.Configure Oracle Grid Infrastructure for a Standalone Server
    3.Upgrade Oracle Gride Infrastructure or Oracle Automatice Storage Management
    4.Install Oracle Gride Infrastructure Software Only
    </pre>
    If I select the option 2 it wants to create a disk group again
    I guess that I need to select option 4 and then do some configuration but I don't know what I must configure
    Do you know answer of my question , if yes please explain it's stages
    Thank you so much
    </pre>

    Hi,
    no you are not obliged to recreate your database again. However there is a small flaw in the installation procedure, which does not make it 100% easy...
    When you installed the Oracle Restart (Standalone GI), your ASM diskgroup will contain the SPFILE of the ASM instance. And this is exactly the small flaw you will be encountering. So you have 2 options for "recovery":
    1.) Do a software only install (4), and run roothas.pl. This however will not create any ASM entries. You would have to add it manually (using srvctl) and you can specify the ASM Spfile with the srvctl command. Problem here is however to have to know where your ASM spfile has been. If you have a backup of your OLR and a backup of the GPNP profile, this might be easier to find out.
    2.) Do a new installation (2) and configure a new diskgroup (with a "spare" disk or small lun and a new name), that Oracle restart creates ASM instance and the new ASMSpfile for you.
    Then you can simply mount the diskgroup containing your database additionally. You then shoudl however move your new ASMSpfile to the new diskgroup (or simply exchange it with the existing one). In this case it is easier to find out where it was - however you will need a spare (though small) LUN for the new spfile (temporarily, until you exchange it).
    In either case after you have your ASM instance back (and access to your old diskgroup), you have to reregister your database and services - if you do not have an OLR backup.
    Again => It is doable and you can simply mount the ASM diskgroup containing your database. However I suggest you try this one time to know what really needs to be done in this case.
    Regards
    Sebastian

  • How to find the physical path of the ASM disks?

    I am in a dilemma on how to find out the physical path of the ASM disks. I tried the following query, but as you can see it is not providing me the physical path of the LUN. This is a 2 node 10.2.0.4 RAC Cluster using asmlib package.
    col name format a20
    col path format a20
    col label format a20
    select name, path, label from v$asm_disk;
    NAME PATH LABEL
    ORCL:ASM103 ASM103
    ORCL:ASM104 ASM104
    ORCL:ASM117 ASM117
    ASM101 ORCL:ASM101 ASM101
    ASM102 ORCL:ASM102 ASM102
    ASM105 ORCL:ASM105 ASM105
    ASM106 ORCL:ASM106 ASM106
    ASM107 ORCL:ASM107 ASM107
    ASM108 ORCL:ASM108 ASM108
    ASM109 ORCL:ASM109 ASM109
    ASM110 ORCL:ASM110 ASM110
    NAME PATH LABEL
    ASM111 ORCL:ASM111 ASM111
    ASM112 ORCL:ASM112 ASM112
    ASM113 ORCL:ASM113 ASM113
    ASM114 ORCL:ASM114 ASM114
    ASM115 ORCL:ASM115 ASM115
    ASM118 ORCL:ASM118 ASM118
    ASM119 ORCL:ASM119 ASM119
    ASM120 ORCL:ASM120 ASM120
    ASM121 ORCL:ASM121 ASM121
    ASM122 ORCL:ASM122 ASM122
    ASM123 ORCL:ASM123 ASM123
    NAME PATH LABEL
    ASM124 ORCL:ASM124 ASM124
    ASM125 ORCL:ASM125 ASM125
    ASM126 ORCL:ASM126 ASM126
    ASM127 ORCL:ASM127 ASM127
    ASM302 ORCL:ASM302 ASM302
    ASM303 ORCL:ASM303 ASM303
    ASM304 ORCL:ASM304 ASM304
    ASM305 ORCL:ASM305 ASM305
    ASM306 ORCL:ASM306 ASM306
    ASM307 ORCL:ASM307 ASM307
    32 rows selected.
    Any help will be appreciated.
    --MM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi
    use the following linux command as root:
    $oracleasm listdisks
    hth

  • Want to move datafiles, controlfiles, redolog on new ASM Disks (11gR2 RAC)

    Hi Guys,
    Setup: Two Node 11gR2 (11.2.0.1) RAC on RHEL 5.4
    Existing disks are from Old SAN & New Disks are from New SAN.
    Can I move all datafiles (+DATA), controlfiles (+CTRL), redolog (+REDO) on new ASM Disks by adding disks in is same Diskgroup & dropping older disks from existing Diskgroup taking advantage of ASM Re-balancing Feature.
    1) add required disks in the DATA Diskgroups,
    ALTER DISKGROUP DATA ADD DISK
    '/dev/oracleasm/disks/NEWDATA3' NAME NEWDATA_0003,
    '/dev/oracleasm/disks/NEWDATA4' NAME NEWDATA_0004,
    '/dev/oracleasm/disks/NEWDATA5' NAME NEWDATA_0005
    REBALANCE POWER 11;
    Check rebalance status from v$ASM_OPERATION.
    2) When rebalance completes, drop the old disks.
    ALTER DISKGROUP DATA DROP DISK
    NEWDATA_0000,
    NEWDATA_0001
    REBALANCE POWER 11;
    Check rebalance status from v$ASM_OPERATION.
    3) Do it same for Redo log groups & Controlfile Diskgroups.
    I hope, I could do this Activity, even if database is Up. is there possibility of Database block Corruption ??? (or is it necessary to perform above steps when database is down)
    Would be appreciated, your quick responses on the same.
    It's an urgent requirement. Thanks.
    Regards,
    Manish

    Manish Nashikkar wrote:
    Hi Guys,
    Setup: Two Node 11gR2 (11.2.0.1) RAC on RHEL 5.4
    Existing disks are from Old SAN & New Disks are from New SAN.
    Can I move all datafiles (+DATA), controlfiles (+CTRL), redolog (+REDO) on new ASM Disks by adding disks in is same Diskgroup & dropping older disks from existing Diskgroup taking advantage of ASM Re-balancing Feature.
    1) add required disks in the DATA Diskgroups,
    ALTER DISKGROUP DATA ADD DISK
    '/dev/oracleasm/disks/NEWDATA3' NAME NEWDATA_0003,
    '/dev/oracleasm/disks/NEWDATA4' NAME NEWDATA_0004,
    '/dev/oracleasm/disks/NEWDATA5' NAME NEWDATA_0005
    REBALANCE POWER 11;
    Check rebalance status from v$ASM_OPERATION.
    2) When rebalance completes, drop the old disks.
    ALTER DISKGROUP DATA DROP DISK
    NEWDATA_0000,
    NEWDATA_0001
    REBALANCE POWER 11;
    Check rebalance status from v$ASM_OPERATION.
    3) Do it same for Redo log groups & Controlfile Diskgroups.
    I hope, I could do this Activity, even if database is Up. is there possibility of Database block Corruption ??? (or is it necessary to perform above steps when database is down)
    Would be appreciated, your quick responses on the same.
    It's an urgent requirement. Thanks.
    Regards,
    Manish
    Hi Manish,
    Yes you can do that by adding new disk to existing diskgroup and delete old diskgroup. The good thing is this can be done online however you need to make sure the rebalance power is meet your business time, higher rebalance power is faster to rebalance to complete however it also will consume more resources
    Cheers

  • How do I see the balance of extents within my ASM disk group?

    I wanted see if there is a way to see how well the extents ,within a disk group, are balanced across the multiple disks in the group. Does anyone know?

    Marisol2 wrote:
    Where do I find the balance of my iTunes gift card?
    An iTunes gift card does not have a "balance."  Either it has not been redeemed, in which case it is worth face value, or it has been redeemed, in which case it is worth zero.
    When it is redeemed, the full amount is added as a credit to your account balance.  At that point, you can throw away the card and start spending down your account credit. 

  • How to move huge HD video files between external hard drives and defrag ext drive?

    I have huge high definition video files on a 2TB external hard drive (and its clone).  The external hard drive is maxed out.  I would like to move many of the video files to a new 3TB external hard drive (G-drive, and a clone) and leave a sub-group of video files (1+ TB) on the original external hard drive (and its clone).  
    I am copying files from original external drive ("ext drive A") to new external drive ("ext drive B") via Carbon Copy Cloner (selecting iMovie event by event that I want to transfer). Just a note: I do not know how to partition or make bootable drives, I see suggestions with these steps in them.
    My questions:
    1.)  I assume this transfer of files will create extreme fragmentation on drive A.  Should I reformat/re-initialize ext drive A after moving the files I want?  If so, how best to do this?  Do I use "Erase" within Disk Utilities?  Do I need to do anything else before transfering files back onto ext drive A from its clone?
    2.) Do I also need to defrag if I reformat ext drive A? Do I defrag instead of or in addition to reformating?  If so, how to do this? I've read on these forums so many warnings and heard too many stories of this going awry.  Which 3rd party software to use? 
    Thank you in advance for any suggestions, tips, advice.  This whole process makes me SO nervous.

    Here is a very good writeup on de-fragging in the OS environment that I borrowed
    From Klaus1:
    Defragmentation in OS X:
    http://support.apple.com/kb/HT1375  which states:
    You probably won't need to optimize at all if you use Mac OS X. Here's why:
    Hard disk capacity is generally much greater now than a few years ago. With more free space available, the file system doesn't need to fill up every "nook and cranny." Mac OS Extended formatting (HFS Plus) avoids reusing space from deleted files as much as possible, to avoid prematurely filling small areas of recently-freed space.
    Mac OS X 10.2 and later includes delayed allocation for Mac OS X Extended-formatted volumes. This allows a number of small allocations to be combined into a single large allocation in one area of the disk.
    Fragmentation was often caused by continually appending data to existing files, especially with resource forks. With faster hard drives and better caching, as well as the new application packaging format, many applications simply rewrite the entire file each time. Mac OS X 10.3 onwards can also automatically defragment such slow-growing files. This process is sometimes known as "Hot-File-Adaptive-Clustering."
    Aggressive read-ahead and write-behind caching means that minor fragmentation has less effect on perceived system performance.
    Whilst 'defragging' OS X is rarely necessary, Rod Hagen has produced this excellent analysis of the situation which is worth reading:
    Most users, as long as they leave plenty of free space available , and don't work regularly in situations where very large files are written and rewritten, are unlikely to notice the effects of fragmentation on either their files or on the drives free space much.
    As the drive fills the situations becomes progressively more significant, however.
    Some people will tell you that "OSX defrags your files anyway". This is only partly true. It defrags files that are less than 20 MB in size. It doesn't defrag larger files and it doesn't defrag the free space on the drive. In fact the method it uses to defrag the smaller files actually increases the extent of free space fragmentation. Eventually, in fact, once the largest free space fragments are down to less than 20 MB (not uncommon on a drive that has , say only 10% free space left) it begins to give up trying to defrag altogether. Despite this, the system copes very well without defragging as long as you have plenty of room.
    Again, this doesn't matter much when the drive is half empty or better, but it does when it gets fullish, and it does especially when it gets fullish if you are regularly dealing with large files , like video or serious audio stuff.
    If you look through this discussion board you will see quite a few complaints from people who find that their drive gets "slow". Often you will see that say that "still have 10 or 20 gigs free" or the like. On modern large drives by this stage they are usually in fact down to the point where the internal defragmentation routines can no longer operate , where their drives are working like navvies to keep up with finding space for any larger files, together with room for "scratch files", virtual memory, directories etc etc etc. Such users are operating in a zone where they put a lot more stress on their drives as a result, often start complaining of increased "heat", etc etc. Most obviously, though, the computer slows down to a speed not much better than that of molasses. Eventually the directories and other related files may collapse altogether and they find themselves with a next to unrecoverable disk problems.
    By this time, of course, defragging itself has already become just about impossible. The amount of work required to shift the data into contiguous blocks is immense, puts additional stress on the drive, takes forever, etc etc. The extent of fragmentation of free space at this stage can be simply staggering, and any large files you subsequently write are likely to be divided into many , many tens of thousands of fragments scattered across the drive. Not only this, but things like the "extents files", which record where all the bits are located, will begin to grow astronomically as a result, putting even more pressure on your already stressed drive, and increasing the risk of major failures.
    Ultimately this adds up to a situation where you can identify maybe three "phases" of mac life when it comes to the need for defragmentation.
    In the "first phase" (with your drive less than half full), it doesn't matter much at all - probably not enough to even make it worth doing.
    In the "second phase" (between , say 50% free space and 20% free space remaining) it becomes progressively more useful, but , depending on the use you put your computer to you won't see much difference at the higher levels of free space unless you are serious video buff who needs to keep their drives operating as efficiently and fast as possible - chances are they will be using fast external drives over FW800 or eSata to compliment their internal HD anyway.
    At the lower end though (when boot drives get down around the 20% mark on , say, a 250 or 500 Gig drive) I certainly begin to see an impact on performance and stability when working with large image files, mapping software, and the like, especially those which rely on the use of their own "scratch" files, and especially in situations where I am using multiple applications simultaneously, if I haven't defragmented the drive for a while. For me, defragmenting (I use iDefrag too - it is the only third party app I trust for this after seeing people with problems using TechToolPro and Drive Genius for such things) gives a substantial performance boost in this sort of situation and improves operational stability. I usually try to get in first these days and defrag more regularly (about once a month) when the drive is down to 30% free space or lower.
    Between 20% and 10% free space is a bit of a "doubtful region". Most people will still be able to defrag successfully in this sort of area, though the time taken and the risks associated increase as the free space declines. My own advice to people in this sort of area is that they start choosing their new , bigger HD, because they obviously are going to need one very soon, and try to "clear the decks" so that they maintain that 20% free buffer until they do. Defragging regularly (perhaps even once a fortnight) will actually benefit them substantially during this "phase", but maybe doing so will lull them into a false sense of security and keep them from seriously recognising that they need to be moving to a bigger HD!
    Once they are down to that last ten per cent of free space, though, they are treading on glass. Free space fragmentation at least will already be a serious issue on their computers but if they try to defrag with a utility without first making substantially more space available then they may find it runs into problems or is so slow that they give up half way through and do the damage themselves, especially if they are using one of the less "forgiving" utilities!
    In this case I think the best way to proceed is to clone the internal drive to a larger external with SuperDuper, replace the internal drive with a larger one and then clone back to it. No-one down to the last ten percent of their drive really has enough room to move. Defragging it will certainly speed it up, and may even save them from major problems briefly, but we all know that before too long they are going to be in the same situation again. Better to deal with the matter properly and replace the drive with something more akin to their real needs once this point is reached. Heck, big HDs are as cheap as chips these days! It is mad to struggle on with sluggish performance, instability, and the possible risk of losing the lot, in such a situation.

  • How to move Apps and or Folders between screens

    I have three pages of Apps but pages 2 & 3 have only a few. How do I move the Apps & Folders on page 2 & 3 to page two?

    I also talked to Apple Support. They told me to move a jiggling folder to the left edge. At first it didn't seem to work, but they said to hold it there. If you move it too far left, it will just bounce back. If you drag it to the left edge so half the folder is obscured and the other half is visible, and then HOLD it there for 3-4 seconds, it will move it to the next page. Good!

  • How to move a partition to the top of Disk Utility pile?

    I had Lion and SL installed in two separte partitions. But since I didnt like Lion I decided to erase Lion's partition and then fuse the free left space with the SL partition so I could have more HD space. The thing is disk utility only alows to expanded downwards from the down border of the partition. As you can see I've got tons of free space above Macintosh HD 2. 224GB. I want to move Macintosh HD 2 up so then I can expand it to "catch" all that free space. Do I make any sense? I don't want 2 Partitions, just one! With SL. But I can't expand it up only down
    Please help guys Its killing me... didnt find any solution to this particular problem here.
    Thanks in advanced
    - Tiago

    Like Neil said, you have to clone your SL off to a external drive, option boot from it, format the internal drive again so it's one partition, then reverse clone SL back onto it.
    Doing it all on the same drive is rather risky and might not be possible if the second partition is larger with data than the first. A clone on a external drive will also give bootable backup in case all heck breaks loose.
    Important thing is that the entire drive is erased, (select the Toshiba, Western Digital, or Seagate internal "media" on the far left side) as there is a hidden Lion Recovery partition that also needs to be removed.
    So you really have 3 (actually 4 counting EFI partition) partitions on your boot drive if Lion is installed so you need to reduce that to two (SL and the hidden EFI, Disk Utility creates)
    It's easier than it sounds really, make sure all other drives, media is removed so there are no accidents.
    1: get a blank external drive, use Disk Utility to Erase Security Option > Zero All Data and format 1 partition, Option: GUID OS X Extended in the Partition Tab.
    2: free Carbon Copy Cloner to clone internal SL to external (default settings are fine for first clone)
    3: hold option boot the external SL drive, use Disk Utility (on the external drive!) to erase the whole internal drive media
    4: use CCC to reverse clone onto the internal drive
    5: use free Onyx and run ALL maintainence and cleaning aspects and reboot at the end when finished (cleans up caches, makes your machine run faster)
    http://www.titanium.free.fr/
    You can learn all how to do that in my huge thread here
    https://discussions.apple.com/message/16276201#16276201

  • How to move Pictures/Music folders to external hard disk?

    My hard disk is almost full. How do I move Pictures/Music folders in my /Users/myAccount to external hard disk?

    For music see this: http://www.macworld.com/article/46248/2005/08/shiftitunes.html.

  • How to increase space in ASM disk groups?

    Hi All,
    I am a newbie DBA in my team and today morning got a OEM alert that:
    Target name=+ASM_ZEUS.techiebros.com
    Message=Disk Group DATA requires rebalance because at least one disk is low on space.
    Any solution?

    To solve it you can run this command: Alter diskgroup ASMDB Add Disk 'here the way of the new disk' Rebalance power 4 WAIT;
    After that, you can see through the v$asm_operation;
    Read : <http://jarneil.wordpress.com/2008/10/27/asm-rebalance-io-saturation/> or < http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_1006.htm>

  • Migrating VM's between two repositories

    I'm working with a customer that has OVM 3.1.1 running on 2 servers. They originally provisioned a repository of 2T but it turns out that was oversized for their environment. I have helped them create an 800GB repo and now wish to migrate all the VM's from the big one to the smaller one. There are also physical disks assigned to the VM's in question.
    I assume the best way to do this would be to use a clone customizer and "move" the vm from one repo to the other- unchecking the physical disks so they don't get cloned as well. One problem I did run into was that on the cloned VM, the disks that were assigned are out of order (the first two are fine, but the swap virtual disk somehow got stuffed into a different slot number way down the list in the middle of the other physical disks. Thankfully I used ext3 LABELs to mount everything including swap, so that didn't affect things. We're also using ASM and I assume it puts some sort of signature on the disk once the ASM disk group is created so that if the disks show up out of order it won't matter. But it very well could have mattered- this seems like a big big problem and a bug in OVM Manager.
    Either way- is there a better/easier way to move VM's between repos?

    You can clone virtual disks to different repos.
    Physical attachments shouldn't be an issue. Just detach them from your VM guests before you clone the VM. Attach them in the proper order. You're not changing VM servers. So..... ASM disks shouldn't matter as asmlib (if you're using asmlib and you should be) does mark the ASM disks with the proper headers/names. It does not matter what order they appear. The asmlib will find the path to the disk. UNLESS, you have restricted ASMlib to only search for certain disk paths. Most of the time this is necessary unless you have a lot of disks attached.
    I never use more than one virtual system disk per host. I've never found a reason to do such. Its all the same repo. Same IO path/ IO paths. Why would you use different disks for swap? You just create a swap partition for your hosts on the same system disk...

  • How to move LC to Group

    Hi BPC Experts
    We're using BPC 10 MS version.  We have two GROUP and CURRENCY dimensions set up separately in our consolidation model.  Data is imported at LC (RptCurrency Dimension) and NoGroup (Group Dimension) members.  After running the currency conversion, we notice that the reporting currency is moved to the appropriate consolidated group member of the GROUP dimension, but not LC (local currency).
    My question is how to move LC currency into the corresponding members of GROUP dimension?
    Thx
    Y.Tran

    Hi Yung,
    You first need to perform a Reporting currency conversion (i.e. LC to EUR) and then perform a GROUP currency conversion (i.e. EUR to GROUP1).
    If you only have 1 currency (i.e. EUR) then you can possibly load data directly to your reporting currency (EUR) and then perform a GROUP currency conversion.
    Thanks,
    John

Maybe you are looking for

  • Cannot access my desktop cloud apps, laptop works fine.

    My dilemma is this. I originally installed CC on my desktop iMac 27 a couple months ago. I went ahead and installed the second applications on my i5 mac book pro several weeks ago too. Today I downloaded the latest versions of CC2014, and took the ha

  • HP Color LaserJet 5525 Fuser trouble shooting

    My HP Color LaserJet 5525 has a squeek or squeel at the top of the printer when printing or initializing. Could this be a bad Fuser Unit?

  • Cannot make a 'number' account on MacOS 10.6 (workstation)

    Hi all, suddenly in MacOS X 10.6 the possibility to make an account named '00186' is giving me an error.. I get the warning that i cannot not use special characters.. (screen-shot: http://www.mactinosx.com/pica/sreenshot_account.jpg srry 4 the dutch

  • Guest Internet across multiple controllers

    I am about to deploy a multi-controller wireless network using the 5508s I am going to configure the head office controller to be the Guest Anchor. My question is on the remote site controllers, I want the guest traffic to tunnel from the remote site

  • What is the performance of iOS 8.1.3 on the iPhone 4s?

    I need to decide whither to update from iOS 7.x to iOS 8.1.3 on my iPhone 4s. Is the performance with iOS 8.1.3 on the iPhone 4s good?