When do i need to create table spaces ?

hi all,
i know that any database has one table space and one data file at first creation , but
when do i need to create another table space or data file ? do i need that when oracle tells me that there is no space anymore or what ?
thanks

newbi_egy wrote:
hi all,
i know that any database has one table space and one data file at first creation , but
when do i need to create another table space or data file ? do i need that when oracle tells me that there is no space anymore or what ? In oracle database, the concept of storage segregation is done by two ways, using the schema and using the tablespace. So assume that you have two applications . One is used for HR related work and another is used for Finance and both kind of data is stored in one single database only. So how would you maintain such requirement? There are two ways to do it. One, you make two different schemas for each of the application and call them, for example HR schema and Fin schema. Now, you can create objects related to each of the application in it's own schema and store it in may be a single tablespace, Users. But this is going to be a little problematic like what would happen if you have lost the data file of that tablespace? You would be losing the data related to both the applications. So the better option would be to use two different tablespaces and store the data related to each application in both of them.
Understand that tablespace is a logical structure only. The only thing that's physical is going to be those data files which are stored under the tablespace. So if you are just running out of space in a data file of a tablespace, you do not need to create another tablespace. Take it like this that if you are running out of space for your family in the house, you can either make a new house for them or you can even build a new floor for them. Which one would be easier to manage, the new floor since a lot of ground work is already done for you. And that's what is the case if you have run out of the space in the data file. For this,you can simply create a new datafile(building a new floor) or even extend the existing one(construct a new room in the same floor, if you have space) . But creating a new tablespace won't be something that you should be doing for the reason of space being exhausted IMO.
Aman....

Similar Messages

  • When do i need to create SID adm user?

    Hi All,
       I am new to XI.I am trying to install XI on windows 2003 and sqlserver. I am done with the following without any error?
    1. OS and its service packs
    2. Sql Server and patches.
    3.Central instance
    4. DB instance
    5. Installed sap gui.
    I have logged in as administrator and installed the above stuff.
    1. When do i need to create <SID>adm user?
    2. Do i need to use <SID>adm to install the XI?
    3. When i logged in to sapgui, i am getting host name error. Do i need to change hosts file?
    Thank you
    Ganges Leaves
    Message was edited by: Ganges Leaves

    Hi Ganges,
    Pls have a look into this SAP Material
    https://websmp209.sap-ag.de/~sapidb/011000358700009389172004E.PDF
    http://help.sap.com/bp_bpmv130/Documentation/Installation/XI30InstallGuide.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a5550de0-0701-0010-a8b4-9fd433a080f3
    <i>4. When i logged in to sapgui, i am getting host name error. Do i need to change hosts file?</i>
    >>> Just ping the IP address and check that are u able to connect. Also check with Browser .
    Hope this helps,
    Regards,
    Moorthy

  • Need to create Table Maintenance with more than 400 characters

    I need to create table maintenance in which one filed have more than 400 characters. CHAR type support between 1-255 & STRING type not supported by Table Maintenance. Is there any alternative type or solution for that?

    Hi,
    If  you assign TMG to the table, it will throw error as unable to display the field on screen. why because it can able to display upto 255 char length only.
    For this requirement you have 2 solutions :
    1) Create multiple fields and your Z table, split the data and store them as required.
    2) Create a TEXT ID and store it as a long text using FM CREATE_TEXT.
    or
    This type of text should be treated as Long Text.
    And the steps are:
    1. Create Text Object Using SE75.
    2. Create Text ID Using SE75.
    3. Now you have to Save the text with FM SAVE_TEXT.
    For example:
    The Most simple solution for it can be that Divide the field REMARKS of size 1000 in multiples of 200 characters like REMARK1, REMARK2....REMARKn.
    Now you can create two FMs :
    zset_data: To Store 1000 char long data in Table
    Here you will divide the data of Variable (type char1024) in multiples of 200 and will store in REMARK1, REMARK2.....
    zget_data: To Get 1000 char long data back from Table
    Here you will concatenate REMARK1, REMARK2..... and will store in Variable of Type char1024.
    This is the best solution if Table is not going to be maintained by Table Maintenance Generator.
    regards,
    ravi

  • Create table space command with no specification of data file path.

    I am using following command for creating table space in oracle 11g
    CREATE TABLESPACE testTbSpace DATAFILE 'dataFileName.dbf' SIZE 50M REUSE AUTOEXTEND ON NEXT 1M MAXSIZE 32767M NOLOGGING"
    But it is creating datafile dataFileName.dbf at disk at following path
    echo $ORACLE_HOME/dbs
    I dont want to create datafile at this path and also dont want to specify data file path in 'create table space' command.
    Is there is any parameter,which i can set and above command start to create dataFileName.dbf at that path
    Edited by: user8680179 on May 15, 2012 1:54 AM

    user8680179 wrote:
    i issued following commands from 'SYS' user;
    1. show parameter db_create_file_dest;
    NAME TYPE VALUE
    db_create_file_dest string
    2.alter system set db_create_file_dest='dataFilePath';
    System altered.
    3.show parameter db_create_file_dest;
    NAME TYPE VALUE
    db_create_file_dest string dataFilePath
    4.CREATE TABLESPACE testTbSpace2 DATAFILE 'test1.dbf' SIZE 50M REUSE AUTOEXTEND ON NEXT 1M MAXSIZE 32767M NOLOGGING;
    Tablespace created.
    But still my test1.dbf file is creating at old path($ORACLE_HOME/dbs)Is datafilepath a real location? I don't think so! Give a proper path like "d:\oracle\" and retry.
    Aman....

  • Do i need to create table manually for disconnected analytics?

    Hi, i wanna ask, when i create a disconnected analytics client, do i need to create the table manually for SQL Anywhere? Or it has another means?
    Thanks.

    Thanks John
    I just find the answer
    Yes, it's recomeded to add new group , for instnace If I have 10 group from 1 to 10 then the standby shoudl be from 11 to 20
    Thanks I found the answer.

  • Query plan changes when query is used in CREATE TABLE AS

    We've puzzled by the fact that EXPLAIN PLAN gives a much different output for a SELECT statement than it does when the same statement is used for CREATE TABLE . . . AS SELECT.
    The bad part is that the CREATE TABLE version performs very badly, and that's what we want the query for.
    Why does this happen? Is there a difference (from the database's point of view) between retrieving a set of rows to display to the user and putting that same set into a new table? Doesn't this make it harder to diagnose and fix query performance problems?
    Here's our query:
    create table query_test AS
    select term, parentTerm, apidb.tab_to_string(cast(collect(trim(to_char(internal)))
                       as apidb.varchartab), ', ') as internal
                 from (
                     select distinct ga.organism as term,
                                     ga.species as parentTerm,
                                     tn.taxon_id as internal
                     from apidb.GeneAttributes ga, SRES.TaxonName tn, sres.Taxon t,
                          dots.AaSequence aas, dots.SecondaryStructure ss
                     where ga.organism = tn.name
               and tn.taxon_id = t.taxon_id
                       and t.taxon_id = aas.taxon_id
       and aas.aa_sequence_id = ss.aa_sequence_id
               and t.rank != 'species'
               union
                     select distinct ga.species as term,
                       '' as parentTerm,
                                     ts.taxon_id as internal
                     from apidb.GeneAttributes ga, SRES.TaxonName tn, apidb.taxonSpecies ts,
                          dots.aasequence aas, dots.SecondaryStructure ss
                     where ga.organism = tn.name
                      and tn.taxon_id = ts.taxon_id
                      and ts.taxon_id = aas.taxon_id
                     and aas.aa_sequence_id = ss.aa_sequence_id
       group by term,parentTerm;Without the CREATE TABLE, the plan looks like this:
    | Id  | Operation                             | Name                      | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | CREATE TABLE STATEMENT                |                           |  2911 |  5986K|       | 18840   (1)| 00:03:47 |
    |   1 |  LOAD AS SELECT                       | QUERY_TEST                |       |       |       |            |          |
    |   2 |   VIEW                                |                           |  2911 |  5986K|       | 18669   (1)| 00:03:45 |
    |   3 |    SORT GROUP BY                      |                           |  2911 |   332K|       | 18660   (1)| 00:03:44 |
    |   4 |     VIEW                              |                           |  2911 |   332K|       | 18659   (1)| 00:03:44 |
    |   5 |      SORT UNIQUE                      |                           |  2911 |   292K|       | 18659   (6)| 00:03:44 |
    |   6 |       UNION-ALL                       |                           |       |       |       |            |          |
    |*  7 |        HASH JOIN                      |                           |  2907 |   292K|  2160K| 17762   (1)| 00:03:34 |
    |   8 |         TABLE ACCESS FULL             | GENEATTRIBUTES10650       | 40957 |  1679K|       |   795   (1)| 00:00:10 |
    |*  9 |         HASH JOIN                     |                           | 53794 |  3204K|  1552K| 16675   (1)| 00:03:21 |
    |* 10 |          HASH JOIN                    |                           | 37802 |  1107K|       | 12326   (1)| 00:02:28 |
    |* 11 |           HASH JOIN                   |                           | 37945 |   629K|       | 10874   (1)| 00:02:11 |
    |  12 |            INDEX FAST FULL SCAN       | SECONDARYSTRUCTURE_REVIX9 | 37945 |   222K|       |    33   (0)| 00:00:01 |
    |  13 |            INDEX FAST FULL SCAN       | AASEQUENCEIMP_REVIX6      |  7886K|    82M|       | 10816   (1)| 00:02:10 |
    |* 14 |           TABLE ACCESS FULL           | TAXON                     |   514K|  6530K|       |  1450   (1)| 00:00:18 |
    |  15 |          TABLE ACCESS FULL            | TAXONNAME                 |   760K|    22M|       |  2721   (1)| 00:00:33 |
    |* 16 |        HASH JOIN                      |                           |     4 |   380 |       |   886   (1)| 00:00:11 |
    |  17 |         NESTED LOOPS                  |                           |   730 | 64970 |       |   852   (1)| 00:00:11 |
    |* 18 |          HASH JOIN                    |                           |     1 |    78 |       |   847   (1)| 00:00:11 |
    |  19 |           NESTED LOOPS                |                           |       |       |       |            |          |
    |  20 |            NESTED LOOPS               |                           |    17 |   612 |       |    51   (0)| 00:00:01 |
    |  21 |             TABLE ACCESS FULL         | TAXONSPECIES10646         |    12 |    60 |       |     3   (0)| 00:00:01 |
    |* 22 |             INDEX RANGE SCAN          | TAXONNAME_IND01           |     1 |       |       |     2   (0)| 00:00:01 |
    |  23 |            TABLE ACCESS BY INDEX ROWID| TAXONNAME                 |     1 |    31 |       |     4   (0)| 00:00:01 |
    |  24 |           TABLE ACCESS FULL           | GENEATTRIBUTES10650       | 40957 |  1679K|       |   795   (1)| 00:00:10 |
    |* 25 |          INDEX RANGE SCAN             | AASEQUENCEIMP_REVIX6      |   768 |  8448 |       |     5   (0)| 00:00:01 |
    |  26 |         INDEX FAST FULL SCAN          | SECONDARYSTRUCTURE_REVIX9 | 37945 |   222K|       |    33   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       7 - access("GA"."ORGANISM"="TN"."NAME")
       9 - access("TN"."TAXON_ID"="T"."TAXON_ID")
      10 - access("T"."TAXON_ID"="TAXON_ID")
      11 - access("AA_SEQUENCE_ID"="SS"."AA_SEQUENCE_ID")
      14 - filter("T"."RANK"<>'species')
      16 - access("AA_SEQUENCE_ID"="SS"."AA_SEQUENCE_ID")
      18 - access("GA"."ORGANISM"="TN"."NAME")
      22 - access("TN"."TAXON_ID"="TS"."TAXON_ID")
      25 - access("TS"."TAXON_ID"="TAXON_ID")
    46 rows selected.With the CREATE TABLE, the plan for the SELECT alone looks like this:
    | Id  | Operation                           | Name                      | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                    |                           |     2 |   234 |  1786   (1)| 00:00:22 |
    |   1 |  SORT GROUP BY                      |                           |     2 |   234 |  1786   (1)| 00:00:22 |
    |   2 |   VIEW                              |                           |     2 |   234 |  1785   (1)| 00:00:22 |
    |   3 |    SORT UNIQUE                      |                           |     2 |   198 |  1785  (48)| 00:00:22 |
    |   4 |     UNION-ALL                       |                           |       |       |            |          |
    |*  5 |      HASH JOIN                      |                           |     1 |   103 |   949   (1)| 00:00:12 |
    |   6 |       NESTED LOOPS                  |                           |   199 | 19303 |   915   (1)| 00:00:11 |
    |   7 |        NESTED LOOPS                 |                           |    13 |  1118 |   850   (1)| 00:00:11 |
    |   8 |         NESTED LOOPS                |                           |    13 |   949 |   824   (1)| 00:00:10 |
    |   9 |          VIEW                       | VW_DTP_E387155E           |    13 |   546 |   797   (1)| 00:00:10 |
    |  10 |           HASH UNIQUE               |                           |    13 |   546 |   797   (1)| 00:00:10 |
    |  11 |            TABLE ACCESS FULL        | GENEATTRIBUTES10650       | 40957 |  1679K|   795   (1)| 00:00:10 |
    |  12 |          TABLE ACCESS BY INDEX ROWID| TAXONNAME                 |     1 |    31 |     3   (0)| 00:00:01 |
    |* 13 |           INDEX RANGE SCAN          | TAXONNAME_IND02           |     1 |       |     2   (0)| 00:00:01 |
    |* 14 |         TABLE ACCESS BY INDEX ROWID | TAXON                     |     1 |    13 |     2   (0)| 00:00:01 |
    |* 15 |          INDEX UNIQUE SCAN          | PK_TAXON                  |     1 |       |     1   (0)| 00:00:01 |
    |* 16 |        INDEX RANGE SCAN             | AASEQUENCEIMP_REVIX6      |    15 |   165 |     5   (0)| 00:00:01 |
    |  17 |       INDEX FAST FULL SCAN          | SECONDARYSTRUCTURE_REVIX9 | 37945 |   222K|    33   (0)| 00:00:01 |
    |  18 |      NESTED LOOPS                   |                           |     1 |    95 |   834   (1)| 00:00:11 |
    |  19 |       NESTED LOOPS                  |                           |     1 |    89 |   833   (1)| 00:00:10 |
    |* 20 |        HASH JOIN                    |                           |     1 |    78 |   828   (1)| 00:00:10 |
    |  21 |         NESTED LOOPS                |                           |       |       |            |          |
    |  22 |          NESTED LOOPS               |                           |    13 |   949 |   824   (1)| 00:00:10 |
    |  23 |           VIEW                      | VW_DTP_2AAE9FCE           |    13 |   546 |   797   (1)| 00:00:10 |
    |  24 |            HASH UNIQUE              |                           |    13 |   546 |   797   (1)| 00:00:10 |
    |  25 |             TABLE ACCESS FULL       | GENEATTRIBUTES10650       | 40957 |  1679K|   795   (1)| 00:00:10 |
    |* 26 |           INDEX RANGE SCAN          | TAXONNAME_IND02           |     1 |       |     2   (0)| 00:00:01 |
    |  27 |          TABLE ACCESS BY INDEX ROWID| TAXONNAME                 |     1 |    31 |     3   (0)| 00:00:01 |
    |  28 |         TABLE ACCESS FULL           | TAXONSPECIES10646         |    12 |    60 |     3   (0)| 00:00:01 |
    |* 29 |        INDEX RANGE SCAN             | AASEQUENCEIMP_REVIX6      |   768 |  8448 |     5   (0)| 00:00:01 |
    |* 30 |       INDEX RANGE SCAN              | SECONDARYSTRUCTURE_REVIX9 |     1 |     6 |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       5 - access("AA_SEQUENCE_ID"="SS"."AA_SEQUENCE_ID")
      13 - access("ITEM_1"="TN"."NAME")
      14 - filter("T"."RANK"<>'species')
      15 - access("TN"."TAXON_ID"="T"."TAXON_ID")
      16 - access("T"."TAXON_ID"="TAXON_ID")
      20 - access("TN"."TAXON_ID"="TS"."TAXON_ID")
      26 - access("ITEM_1"="TN"."NAME")
      29 - access("TS"."TAXON_ID"="TAXON_ID")
      30 - access("AA_SEQUENCE_ID"="SS"."AA_SEQUENCE_ID")
    50 rows selected.Edited by: JohnI on Jul 18, 2011 2:19 PM
    Edited by: JohnI on Jul 18, 2011 2:28 PM

    Charles Hooper wrote a series of blog entries on a similar topic some time ago: http://hoopercharles.wordpress.com/2010/12/15/select-statement-is-fast-insert-into-using-the-select-statement-is-brutally-slow-1/ (including a lot of useful comments) and two following articles. I have to confess that I did not read the posts again - but I think you will find some good ideas how to analyze the problem.
    Regards
    Martin Preiss

  • Created Table space datafile  with out .dbf Extenstion

    Hi all,
    by mistake I added a datafile to a table space with out .dbf extension..
    ALTER TABLESPACE "MEDIA" ADD DATAFILE 'L:\ORACLE\ORADATA\MEDIAGATA02' SIZE 100M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE 32767M
    I could not rename it unless I set this table space off line . But this is a production server so I could set as off-line.
    1. Will my database function normally or would crash!!!..
    2. with out .dbf extension will the table space function ?
    3. will the data store can be retried in any case of database crash?
    regards
    S.K

    Check the size of the tablespace, if there aren't any data then drop the tablespace and create a new one.
    Regards
    Asif Kabir

  • Creating table spaces for

    This the formal RfC for phase 1 of the Migration of the "North" instance of webMethods (version 6.0.1) to the current "South" instance (version 6.5)
    Please also see attached detailed plan for the change and list of new Oracle / webMethods components to be installed as part of the change.
    <<Change Request_wM_North_Migration_Phase1.doc>> <<wM_Migration_Phase1_Detailed_Planning_v1.xls>> <<New_Oracle_wM_Installs_for_Migration.xls>>
    The tight planning of the change seeks to exploit the unique window of opportunity offered by the lack of major APS integration project betweem December 2006 and February 2006.
    plz if you can suggest me some thing about this.
    Kaur

    hi while creating a user you are having very few options like specifying default tablespace, temporary tablespace, allocating quota on tablespaces and setting profile etc.
    in your case while creating/after creating you need to allocate quota on the corresponding tablespaces where you are creating objects(tables).
    SQL> create user myuser identified by myuser
    default tablespace mytbs
    temporary tablespace temp
    quota 10m on mytbs
    quota 20m on tb1
    password expire
    profile myprofile;
    the quota you will specify is based on data growth of the table. for fastly growing tables, you require more quota.

  • I need to create more space on my Ipod Touch

    Hi, please could someone help me I recently got a new IPod Touch for my birthday and I have been adding new music on and generally having a Spring Clean organising and sorting my music out.  However when I have come to Synch my IPod the Other (yellow) bar has halved my music  memory and is currently standing at 20.98 which is a lot of memory to lose, I have literally run out of memory.   I have deleted everything I can possibly remove from Photos, Old Apps, Facebook etc leaving just the music and it hasn't made a difference.  My only conclusion is the apps I don't use the ones dictated to you by Apple they are the ones I need yo get rid of, please can someone help me by advising me on how to either get shut permanently the used apps like Stock Market or is there any other way in getting that yellow bar smaller.
    Many Thanks
    Jane

    An "other" larger than about 1 1/2 GB indicates corrupted files.
    What is the Other on my iPhone and How to Remove It
    What is "Other" and What Can I Do About It?
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up               
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Error in creating table space

    BR0370I Directory /oracle/NW4/sapreorg/sdybsgtj created
    BR0280I BRSPACE time stamp: 2008-06-05 10.12.05
    BR0301E SQL error -1587 at location BrCtlCopy-1, SQL statement:
    '/* BRSPACE */ ALTER DATABASE BACKUP CONTROLFILE TO '/oracle/NW4/sapreorg/sdybsgtj/cntrlNW4.old''
    ORA-01587: error during control file backup file copy
    ORA-27091: unable to queue I/O
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 515
    Additional information: -1
    BR0320E Copying of control file to /oracle/NW4/sapreorg/sdybsgtj/cntrlNW4.old failed
    BR0280I BRSPACE time stamp: 2008-06-05 10.12.05
    BR0700E Fatal errors occurred - terminating processing...
    BR1020I Number of tablespaces processed: 0
    BR1004E BRSPACE function 'tscreate' failed
    BR1008I End of BRSPACE processing: sdybsgtj.tsc 2008-06-05 10.12.05
    BR0280I BRSPACE time stamp: 2008-06-05 10.12.05
    BR1007I BRSPACE terminated with errors

    Hi again
    I still have no doubt, the filesystem is full, under linux df is often misleading especially when there are a lot of small files.
    BR0370I Directory /oracle/NW4/sapreorg/sdybsgtj created
    Why is there no directory /oracle/NW4/sapreorg/sdybsgtj ?
    Can you please try to create the control file in the sapreorg filesystem:
    ALTER DATABASE BACKUP CONTROLFILE TO '/oracle/NW4/sapreorg/cntrlNW4.old';
    If this fails, try to copy a controlfile to sapreorg:
    oranw4 % cp /oracle/NW4/sapdata1/cntrl/cntrlNW4.dbf /oracle/NW4/sapreorg/cntrlNW4.old
    If all this does not help, please have a look at /var/log/messages for io errors or something like this.
    Regards
    Michael

  • Error message on creating Table Space

    Hello All,
    I am new to Oracle and trying to create a database after Oracle 10g installation. These are the steps followed. This looks to be something wrong I am doing, can someone please help?
    SQL> Create Tablespace CLOUD_DATA datafile '$ORACLE_HOME/oradata/cloud_data01.dbf' size 1000M
    autoextend on;
    Create Tablespace CLOUD_DATA datafile '$ORACLE_HOME/oradata/cloud_data01.dbf' size 1000M
    autoextend on
    ERROR at line 1:
    ORA-01119: error in creating database file
    '$ORACLE_HOME/oradata/cloud_data01.dbf'
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the patch specified
    Regs, /TT

    give exact path of datafile inplace of $ORACLE_HOME.
    like
    Create Tablespace CLOUD_DATA datafile '/u01/app/oradata/cloud_data01.dbf' size 1000M

  • Creating table space

    Hi All,
    How shall I create TableSpace in 10g Express Edition. I am not able to find in the Home>Administration>Storage, here in "tasks" i find only 'View Tablespaces'.
    Please help out in creating this.
    Thanks

    login using your database username and passwd thats provided on install time and proceed this on the sql window.
    to create a tablespace as app1
    CREATE TABLESPACE app1
    DATAFILE 'app1' SIZE 500K REUSE
    AUTOEXTEND ON NEXT 500K MAXSIZE 100M;
    to create an user app1_user for the tablespace created
    create user app1_user identified by app1_user default tablespace app1;
    Message was edited by:
    pravkris

  • Help Need to Create more space

    Hi People,
    I have a Powerbook which has a total of 100gb in the Hard Drive. I have reached the stage where I have completely filled the hard drive with only 1.2gb. So the logical thing to do is buy a hard drive which I did with 1.5TB.
    This is what I did in the exact order:
    1. Copied the Macintosh Hard Drive of my computer into the External Hard Drive.
    2. Then I copied all of the files in my home folder into the External Hard Drive.
    3. I then made a copy of the pictures, music and videos into the External Hard Drive.
    4. I then deleted the folders in the Music, Pictures and Videos by sending it to the Trash Folder.
    5. Then I emptied the Trash Folder.
    5. I then reseted my computer and when I loaded it to my surprise the memory available was 1.48gb.
    I am not sure how this is possible because those three folders (Music, Movies and Pictures) come to at least 30gb. Can someone please tell me what I am doing wrong because I am now at the stage where I only 1.48gb which is not enough to do a security update.
    Thanks for the advice and HELP!!!!!!!!

    Specialist Entertainment:
    Copied the Macintosh Hard Drive of my computer into the External Hard Drive.
    Can you tell us exactly what you copied, and how you did it?
    Then I copied all of the files in my home folder into the External Hard Drive.
    Exactly what do you mean by "all of the files in my home folder"?
    I then made a copy of the pictures, music and videos into the External Hard Drive.
    Again, how did you do this?
    I then reseted my computer and when I loaded it to my surprise the memory available was 1.48gb.
    What do you mean by "I then reseted my computer"?
    Can you tell us exactly what you see on your external HDD?
    My guess is that you have duplicated some of the things that you have copied. Had you posted your question prior to attemting this project, we will have directed you to a much more efficient and effective way of doing it. Too late for that. Answering the questions above will give us an idea of what is going on, and we will be better able to direct you what to do next.
    cornelius

  • Getting error message while creating encrypted table space

    I have created an oracle wallet and while creating table space I am getting the following error..
    Please provide me some thougts on this
    Wallet status is below
    file    /usr/tp/sys/oracle/admin/ofss41d2/wallet    OPEN
    the tablespace creation syntax is
    CREATE TABLESPACE corxpr_app_dat DATAFILE '/data/oracle/oradata/ofss41d2/corxpr_app_dat.dbf' SIZE 10M AUTOEXTEND   ON ENCRYPTION USING 'AES256' DEFAULT STORAGE(ENCRYPT);
    The error is
    Error starting at line 7 in command:
    CREATE TABLESPACE corxpr_app_dat DATAFILE '/data/oracle/oradata/ofss41d2/corxpr_app_dat.dbf' SIZE 10M AUTOEXTEND   ON ENCRYPTION USING 'AES256' DEFAULT STORAGE(ENCRYPT)
    Error at Command Line:7 Column:0
    Error report:
    SQL Error: ORA-28374: typed master key not found in wallet
    I am using Oracle 11.2.0.3.0

    Hello Bharati,
             you need to give the value of the constant by selecting from the source parameter.Hope this answer helps you.
    Assigning Points = Thanks in SDN
    Thanks & Regards
       Jai

  • BRtools table space creation error

    hi,
    Iam trying to create new table space in my R/3 system. When i went to brtools - space management sytem throwing error owner failed.I tried with all users to login like ( <SID>adm,administrator etc ...)even then same problem.Could you please suggest how to create table space with what login id
    Error:
    Main options for creation of tablespace in database WA6
    1 - Tablespace name (tablespace) ......... [PSAPECDATA]
    2 - Tablespace contents (contents) ....... [data]
    3 - Segment space management (space) ..... [auto]
    4 - SAP owner of tablespace (owner) ...... [EC5ADM]
    5 - Data type in tablespace (data) ....... [both]
    6 # Joined index/table tablespace (join) . []
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR0662I Enter your choice:
    c
    BR0280I BRSPACE time stamp: 2006-06-14 21.08.45
    BR0663I Your choice: 'c'
    BR0259I Program execution will be continued...
    BR0824E Owner EC5ADM not found in database or not SAP owner
    BR0691E Checking input value for 'owner' failed
    BR0669I Cannot continue due to previous warnings or errors - you can go back to
    repeat the last action
    BR0280I BRSPACE time stamp: 2006-06-14 21.08.45
    BR0671I Enter 'b[ack]' to go back, 's[top]' to abort:
    Please suggest.
    - Cheers

    Login as ora<sid> and run brtools. Tablespace owner will be SAP<SID> or SAPR3 depends upon your version.
    Thanks
    Prince

Maybe you are looking for

  • Is it possible to easily run Microsoft office 2010 with access on a MacBook pro or have I wasted my money ?

    Okay , first off thanks for any help in advance . I just purchased a MacBook pro for my daughter for college . ( finance major ) . Her class requires Microsoft office 2010 with access .  As you probably already know , and I have just learned , that i

  • Two collect statement from internal table

    Dear Experts, I want populate values to two internal tables from a internal table. can i use two collect statement for different internal table from a single internal table. advise please. Thanks in advance. R.Rajendran

  • Issue with SKY GO

    All OK with Sky go until I downloaded IOS 5 now all I get is a message: Media Streaming Temporary streaming error. Please try another channel. When trying another channel it is the same and message repeats itself?

  • Importing PNG sequence from After Effects (or anywhere)

    From some reason when I'm importing a PNG sequence onto stage, it's loading all of the PNGs into one frame instead of distributing them into their own keyframes like it's supposed to. I've seen this problem posted before. Anybody have a solution for

  • Adobe Pagemaker installation

    I can't install Adobe Acrobat Distiller 6, needed by Adobe Pagemaker 7 to export pagemaker documents as pdfs, because I have a later version of Distiller, Adobe Acrobat Distiller IX. When I try to install I get the message "Setup has detected that yo