DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: desc constraints of a table

  1. #1
    Join Date
    May 2000
    Location
    ahmedabad,gujarat,india
    Posts
    14
    i want to view all the constraints on a table,
    the space a table occupies
    how do i do it

  2. #2
    Join Date
    Aug 2000
    Location
    Belgium
    Posts
    342

    Smile

    1.

    select * from user_constraints where table_name = 'MYTABLE'

    2.

    select bytes,blocks from user_segments where segment_name = 'MYTABLE';

    Hope this helps
    Gert


  3. #3
    Join Date
    May 2000
    Location
    ahmedabad,gujarat,india
    Posts
    14

    IT HELPED

    THANKS.
    IT HELPED.

Posting Permissions

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


Click Here to Expand Forum to Full Width