quota

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • holdingbe
    New Member
    • Jul 2007
    • 78

    quota

    Hi all,
    How to drop quota's in the oracle..


    thanks
    Michael
  • amitpatel66
    Recognized Expert Top Contributor
    • Mar 2007
    • 2358

    #2
    Please provide more information/script that you have tried to work on?

    Comment

    • nramrits
      New Member
      • Sep 2007
      • 18

      #3
      Originally posted by holdingbe
      Hi all,
      How to drop quota's in the oracle..


      thanks
      Michael
      pls explain clearly, what do u want..

      Comment

      • laconicamit
        New Member
        • Jul 2007
        • 18

        #4
        See,

        To knw on which Tablespace, user had the permissions:

        Eg.
        Select tablespace_name from dba_ts_quotas where username=<usern ame>;

        and if you want that user shud not have quota over those tablespace, you can simply alter that user:

        Eg.
        Alter user <username> quota 0 on <tablespace_nam e>;

        I hope that solves your purpose, If I have assumed you correctly :D

        Comment

        Working...