Mount Diskgroup without one disk

Hi All
We have on database of 6TB on raw devices. it's 10gr2 on IBM-AIX. We have plan to move raw to ASM. While going through recommendations it seems Oracle suggest
to have 2 Disk Groups. One for datafiles other for flash area.
We got nearly 25 LUNs assigned to this servers, LUNs are mapped to PV->VG Iwe have one to one mapping ) then VG have multiple logical volume which are being used as raw.
My question here is, if we have problem with LUN ( some corruption,yes, we have raid but please help to me understand theoretically) then we would loose few datafiles which are mapped to PV->VG.
But if we use same architecture in ASM where 25 LUNS assigned to one Diskgroup then whole diskgroup will not be mount which means whole db will be down.
Is there something I am missing ?
Regards,
Lyxx

can you please explain what you refer to as PV and VG?
If you use ASM to stripe over 25 disks/volumes/luns and you loose any one of them, your database will be unavailable. The slight advantage here is that all your data is striped over all disks which should result in better performance. But you are right, the diskgroup would not mount. Also, the mapping of multiple volumes for one physical disk (or raid) is not a good idea since it will not improve performance.
But you could also have ASM do some mirroring itself. For example, you could assign 24 disks/volumes to asm and mirror your data across 2 failover groups with 12 disks each. Of course, this would mean you'd have to use even more disks.
Or, if you want to stay as close to your current deployment as possible, you could setup 25 diskgroups and map them just the way you are mapping them now. In that way, when you loose a disk/volume/lun you will only loose one diskgroup and if the datafiles in that diskgroup are not critical, your database could still be up.
Bjoern

Similar Messages

  • 使用AMDU工具从无法MOUNT的DISKGROUP中抽取数据文件

    AMDU是ORACLE针对ASM开发的源数据转储工具,其全称为ASM Metadata Dump Utility(AMDU)
    AMDU具体以下三个主要功能:
    1. 将ASM DISK上的元数据转储到文件系统上以便分析
    2. 将ASM文件的内容抽取出来并写入到OS文件系统,Diskgroup是否mount均可
    3. 打印出块的元数据,以块中C语言结构或16进制的形式
    这里我们将用到使用AMDU抽取ASM DISKGROUP中的数据文件; ASM作为近几年最流行的存储解决方案, 大家对他的优缺点都有所了解,其中的问题之一就是ASM是个黑盒。 一旦DISKGROUP无法MOUNT起来就意味着传统方法无法以磁盘为基础导出任何数据。
    AMDU解决了这一问题, 这里我们仅讨论在ASM DISKGROUP 无法MOUNT的情况下的范畴,不讨论RDBMS数据文件在ASM下讹误的处理。
    注意 AMDU虽然是11g才发布的工具,但是实际对10g的ASM 也有效。
    当前你可能遇到的场景是, ORACLE DATABASE的SPFILE、CONTROLFILE、DATAFILE均存放在ASM DISKGROUP中,而由于一些ASM ORA-600错误导致无法MOUNT该DISKGROUP, 你需要的是使用AMDU将这些文件从ASM DISK中转储出来。
    场景 1 丢失了 包括SPFILE、CONTROLFILE、DATAFILE
    恢复步骤: 从备份中还原出SPFILE ,即便没有SPFILE的话PFILE也可以,总之你需要从参数文件中了解control_files的信息
    SQL> show parameter control_files
    NAME                                 TYPE        VALUE
    control_files                        string      +DATA/prodb/controlfile/curren
                                                     t.260.794687955, +FRA/prodb/co
                                                     ntrolfile/current.256.79468795
                                                     5获得control_files 控制文件在ASM中的位置后事情就好办了,+DATA/prodb/controlfile/current.260.794687955 这里 260是这个控制文件在+DATA 这个DISKGROUP中的FILE NUMBER
    此外我们还需要ASM DISK的DISCOVERY PATH信息,这完全可以从ASM的SPFILE中的asm_diskstring 参数获得
    [oracle@mlab2 oracle.SupportTools]$ unzip amdu_X86-64.zip
    Archive:  amdu_X86-64.zip
      inflating: libskgxp11.so          
      inflating: amdu                   
      inflating: libnnz11.so            
      inflating: libclntsh.so.11.1      
    [oracle@mlab2 oracle.SupportTools]$ export LD_LIBRARY_PATH=./
    [oracle@mlab2 oracle.SupportTools]$ ./amdu -diskstring '/dev/asm*' -extract data.260
    amdu_2009_10_10_20_19_17/
    AMDU-00204: Disk N0006 is in currently mounted diskgroup DATA
    AMDU-00201: Disk N0006: '/dev/asm-disk10'
    AMDU-00204: Disk N0003 is in currently mounted diskgroup DATA
    AMDU-00201: Disk N0003: '/dev/asm-disk5'
    AMDU-00204: Disk N0002 is in currently mounted diskgroup DATA
    AMDU-00201: Disk N0002: '/dev/asm-disk6'
    [oracle@mlab2 oracle.SupportTools]$ cd amdu_2009_10_10_20_19_17/
    [oracle@mlab2 amdu_2009_10_10_20_19_17]$ ls
    DATA_260.f  report.txt
    [oracle@mlab2 amdu_2009_10_10_20_19_17]$ ls -l
    total 9548
    -rw-r--r-- 1 oracle oinstall 9748480 Oct 10 20:19 DATA_260.f
    -rw-r--r-- 1 oracle oinstall    9441 Oct 10 20:19 report.txt以上转储出来的DATA_260.f 就是控制文件,我们使用该控制文件startup mount RDBMS实例:
    SQL> alter system set control_files='/opt/oracle.SupportTools/amdu_2009_10_10_20_19_17/DATA_260.f' scope=spfile;
    System altered.
    SQL> startup force mount;
    ORACLE instance started.
    Total System Global Area 1870647296 bytes
    Fixed Size                  2229424 bytes
    Variable Size             452987728 bytes
    Database Buffers         1409286144 bytes
    Redo Buffers                6144000 bytes
    Database mounted.
    SQL> select name from v$datafile;
    NAME
    +DATA/prodb/datafile/system.256.794687873
    +DATA/prodb/datafile/sysaux.257.794687875
    +DATA/prodb/datafile/undotbs1.258.794687875
    +DATA/prodb/datafile/users.259.794687875
    +DATA/prodb/datafile/example.265.794687995
    +DATA/prodb/datafile/mactbs.267.794688457
    6 rows selected.startup mount实例后,可以从v$datafile中获得数据文件名,其中就包括了其在DISKGROUP中的FILE NUMBER
    再使用./amdu -diskstring '/dev/asm*' -extract 命令即可 导出数据文件到操作系统
    [oracle@mlab2 oracle.SupportTools]$ ./amdu -diskstring '/dev/asm*' -extract data.256
    amdu_2009_10_10_20_22_21/
    AMDU-00204: Disk N0006 is in currently mounted diskgroup DATA
    AMDU-00201: Disk N0006: '/dev/asm-disk10'
    AMDU-00204: Disk N0003 is in currently mounted diskgroup DATA
    AMDU-00201: Disk N0003: '/dev/asm-disk5'
    AMDU-00204: Disk N0002 is in currently mounted diskgroup DATA
    AMDU-00201: Disk N0002: '/dev/asm-disk6'
    [oracle@mlab2 oracle.SupportTools]$ cd amdu_2009_10_10_20_22_21/
    [oracle@mlab2 amdu_2009_10_10_20_22_21]$ ls
    DATA_256.f  report.txt
    [oracle@mlab2 amdu_2009_10_10_20_22_21]$ dbv file=DATA_256.f
    DBVERIFY: Release 11.2.0.3.0 - Production on Sat Oct 10 20:23:12 2009
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    DBVERIFY - Verification starting : FILE = /opt/oracle.SupportTools/amdu_2009_10_10_20_22_21/DATA_256.f
    DBVERIFY - Verification complete
    Total Pages Examined         : 90880
    Total Pages Processed (Data) : 59817
    Total Pages Failing   (Data) : 0
    Total Pages Processed (Index): 12609
    Total Pages Failing   (Index): 0
    Total Pages Processed (Other): 3637
    Total Pages Processed (Seg)  : 1
    Total Pages Failing   (Seg)  : 0
    Total Pages Empty            : 14817
    Total Pages Marked Corrupt   : 0
    Total Pages Influx           : 0
    Total Pages Encrypted        : 0
    Highest block SCN            : 1125305 (0.1125305)@@
    如何在OTN中文技术论坛提一个问题?
    论坛礼仪需知及学习oracle的方法论
    Maclean Liu
    Oracle Database Administrator
    Oracle Certified 10g/11g Master     
    www.askmaclean.com

    楼主,你好。我们现在也是按此方 案正在进行,但有一个技术点
    ./amdu -diskstring '/dev/asm*' -extract data.260
    asm 实例不能mount 起来
    其中260 这个号是asm filenumber 有的数据文件是名字是这样的
    +DG_ORA/mos5200/datafile/pm4h_db94.dbf
    从文件名上不能看到260这样的number
    可能是因为asm不能mount ,从v$asm_file 里也只能看到部分文件
    oracle 提供了一个方案把extract 出来的文件对其block0 dump,可是asm 里的文件太多了归档也放在里面了,不太具有可行性
    如何解决呢,ML想个办法,谢谢

  • How do I install driver for hp psc 2400 all in one series AND safe wsnmp32.dl​l Without a Disk?

    How do I install driver(s) for hp psc 2400 all in one series ( WIndows 7 laptop)   AND a safe version of wsnmp32.dll -- Without a Disk?    A tech took the driver off my laptop and I now have no printer/scanner.  Help!!
    Much thanks!

    Hello,
    I see that you're having an issue installing the software. I would suggest following this document, which will guide you through several steps on how to resolve the issue.

  • How to move Tablespace from One disk group to another disk group in RAC

    Hi All,
    I have 11gR2 RAC env on Linux.
    As ofnow I have problem with disk group. I have 3 disk group which is almost full - 98%. I have added one NEW disk group and want to move some of the Tablespace(TBS) from OLD disk group to NEW diskgroup and make some free space in OLD disk group.
    Can any one suggest me how to move TBS from one disk group to another disk grup without shutting down the instance.
    DB is in Noarchive mode.
    Thanks...

    user12039625 wrote:
    Hi Helios,
    Thanks for doc id but I am looking for noarchive mode solution. becaues I got ORA-
    "ORA-01145: offline immediate disallowed unless media recovery enabled " when run alter database datafile '...' offline.
    Hence I am trying something and findout below steps but not sure how useful it is:
    1- put tablespace offine
    2- Copy the file to new diskgroup using Either RMAN or DBMS_FILE_TRANSFER.
    3- Rename the file to point to new location.
    4- Recover the file.
    5- Bring the file online.
    I had move 240M TBS from OLE to NEW.
    These steps run successfully so I think this is valid for noarchive mode.Hence want to confirm..so inform me please.
    Thanks :)I have doubt in my mind:
    1. You database is in noarchivelog mode
    2. You're taking tablespace offline
    3. Suppose you're moving a file of size 10GB(or any larger filesize) to another disk group
    4. Now after moving the file, you're trying to bring the tablespace online............NOW
    tablespace will need recovery. if the required data is inside the SGA then it is ok. But if the data has been flushed, then?
    if step 2 and 3 has taken significant time, then most probably you'll not be able to bring that tablespace online.
    Regards,
    S.K.

  • Best way to move redo log from one disk group to another in ASM?

    Hi All,
    Our db is 10.2.0.3 RAC db. And database servers are window 2003 server.
    We need to move more than 50 redo logs (some are regular and some are standby) which are not redundant from one disk group to another. Say we need to move from disk group 1 to 2. Here are the options we are thinking about but not sure which one is the best from easiness and safety prospective.
    Thank you very much for your help in advance.
    Shirley
    Option 1:
    1)     shutdown immediate
    2)     copy log files from disk group 1 to disk group2 using RMAN (need to research on this)
    3)     startup mount
    4)     alter database rename file ….
    5)     Open database open
    6)     delete the redo files from disk group 1 in ASM (how?)
    Option 2:
    1)     create a set of redo log groups in disk group 2
    2)     drop the redo log groups in disk group 1 when they are inactive and have been archived
    3)     delete the redo files associated with those dropped groups from disk group 1 (how?) (According to Oracle menu: when you drop the redo log group the operating system files are not deleted and you need to manually delete those files)
    Option 3:
    1)     create a set of redo members in disk group 2 for each redo log group in disk group 1
    2)     drop the redo log memebers in disk group 1
    3)     delete the redo files from disk group 1 associated with the dropped members

    Absolutely not, they are not even remotely similar concepts.
    OMF: Oracle Managed Files. It is an RDMBS feature, no matter what your storage technology is, Oracle will take care of file naming and location, you only have to define the size of a file, and in the case of a tablespace on an OMF DB Configuration you only need to issue a command similar to this:
    CREATE TABLESPACE <TSName>; So the OMF environment creates an autoextensible datafile at the predefined location with 100M by default as its initial size.
    On ASM it should only be required to specify '+DGroupName' as the datafile or redo log file argument so it can be fully managed by ASM.
    EMC. http://www.emc.com No further commens on it.
    ~ Madrid
    http://hrivera99.blogspot.com

  • How do I install photoshop elements without a disk drive

    How do I install photoshop elements without a disk drive. My Mac does not have one and have just bought Elements

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Wipe and install OSX Leopard without the disk

    Hi everyone,
    I need to wipe my iMac and reinstall OS X Leopard. I have the install disks, but my CD drive doesn't work and can't read the disk.
    Is there a way for me to wipe and install OSX Leopard without the disk?
    Thanks.

    You can turn the 2011 iMac into a Firewire Optical drive.
    Put the Leo Install Disc into the 2011 iMac, boot the 2011 iMac while holding t key to put it into FW Target Disk Mode, with a FW cable connect the the 2, boot older one holding Alt key, choose the Leo Install Disc to boot from.

  • How do i install HP deskjet 3510 printer without the disk to my laptop

    how do i install HP deskjet 3510 printer  without the disk to my laptop 

    Hi,
    You can download from the following link:
       http://h20000.www2.hp.com/bizsupport/TechSupport/P​roductList.jsp?lang=en&cc=us&taskId=135&prodTypeId​...
    Full Feature Software and Drivers is the one you definitely need first.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Oracle RAC with QFS shared storage going down when one disk fails

    Hello,
    I have an oracle RAC on my testing environment. The configuration follows
    nodes: V210
    Shared Storage: A5200
    #clrg status
    Group Name Node Name Suspended Status
    rac-framework-rg host1 No Online
    host2 No Online
    scal-racdg-rg host1 No Online
    host2 No Online
    scal-racfs-rg host1 No Online
    host2 No Online
    qfs-meta-rg host1 No Online
    host2 No Offline
    rac_server_proxy-rg host1 No Online
    host2 No Online
    #metastat -s racdg
    racdg/d200: Concat/Stripe
    Size: 143237376 blocks (68 GB)
    Stripe 0:
    Device Start Block Dbase Reloc
    d3s0 0 No No
    racdg/d100: Concat/Stripe
    Size: 143237376 blocks (68 GB)
    Stripe 0:
    Device Start Block Dbase Reloc
    d2s0 0 No No
    #more /etc/opt/SUNWsamfs/mcf
    racfs 10 ma racfs - shared
    /dev/md/racdg/dsk/d100 11 mm racfs -
    /dev/md/racdg/dsk/d200 12 mr racfs -
    When the disk /dev/did/dsk/d2 failed (I have failed it by removing from the array), the oracle RAC went offline on both nodes, and then both nodes paniced and rebooted. Now the #clrg status shows below output.
    Group Name Node Name Suspended Status
    rac-framework-rg host1 No Pending online blocked
    host2 No Pending online blocked
    scal-racdg-rg host1 No Online
    host2 No Online
    scal-racfs-rg host1 No Online
    host2 No Pending online blocked
    qfs-meta-rg host1 No Offline
    host2 No Offline
    rac_server_proxy-rg host1 No Pending online blocked
    host2 No Pending online blocked
    crs is not started in any of the nodes. I would like to know if anybody faced this kind of a problem when using QFS on diskgroup. When one disk is failed, the oracle is not supposed to go offline as the other disk is working, and also my qfs configuration is to mirror these two disks !!!!!!!!!!!!!!
    Many thanks in advance
    Ushas Symon

    I'm not sure why you say QFS is mirroring these disks!?!? Shared QFS has no inherent mirroring capability. It relies on the underlying volume manager (VM) or array to do that for it. If you need to mirror you storage, you do it at the VM level by creating a mirrored metadevice.
    Tim
    ---

  • Is it better to use ASM if my DB uses only one disk ?

    Hello
    I am planning to install a NEW database 11g R1 on a new windows server.
    I am running a 9.2 DB and will export its data to the freshly installed 11gR1.
    I ma wondering if i have to use the ASM feature ?
    The dabatase files are small : 52 Gb, and it will keep on one disk.
    I have understood that the main benefit of using ASM in automatic multi disk storage.
    Does it worth to use it on my small DB ?
    Thank you for your kind answers.
    Christian

    If you want to learn ASM then using it with a single disk system and just creating the diskgroups to not use Oracle redundancy is an option. Also one of the things ASM is designed to provide is async IO, that is, easy managment of raw partitions. Depending on your platform ASM may be desirable from this point of view.
    Also does a one disk set-up today mean only a one disk set-up tomorrow? It is possible to migrate a database to a new disk server via ASM while the database is running. You create a mirror, allow it to populate, and then remove the original disk. The database data files are now on a new disk storage unit.
    But ASM is by no means required or necessary. You just want to consider all the options it provides and the headaches it brings to determine which set of values: use or not, is right for your situation.
    HTH -- Mark D Powell --

  • How to rebuild OS, without installation disk(s)?

    I recently purchased a Mac Pro.  It did not come with a restore installation disk.  If I needed to rebuild my OS, how do I do it without installation disks?

    Restart with the Option key held down and use the preloaded recovery partition. If that becomes unavailable, the computer will download a new one from Apple's servers.
    (69854)

  • How to install Mac OS X 10.4.10 without a disk

    Hi all,
    Well a got a small problem. I bought a PowerBook G4 secondhand from a computer shop, wich is great! The problem is I never got any restore disk/s with it. But I want to do a restore on it because it's full of rubbish. So is it possible to do a restore without a disk?

    If you have a working administrator account, you could create new accounts (one administrator for maintenance and software installation, and one non-administrator for normal use), logout, login to the new administrator account, delete the original accounts, empty the trash, use Disk Utility to Erase Free Space, then run Software Update. I would recommend getting a retail Tiger disc, though, so you can start fresh, and know what you have. As more people upgrade to Leopard, cheap used Tiger retail discs may show up. You should also get Apple Hardware Test so you can run the Extended Tests.
    <http://www.info.apple.com/support/aht.html>

  • Mounting Solaris 10 concatenated disk array?

    I have attempted to mount a D130 disk array attached to an E420R system running Solaris 10. This array has three drives installed an formatted. I would like to mount the three disks as one large storage partition. It seems to me that I want a concatenated stripe but I am not really sure.
    This is what I have so far:
    # format
    2. c0t2d0 <SUN18G cyl 7506 alt 2 hd 19 sec 248> d130-1
    /pci@1f,0/pci@1,1/scsi@2/sd@2,0
    3. c0t3d0 <SUN18G cyl 7506 alt 2 hd 19 sec 248> d130-2
    /pci@1f,0/pci@1,1/scsi@2/sd@3,0
    4. c0t4d0 <SUN18G cyl 7506 alt 2 hd 19 sec 248> d130-3
    /pci@1f,0/pci@1,1/scsi@2/sd@4,0
    # metastat
    d1: Concat/Stripe
    Size: 106067120 blocks (50 GB)
    Stripe 0:
    Device Start Block Dbase Reloc
    c0t4d0s6 9424 No Yes
    Stripe 1:
    Device Start Block Dbase Reloc
    c0t3d0s6 4712 No Yes
    Stripe 2:
    Device Start Block Dbase Reloc
    c0t2d0s6 4712 No Yes
    Device Relocation Information:
    Device Reloc Device ID
    c0t4d0 Yes id1,sd@SSEAGATE_ST318203LSUN18G_LRK4938300002106U7JZ
    c0t3d0 Yes id1,sd@SSEAGATE_ST318203LSUN18G_LRJ9725900002105G9EY
    c0t2d0 Yes id1,sd@SSEAGATE_ST318203LSUN18G_LRK19873000021073LVN
    How do I mount this as one combined single slice?
    I appreciate anyone's assitance here.

    I have attempted to mount a D130 disk array attached
    to an E420R system running Solaris 10. This array has
    three drives installed an formatted. I would like to
    mount the three disks as one large storage partition.
    It seems to me that I want a concatenated stripe but
    I am not really sure.Either a concatenation or a stripe. I'm not sure what a concatenated stripe is.
    Neither will offer redundancy. A concatenation can be more easily extended in the future, while a stripe would offer better performance in most situations.
    metastat
    d1: Concat/Stripe
    Size: 106067120 blocks (50 GB)
    Stripe 0:
    Device Start Block Dbase Reloc
    c0t4d0s6 9424 No Yes
    Stripe 1:
    Device Start Block Dbase Reloc
    c0t3d0s6 4712 No Yes
    Stripe 2:
    Device Start Block Dbase Reloc
    c0t2d0s6 4712 No YesSo a 3 column stripe totalling 50G.
    How do I mount this as one combined single slice?The devices are /dev/md/rdsk/d1 and /dev/md/dsk/d1. You could place a filesystem on the character device with newfs and you could mount the block device.
    Darren

  • HOW TO MOVE DATAFILES FROM ONE  DISK RAID TO ANOTHER:PLZ HELP ME  :=)

    Hi all,
    For Tunning reasons : perform The I/O from the Instance to datafiles (database). I decide to move some Index datafiles from One DISK RAID to another.
    I'm on Linux Redhat Server and Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    My database 's On PRODUCTION and there 're many web applications updating some databases tables and for sure using Index tablespace. I preapared yet my procedure to move datafiles but I'm posting this to be sure that I will not have BAD EFFECTS on my Oracle database.
    So I plan without SHUTDOWN MY DATABASE to these steps :
    /*Step1 : */
    ALTER TABLESPACE INDX OFFLINE ;
    /*Step 2 : move datafiles to new disk raid*/
    mv /u01/oraindx/DB01/indx01_05.dbf /u01/oraindx2/DB01/indx01_05.dbf
    mv /u01/oraindx/DB01/indx01_06.dbf /u01/oraindx2/DB01/indx01_06.dbf
    mv /u01/oraindx/DB01/indx01_07.dbf /u01/oraindx2/DB01/indx01_07.dbf
    /*Step 3 : */
    ALTER TABLESPACE INDX RENAME DATAFILE '/u01/oraindx/DB01/indx01_05.dbf' TO '/u01/oraindx2/DB01/indx01_05.dbf';
    ALTER TABLESPACE INDX RENAME DATAFILE '/u01/oraindx/DB01/indx01_06.dbf' TO '/u01/oraindx2/DB01/indx01_06.dbf';
    ALTER TABLESPACE INDX RENAME DATAFILE '/u01/oraindx/DB01/indx01_07.dbf' TO '/u01/oraindx2/DB01/indx01_07.dbf';
    /*Step 4 : */
    ALTER TABLESPACE INDX ONLINE ;
    Please verify my procedure and tell me the precautions that I should take care :=)
    regards,

    Werner,
    If this is an active databases (indexes are used),
    you cannot set offline the index tablespace.you can offline it.
    DAB user:
    SQL>create tablespace inds datafile '/oracle/newdb/mydb/inds01.dbf' size 10m;
    Tablespace created.
    Scott user:
    SQL>create table t2 (col1 date, id number) tablespace users;
    Table created.
    SQL>create index t2_ind on t2(id) tablespace inds;
    Index created.
    SQL>insert into t2 values (sysdate,1);
    1 row created.
    SQL>insert into t2 values (sysdate,2);
    1 row created.
    SQL>insert into t2 values (sysdate,10);
    1 row created.
    DBA user:
    SQL>select segment_name,segment_type,tablespace_name
      2  from dba_segments
      3  where owner='SCOTT' and segment_name like 'T2%';
    SEGMENT_NAME                   SEGMENT_TYPE       TABLESPACE_NAME
    T2                             TABLE              USERS
    T2_IND                         INDEX              INDS
    SQL>alter tablespace inds offline;
    Tablespace altered.
    SQL>!mv /oracle/newdb/mydb/inds01.dbf /oracle/newdb/mydb/inds0001.dbf
    SQL>alter tablespace inds rename datafile '/oracle/newdb/mydb/inds01.dbf' to
      2  '/oracle/newdb/mydb/inds0001.dbf';
    Tablespace altered.
    SQL>alter tablespace inds online;
    Tablespace altered.
    scott user:
    SQL>insert into t2 values (sysdate,20);
    1 row created.
    SQL>
    SQL>select * from t2;
    COL1              ID
    22-NOV-07          1
    22-NOV-07          2
    22-NOV-07         10
    22-NOV-07         20
    SQL>commit;
    Commit complete.

  • Upgrading to new harddrive on gateway notebook/laptop without any disk

    I'm wanting to upgrade to a 1.0 TB WD10JPVX hard drive on my NE56R41U gateway laptop it didn't come with any disk did my back like suppose to do did another systems backup on usb drive I also have everything backup on a 1.0TB WD drive the system came
    with windows 8 on ive upgraded to 8.1 via ms and then to 8.1 pro via download version (have so many ?'s )been wanting to make a dvd version of 8.1pro for backup what is needed for installing this new drive without any disk tried using usb drive but
    got no where it also was saying drive is locked go unlock it try again can I get pointed in a direction any one want to be a buddy and answer the hundreds of ?'s and yes I know don't buy without a os systems disk ever again  

    Hi,
    I just would like to confirm with you if you would like backup your system and restore it to the new 1TB harddrive.
    If so, check following steps:
    Note that this will format and repartition the new disk and restore the volumes contained in the image. This will restore the OS, applications and data contained in the critical volumes (volumes required for Windows to run). You can restore
    the data on the other partitions on the disk from a file backup of required data from the old disk. I am assuming you have a file backup of your data as well.
    1) Create a System Image backup to the USB drive. When prompted to create a ‘System Repair’ disk, do so.
    2) Shutdown the computer and remove the hard drive power and SATA connectors from your original Windows 7 hard drive and any additional internal hard drives.
    3) Connect the power and SATA connector to the new hard drive. At this point this should be your only internal hard drive connected to the computer’s motherboard.
    4) Boot from the ‘System Repair’ disc.
    5) Verify the keyboard input method and click ‘Next’.
    6) Select the ‘Restore your computer using a system image that you created’ option located in the lower left and click ‘Next’.
    7) A scan for system images that are on your USB drive will begin. At completion of the scan you will have the option to ‘Use the latest available system image’ or ‘Select a system image’. Choose the recommended option and use the latest available system
    image and click ‘Next’.
    8) Choose additional restore options: Note: The ‘Format and repartition disks’ option will be check marked but disabled/grayed out. Click ‘Next’.
    9) The ‘Your computer will be restored from the following system image:’ information will be displayed. Click ‘Finish’.
    10) Re-image Your Computer prompt. You will now see a pop up with the following message: All data to be restored will be formatted and replaced with the layout and data in the system image. Are you sure you want to continue? Click ‘Yes’.
    11) Windows will now start restoring the image to the new hard drive.
    12) At the completion of the image restoration your computer will reboot, sit back and wait for Windows to start and then logon as you normally do, then remove the System Repair disc.
    13) You may be prompted to restart the computer to apply changes. Restart the computer.
    Kate Li
    TechNet Community Support

Maybe you are looking for

  • How to create a matt for art simple objects on white.

    I would like to edit with a bunch of photos of objects from a book. They were all shot against white. can I get rid of the white background? I'm running FCP5 mac pro   Mac OS X (10.4.8)  

  • Partial cancellation of service entry sheet

    Dear Friends, I have created a open Service Purchase Order with Service limits. I have done service entry sheet for quantity (lets say 49) with some value. I have done invoice for 45 quantity only with respect to service entry sheet. Now I came to kn

  • How to set the following workflow container element

    In the below example i have created the following  field chgdocdat fieldnam in the workflow container in the initial value it is showing as <notset> but i want the value for initial value for field chgdocdat as 00.00.0000 fieldnam as can any body hel

  • Merging libraries does not work

    Hello, I'm trying to import another library into my main library with File > Import > Library/Project. I see the file dialog to choose the external library and choose the desired one. Aperture immediately starts the import process, there is a progres

  • Access apple technical chat

    Have a Macbook Pro with video issues, it is out of warranty. But it also falls under the video recall for thia model and serial number. Need to acces Apple Chat to confirm coverage on an existing order.