Create Tablespace on different disk

Hi!
I am about to upgrade SAP ERP 6.0 to EHP4.
As one of failed cheks was the insufficient free space in the database.
The recommendation given by Tool (EHP Installer) was:
> Create TABLESPACE PSAPSR3701 with 53181 MB
I also found in the ORATBSXT the appropriate SQL commandos
brspace -function tscreate -tablespace PSAPSR3701 -owner SAPSR3 -data both -size 20000 -autoextend no
brspace -function tsextend -tablespace PSAPSR3701 -size 20000 -autoextend no
brspace -function tsextend -tablespace PSAPSR3701 -size 13181 -autoextend no
My problem is that I do not have 53181 MB free space on my Oracle disk.
Therefore I mounted other disk with 70 GB free space and created there the appropriate path
F:\oracle\<sid>\sapdata7\sr3701_1
Question:
What is the SQL commando to create a new tablespace with 53181 MB on new partittion F:\oracle\<sid>\sapdata7\sr3701_1?
Someting like:
>brspace -function tscreate -tablespace PSAPSR3701 -owner SAPSR3 -data both -size 53181 datafile 'F:\oracle\<sid>\sapdata7\sr3701_1\sr3701.data1' -autoextend no
Thank you very much!
regards

Hai,
Use BRTools to create the New Tablespace.
http://help.sap.com/saphelp_nwpi71/helpdata/en/46/ba3930d28a1513e10000000a114a6b/frameset.htm
Regards,
Yoganand.V

Similar Messages

  • Create tablespace syntax for raw disk on Solaris

    Hi!
    I want to create a tablespace over /dev/rdsk/c1t1d1s5
    I tried with
    svrmgrl&gt;create tablespace rawtb datafile '/dev/rdsk/c1t1d1s5' reuse;
    Is this the proper way of creating tablespace over a raw disk?
    Can one specify a "filename" to this raw device (w/o a symbolic link creation) for example "rawtb.dbf" ?

    hi
    u just create a symbolic link using ln command. use that in the create tablespace command.directly u can't do that by specifying the raw device name.
    regds
    vamsee

  • Error in creating tablespaces

    hi,
    I have installed oracle9i in HP-USserver.its installed successfully.
    I ahve created the instance too with datafiles.but the problem is that due to shortage of disk space,iam unable to store datas.so i have dropped the tablespaces and tried to create to a new file system (in the sense a new hard drive) in the same server.while creating the tablespaces alone in a different path its
    showing error as
    SQL*Plus: Release 9.2.0.2.0 - Production on Sat Jul 28 13:18:44 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Enter user-name: sys as sysdbas
    Enter password:
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.2.0 - Production
    SQL> CREATE TABLESPACE DATAXML
    2 LOGGING DATAFILE
    3 '/server47/Bankareas/CFC/oracledatafiles/globusdataxml01.dbf' SIZE 2048M AUTOEXTEND ON MAXSIZE UNLIMITED,
    4 '/server47/Bankareas/CFC/oracledatafiles/globusdataxml02.dbf' SIZE 2048M AUTOEXTEND ON MAXSIZE UNLIMITED,
    5 '/server47/Bankareas/CFC/oracledatafiles/globusdataxml03.dbf' SIZE 2048M AUTOEXTEND ON MAXSIZE UNLIMITED
    6 EXTENT MANAGEMENT LOCAL
    7 SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE DATAXML
    ERROR at line 1:
    ORA-01119: error in creating database file
    '/server47/Bankareas/CFC/oracledatafiles/globusdataxml01.dbf'
    ORA-27086: skgfglk: unable to lock file - already in use
    HPUX-ia64 Error: 13: Permission denied
    Additional information: 8
    i want to know whether the tablespaces can be created in a seperate path apart from where oracle is installed?
    anything to be exported??
    can anybody please help me out in solving this problem.
    thanks in advance ,
    Ratheesh

    You state you have dropped the tablespace (which does not necessarily automatically drop the datafiles in version 9i); and
    You state you are trying to locate the tablespace's datafiles in a new file system where no files should exist.
    Please post response to
    ls -ld /server47/Bankareas/CFC/oracledatafiles
    ls -l /server47/Bankareas/CFC/oracledatafiles/globusdataxml01.dbf

  • CREATING TABLESPACES

    hi,
    while creating tablespaces is it possible to give create tablespace <tablespace_name>.i dont want to add any datafiles while creating tablespaces...
    could anybody tell the syntax.
    Thanks in advance,
    R.Ratheesh

    Use Oracle Managed Files (OMF), OMF simplifies the creation of databases as Oracle does all OS operations and file naming. It has several advantages including:
    Automatic cleanup of the filesystem when database objects are dropped.
    Standardized naming of database files.
    Increased portability since file specifications are not needed.
    Simplified creation of test systems on differing operating systems.
    No unused files wasting disk space.
    The location of database files is defined using the DB_CREATE_FILE_DEST parameter. If it is defined on its own all files are placed in the same location. If the DB_CREATE_ONLINE_LOG_DEST_n parameter is defined alternate locations and levels of multiplexing can be defined for Logfiles. These parameters are dymanic and can be changed using the ALTER SYSTEM statement:
    ALTER SYSTEM SET DB_CREATE_FILE_DEST='C:\Oracle\Oradata\TSH1';
    Files typically have a default size of 100M and are named using the following formats where u% is a unique 8 digit code, g% is the logfile group number, and %t is the tablespace name:
    File Type Format
    Controlfiles ora_%u.ctl
    Redo Log Files ora_%g_%u.log
    Datafiles ora_%t_%u.dbf
    Temporary Datafiles ora_%t_%u.tmp
    Managing Controlfiles Using OMF
    Managing Redo Log Files Using OMF
    Managing Tablespaces Using OMF
    Default Temporary Tablespace
    Managing Controlfiles Using OMF
    During database creation the controlfile names are not specified. Instead, a controlfile is created for each DB_CREATE_ONLINE_LOG_DEST_n specified in the init.ora file. Once the database creation is complete the CONTROL_FILES parameter can be set in the init.ora file using the generated names shown in the V$CONTROLFILE view.
    Managing Redo Log Files Using OMF
    When using OMF for redo logs the DB_CREAT_ONLINE_LOG_DEST_n parameters in the init.ora file decide on the locations and numbers of logfile members. For exmple:
    DB_CREATE_ONLINE_LOG_DEST_1 = c:\Oracle\Oradata\TSH1
    DB_CREATE_ONLINE_LOG_DEST_2 = d:\Oracle\Oradata\TSH1
    The above parameters mean two members will be created for the logfile group in the specified locations when the ALTER DATABASE ADD LOGFILE; statement is issued. Oracle will name the file and increment the group number if they are not specified.
    The ALTER DATABASE DROP LOGFILE GROUP 3; statement will remove the group and it members from the database and delete the files at operating system level.
    Managing Tablespaces Using OMF
    As shown previously the DB_CREATE_FILE_DEST parameter in the init.ora file specifies the location of the datafiles for OMF tablespaces. Since the file location is specified and Oracle will name the file, new tablespaces can be created using the following statement:
    CREATE TABLESPACE tsh_data;
    The resultant datafiles will have a default size of 100M and AUTOEXTEND UNLIMITED. For a specific size file use:
    CREATE TABLESPACE tsh_data DATAFILE SIZE 150M;
    To add a datafile to a tablespace use:
    ALTER TABLESPACE tsh_data ADD DATAFILE;
    If a tablespace is dropped, Oracle will remove the OS files also. For tablespaces not using the OMF feature this cleanup can be performed by issuing the statement:
    DROP TABLESPACE tsh_data INCLUDING CONTENTS AND DATAFILES;

  • How do I access my encrypted User Account files from my Back Up hard drive?  Time Machine  was used to create the back up disk; File Vault was used to encrypt the files.

    How do I access my encrypted User Account files from my Back Up hard drive?  Time Machine  was used to create the back up disk; File Vault was used to encrypt the files.

    Thanks.  I will try going through TM.  Since my Simpletech is on the way out, I'll be plugging in a new external hard drive (other than the back-up drive) and trying to restore the library to the new drive.  Any advice or warning if this is NOT the right thing to do?
    Meanwhile, that is a great tip to do an alternate back-up using a different means.  It's been tough to figure out how to "preserve access" to digital images and files for posterity, knowing the hardware will always fail/obsolesce sooner or later, and that "clouds" are only as good as their consistent and reliable accessibility.  Upping the odds with redundancy will help dull the edge of my "access anxiety", though logically, it can never relieve it.  Will look into
    Carbon Copy Cloner.

  • Create tablespace in Oracle 11g

    Windows 2008 R2 (64-bit OS)
    Oracle 11g R2 Standard Edition ONE(64-bit database)
    I use the following Oracle command to create tablespace in 11g.
    CREATE TABLESPACE TEST_TBS
    DATAFILE
    'C:\ORACLE\ORADATA\TEST_TBS01.DBF' SIZE 5M
    AUTOEXTEND ON NEXT 5M
    MAXSIZE 50000M;
    - The above command works fine.
    Is there any better commands i need to be using in creating a tablespace w.r.t. performance and management.

    TSharma wrote:
    it is recommended to have small sized blocks for OLTP, and big sized for DSS. The reasons:
    You can try different block sizes in tablespaces...
    On OLTP, a smaller block size reduces contention:
    1. Reduces the possibility of concurrent transaction and locks on the same block.
    2. Provides a better locking mechanism
    3. Less transacction locks possibilities at the block header.
    DSS benefit from big blocks mainly because of IO:
    1. Retrieves in less IO operations more data, which is critical for FTS and index scans.
    2. A higher row density means less IO
    3. Indexes retrieve information on a block per block basis, with big blocks indexes are retrieved with less IO
    4. Reduces the chances of chained rows.
    Check the following link for examples and details information.If johnpau needs a 50G file he has no choice: 16K blocks is the only option.
    But that advice about different blocksizes is very twentieth century. Nowadays, it doesn't matter.

  • Creating tablespace in Timesten

    Hi,
    I am trying to use Timesten as stand alone database. When I try to create tablespace from sqldeveloper, it is failing. Can anybody please
    let me know whether it is possible to create tablespaces or not.
    Thanks

    No, TimesTen does not have the concept of tablespaces. These are not relevant for an in-memory database. While TimesTen is similar to Oracle DB in many ways it is also very different to oracle DB in many other ways and has different concepts and terminology (and in some cases the same terminology but meaning something different to Oracle DB).
    Chris

  • OCR and VOT disk, in the same asm disk or different disks ?! and how ?!

    What Oracle recommends regarding the OCR and Voting disks in Rac 11gR2 on ASM ?!
    Making them under the same disk or different disks ?!
    and how ?!
    Thanks a lot,
    Regards,
    Gehad.

    Best practice is that OCR/Voting should be under ASM. Making them under the same disk or different disks depends upon the ASM diskgroup. If we want to keep it on seperate failover groups then we should create muliple failover group.
    For external : 1 ; Normal : 3 and higher : 5 asm diskgroups.
    I hope i would be clear ith my answers.
    Regards,
    Dheeraj Vaish

  • W2k8R2 Windows Backup - BMR on different disk configuration - How to move one parition of three parition to an other raid-disk?

    Hello folks,
    I need your help in following situation.
    My source-system has 1 RAID5 (600GB) over 5 HDDs. On the RAID-Disk are one primary partition (250GB) and 1 extended partitions (350GB).
    Because the hardware is out of support, I will migrate it to new hardware-server. I must minimized the downtime and the administrative effort. So I can't reinstall a new windows-installation, because 4 different software-licences are binding on SID. Additional
    a DFS-R is configured, so I need some hours to reconfigure it.
    The new destination-system has one RAID1 (300GB) that I will use it for windows-system, and one RAID 6 (1TB) that is planed for data.
    I has make a full backup (with all Critical) by using Windows Server Backup to a NAS storage. Than I has boot my destination system from Windows Server 2008 R2 media, and will make a recover. All Hard Disk is detected, after I install the storage-drivers. When
    I confirm the last step in windows-server-backup, windows-backup stop with error "Not enough space on harddisk 0"
    How can I move the extended partition to harddisk 1 (RAID6) durring BMR??? I cann't exclude the volume in backup-procedure, because the DFS-R is installed with some share on this disk.
    Has anyone a idea?
    Best regards

    Hi,
    I'm afraid we will not get it resolved. BMR will restore the partition information so you need at least a 600GB disk/RAID to restore both Drive C and D - it will create partitions on disk/RAID but cannot be separated restore to different disks/RAIDs.
    How about get another 300GB disk and change your system RAID from RAID1 to RAID5. (Or change RAID1 to RAID0 but of course you will lose fault tolerance ability).
    If you have any feedback on our support, please send to [email protected]

  • Error in create tablespace statement

    Hello
    I'm try create a tablespace in oracle 10g r2 database, but this don't support the unlimited parameters. It's true?
    See the statement:
    SQL> CREATE TABLESPACE "DESENV"
    LOGGING
    DATAFILE 'c:\dados\basesoracle\orcl10g\desenv.ora' SIZE 2700M REUSE
    AUTOEXTEND ON
    NEXT 50M
    UNLIMITED
    EXTENT MANAGEMENT LOCAL
    SEGMENT SPACE MANAGEMENT AUTO
    UNLIMITED
    ERROR at line 6:
    ORA-02180: invalid option for CREATE TABLESPACE

    My old version was oracle8i. He's support this s "unlimited".
    This mean not define a limit alocation space in disk to database file.

  • ZFS Configuration - getting different disk target numbers

    Hi ,
    We are in the process of configuring Oracle 11gR2 RAC, we are using ZFS as ISCSI storage. getting different disk target numbers on both machines. ( disk 4,5 and 6). to configure ASM we need to set the them unique, please help us to reset volume names.
    i.e.
    4. c2t25d0 <DEFAULT cyl 3580 alt 2 hd 128 sec 32>
    Disable ISCSI Multipathing on dev2 and dev3:
    cat /kernel/drv/iscsi.conf
    set mpxio-disable="yes"
    [root@dev3 /]$ format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
           0. c1t0d0 <DEFAULT cyl 17845 alt 2 hd 255 sec 63>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@0,0
           1. c1t1d0 <DEFAULT cyl 17845 alt 2 hd 255 sec 63>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@1,0
           2. c1t2d0 <SEAGATE-ST914602SSUN146G-0603-136.73GB>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@2,0
           3. c1t3d0 <SEAGATE-ST914602SSUN146G-0603-136.73GB>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@3,0
           4. c2t25d0 <DEFAULT cyl 3580 alt 2 hd 128 sec 32>
              /iscsi/[email protected]%3A02%3Aadfcea0d-d88e-e052-eeaa-d523fb12bce40001,0
           5. c2t26d0 <DEFAULT cyl 39159 alt 2 hd 255 sec 63>
              /iscsi/[email protected]%3A02%3Aa0833922-e008-c492-c50e-fe09b494248f0001,0
           6. c2t27d0 <DEFAULT cyl 65267 alt 2 hd 255 sec 63>
              /iscsi/[email protected]%3A02%3A66ba50e2-51ce-665d-e32c-d8449d1e7ec10001,0
    [root@dev4 /]$ format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
           0. c1t0d0 <DEFAULT cyl 17845 alt 2 hd 255 sec 63>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@0,0
           1. c1t1d0 <DEFAULT cyl 17845 alt 2 hd 255 sec 63>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@1,0
           2. c1t2d0 <SEAGATE-ST914603SSUN146G-0868-136.73GB>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@2,0
           3. c1t3d0 <SEAGATE-ST914603SSUN146G-0868-136.73GB>
              /pci@0,0/pci1022,7458@11/pci1000,3060@4/sd@3,0
           4. c2t23d0 <DEFAULT cyl 39159 alt 2 hd 255 sec 63>
              /iscsi/[email protected]%3A02%3Aa0833922-e008-c492-c50e-fe09b494248f0001,0
           5. c2t24d0 <DEFAULT cyl 65267 alt 2 hd 255 sec 63>
              /iscsi/[email protected]%3A02%3A66ba50e2-51ce-665d-e32c-d8449d1e7ec10001,0
           6. c2t25d0 <DEFAULT cyl 3580 alt 2 hd 128 sec 32>
              /iscsi/[email protected]%3A02%3Aadfcea0d-d88e-e052-eeaa-d523fb12bce40001,0Regards,
    Sachin

    I have no room for the ZFS partition on a slice. I
    have a lot of free space unallocated to any partition
    and this is where I would like the ZFS partition.You would need to allocate it to one yourself.
    I
    saw a lot of confusion between slices and
    partitions.Yes. In many cases they are used interchangably.
    However, I often try to use the term "slice" for the solaris label subdivision, leaving "partition" to refer to x86 architecture-specific divisions.
    Solaris on x86 can only (easily) use a single x86 partition of type "Solaris". You can't use another partition (whether with ZFS or not).
    In my case, I have a 20GB partition where I have 10
    slices created when I installed Solaris on UFS.
    The 120GB left is not allocated to any slice.If it's visible to the Solaris label, then allocate it to a slice.
    Darren

  • CREATE TABLESPACES

    i need your advise:
    is advisable to create tablespaces on folder where it is database file as (redo, system, controlfiles) or is better to create a folder on other disk for creating tablespaces.
    thanks..

    The whole concept of dealing with datafiles, controlfiles & logfiles on the disk layer is a little outdated, in my view.
    On a very small system - you have just 2 drives - then yes: It is important to use a separate drive to store your backups & archivelogs and to put your mirrored controlfiles & logfile members on. In other words: one drive for the Recovery Area. The other drive is for the Database Area.
    For a database of significant size and/or with I/O Performance critical, you will use as many drives as you can get and Stripe And Mirror Everything (SAME) upon those drives - with 2 ASM diskgroups (One Database Area, one Recovery Area) preferrable. ASM is the technical Implementation of the SAME concept.
    Kind regards
    Uwe Hesse
    http://uhesse.wordpress.com

  • Create tablespace command

    Here is the question...
    Assuming an existing tablespace with the same datafile name as a new one being created for a different instance. Is is possible to corrupt the existing datafile by using the SAME datafile path in the create tablespace command by misake.
    The existing tablespace (and datafile) are in use by the other instance at the time of teh execution of the erroneous create tablespace command.
    I would think (bad thing to do) it would be an O/S error to attempt to re-create the datafile with the same name as an existing and mounted datafile of the same O/S name and that the O/S would have prevented any corruption.

    That is what I thought, and evidently Oracle DID complain and rejected the create tablespace command, but it went ahead and corrupted the existing file of the other database anyway, which went unnoticed until the next "bounce" for backups on the affected database. The alert log on the affected database recorded numerous ORA-0600 starting at the time of the create tablespace on the other database.
    The corruption consisted of rendering the datafile SIZE (number of blocks) out of synch with what was stored in the control file.
    I just got a response back from Metalink that said they were able to re-created the behavior there on Windows, I am awaiting their reply regarding the behavior on UNIX.
    Thank you for your consideration of my question and your reply.

  • Thread : created tablespace not seen wihle querying database

    hi there,
    I have create tablespace but when i queried database it is not showing its existence
    here are steps which i used to create tablespace------
    create tablespace ts_corrupt
    datafile '/PGHProdDB/oradata/paceview/ts_corrupt01.dbf'
    size 10m autoextend on next 5m
    extent management local
    segment space management auto
    tablespace created.
    create user usr_corrupt identified by usr_corrupt
    default tablespace ts_corrupt
    quota unlimited on ts_corrupt
    User created.
    grant connect , resource to usr_corrupt
    Grant succeeded.
    conn usr_corrupt/usr_corrupt
    Connected.
    create table t_corrupt as select * from all_objects
    table created
    but when i query to see the appropriate datafile
    conn / as sysdba
    SQL> select * from v$dbfile;
    FILE#
    NAME
    5
    /PGHProdDB/oradata/paceview/example01.dbf
    4
    /PGHProdDB/oradata/user00.dbf
    3
    /PGHProdDB/oradata/paceview/sysaux.dbf
    FILE#
    NAME
    2
    /PGHProdDB/oradata/paceview/undotbs1.dbf
    1
    /PGHProdDB/oradata/paceview/system.dbf
    and run rman backup-------------
    rman terget /
    RMAN> backup incremental level 1 cumulative database;
    Starting backup at 28-AUG-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=28 devtype=DISK
    channel ORA_DISK_1: starting incremental level 1 datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=/PGHProdDB/oradata/paceview/system.dbf
    input datafile fno=00003 name=/PGHProdDB/oradata/paceview/sysaux.dbf
    input datafile fno=00002 name=/PGHProdDB/oradata/paceview/undotbs1.dbf
    input datafile fno=00004 name=/PGHProdDB/oradata/user00.dbf
    input datafile fno=00005 name=/PGHProdDB/oradata/paceview/example01.dbf
    channel ORA_DISK_1: starting piece 1 at 28-AUG-12
    it is not showing "t_corrupt" tablespace while taking backup
    now problem is arising where is my newly created datafile ?
    thanks
    regards
    Edited by: abdul_ora on Aug 29, 2012 11:08 AM

    i did what you people suggest me---
    mr. Yasir Hashmi     as you asked --
    If it is not in the alert log, oracle has no record of it.
    Are you sure you really created it?
    Create it again and verify it from alert log.so i have created it again and this time its showing in alertlog.
    mr. harry76 as you asked---
    It will be in uppercase in the logfile if it is there?no, not at all i havent find it .
    :There must be 2 databases involved here - and the initial scripts you ran must be against the other database.I am fated that i have run that command on specific database as USER is still exist which i had created.
    Can you recall your command history?history showing me that i corrupted the one of that tablespace(ts_corrupt) block to recover it from recoverblock command
    by the way i know you people are helping me out so much that i learn alot from this kind of mistakes
    thank you for giving me your precious consideration and scarce time :) and need more as my curiosity is increasing
    Edited by: abdul_ora on Aug 28, 2012 4:52 PM

  • (10g) Possible to create tablespace on USB hard drive?

    I've been trying unsuccessfully to get something to work, without success so far. After the hurricanes of recent years we realized that with widespread power outages and network problems, being able to put our database on standalone laptops would be very useful for our field people. The full database is too large, but if I exclude the stored documents, it becomes manageable. Unfortunately, my management wants to have the option of including some documents. My thought was to create a separate tablespace to hold just that table, and put the tablespace on a USB hard drive, so if the field scientist didn't want the documents, they could just leave the external hard drive in the office. But I can't create the tablespace to test this out - I keep getting an ORA-27044 "unable to write header block" followed by "There is not enough space on the disk". I'm trying to create a 10GB tablespace, the external drive has 300GB free. Am I running into a Windows/USB restriction?
    (I know there would be a problem with not having the tablespace available if the field guy didn't take the USB drive, but I'm trying to get past this problem first)
    Thanks,
    Harry

    I currently have a 4GB pendrive but not a USB external hard disk.
    I have been able to create a tablespace on this pen drive (I ensured that the pen drive always mounts with a particular drive letter only). I am using Oracle 11.1.0.6.0 on Windows XP Professional 32 bit SP2.
    In following example, J: drive is my pen drive.
    SQL> create tablespace test datafile 'j:\data01.dat' size 1M;
    Tablespace created.
    SQL> select * from v$tablespace;
           TS# NAME                           INC BIG FLA ENC
             0 SYSTEM                         YES NO  YES
             1 SYSAUX                         YES NO  YES
             2 UNDOTBS1                       YES NO  YES
             4 USERS                          YES NO  YES
             3 TEMP                           NO  NO  YES
             6 EXAMPLE                        YES NO  YES
             7 TEST                           YES NO  YES
    7 rows selected.
    SQL> create table testtable (id number) tablespace test;
    Table created.
    SQL> insert into testtable select object_id from user_objects;
    29730 rows created.
    SQL> commit;
    Commit complete.
    SQL> drop tablespace test including contents and datafiles;
    Tablespace dropped.
    SQL> select * from v$tablespace;
           TS# NAME                           INC BIG FLA ENC
             0 SYSTEM                         YES NO  YES
             1 SYSAUX                         YES NO  YES
             2 UNDOTBS1                       YES NO  YES
             4 USERS                          YES NO  YES
             3 TEMP                           NO  NO  YES
             6 EXAMPLE                        YES NO  YES
    6 rows selected.

Maybe you are looking for

  • MobileMe and working on a site between multiple Macs

    In an article I was reading, the following was noted: iDisk balks at file packages like iWeb's Domain.sites2 file, making it +difficult for MobileMe users to work on an iWeb site between multiple Macs+. Does that mean working at the same time? Or, if

  • Download error on download fro mItunes.

    I tried purchasing a movie from my Iphone in Itunes and had a problem downloading. It will not allow me to continue downloading and I was not charged for the movie. The problem is it did not vanish from my downloads and continues to try and download

  • ITunes keeps re-configuring after opening

    My problem is my itunes keeps re-configuring each time i open up iTunes, this usually only happens after an update, then you agree to some terms .... etc. Now it happens everytime! I had this problem b4 but i forgot how i fixed it. "Please wait while

  • Completion date for notification, IW22

    when i tried to set the completion date for a notification through IW22 am not able to view the completion date and completion time inputs in the popup screen, only reference date and reference time is showing can this be due any status set to that n

  • Doubt about Link Button

    Hi,All I have created a master data and i registered object of it. Now in find-mode i am able to get CFL of that master data. Also i m assiging that CFL vale into some other form. it's working fine But my problem is im assiging my CFL into matrix cel