2

I want to know How to grant user access to additional tablespaces in Oracle? , because I have created two additional tablespaces, one for data and the other for indexes, like this discussion said:

Tablespaces in Oracle

I’m doing it for performance.

serv-inc
  • 35,772
  • 9
  • 166
  • 188
andrestoga
  • 619
  • 3
  • 9
  • 19
  • 2
    The answer you referenced said that tablespaces will not help performance. (Did you read it?) This is true today because "everyone" is using RAID disks. The "separate disk" approach was popular when everyone was using "just a bunch of SCSI disks." – redcayuga Apr 11 '11 at 19:51

1 Answers1

1

The old way was to grant quota on tablespacename to username, which allowed users to create objects on that tablespace. You can still do it that way, but there is a more current method (which I cannot recall at the moment).

MJB
  • 7,639
  • 2
  • 31
  • 41