I made another new user and I revoked (I hope this is what I am supposed to do?) quota on USERS (See below) and I still get the error.
drop user test_user cascade;
commit;
create user test_user identified by test_user
default tablespace woodlands_data
temporary tablespace temp
quota unlimited on woodlands_data
quota unlimited on temp
quota 0 on USERS
profile default;

grant resource to test_user;
grant connect to test_user;



revoke unlimited tablespace from test_user;

I cannot import as this user(test_user) becuase it was exported as another user (an offsite client of ours).

I ran the import(see below)...
imp.exe system/@oracle817 file=DRVG$Mon.dmp fromuser=wts_office touser=test_user GRANTS=N log=import_DRVG.log

and I get the same error - a few tables out of hundreds are trying to be created on USERS.


I can try to ask the customer to change their storage parameters and re-export but there has to be a way to prevent or dictate where objects are created on my side?

Is it becuase I am importing as system? Should I create a user with DB priveledges and revoke access to system and sys and USERS tablespace becuase it is the user that is logging on using the imp.exe program (in my case system) and maybe that is how it is getting at the USERS tablespace????