I am trying to design an application. The application tables will have their respective tablespaces. All the tables will be stored only in their respective tables. None of them will go to SYSTEM or USERS tablepaces.

But when I create the user, I issue these commands

create user TEMP identified by temp
default tablespace users
temporary tablespace temporary;

then

alter user temp quota 0 to system;

alter user TEMP quota 0 to users;

The basic idea is , I don't want the user TEMP to take any space from USERS tb or SYSTEM tb. Is it OK. And what happens to all CONSTRAINTS. Where do they go. All Index's also will automatically go to respective index tb.