+ Reply to Thread
Results 1 to 3 of 3

Thread: Managing Rollback segment in database

  1. #1
    GonzalezBrown is offline Senior Member
    Join Date
    Dec 2009
    Posts
    260
    Rep Power
    3

    Default Managing Rollback segment in database

    I am getting error during design of table in database and the error is as follows:

    ORA-01552: cannot use system rollback segment for non-system tablespace 'USERS'

    When I go ahead to create the rollback segment for USERS tablespace,It happen some error again which is below

    ORA-30574: Cannot create rollback segment in tablespace with AUTO segment space
    management

    Can someone help and suggest me regarding this.
    Thanks.

  2. #2
    LewisClark is offline Senior Member
    Join Date
    Dec 2009
    Posts
    260
    Rep Power
    3

    Default

    Code:
    CREATE TABLESPACE Rollbsc_tabs
       DATAFILE 'Rollbsc_tabs.dbf' SIZE 20M
       EXTENT MANAGEMENT LOCAL UNIFORM SIZE 120K;
    And then design a rollback segment which would be saved and managed by above designed tablespace.

    Code:
    CREATE ROLLBACK SEGMENT Rollbsc_frst
       TABLESPACE Rollbsc_tabs;

  3. #3
    WalkerCook is offline Senior Member
    Join Date
    Dec 2009
    Posts
    253
    Rep Power
    3

    Default

    Using DROP ROLLBACK segment, you can drop the rollback segment from the database, during deletion of rollback segment, the space taken by rollback segment is returned back to the tablespace:

    To drop the rollback segment:

    Code:
    DROP ROLLBACK SEGMENT <name_of_rollbacksegment>;

+ Reply to Thread

Similar Threads

  1. Kingston Digital SSD technology for the corporate segment
    By Jaeden Crawford in forum Storage
    Replies: 0
    Last Post: 11-09-2010, 05:39 AM
  2. set particular_user with rollback instant
    By HowardAllen in forum Software Jargons
    Replies: 1
    Last Post: 02-20-2010, 03:19 PM
  3. Replies: 0
    Last Post: 10-17-2009, 06:55 AM
  4. ARM will replace Intel in the segment of netbooks and smartbook
    By david harlow in forum Latest Hardware News
    Replies: 0
    Last Post: 09-30-2009, 05:51 AM
  5. Software make to the Enterprise segment
    By simona in forum General Software Terms
    Replies: 1
    Last Post: 04-06-2009, 07:47 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48