I'm a little new to all this... I want to create a new tablespace that will contain all my tables and indexes.
first the tablespace code..
create tablespace Sales_T
datafile 'C:\oracle\product\10.2.0\oradata\project\dataexample.dbf'
size 100m
autoextend on next 100m;
and then the user that will be assigned on this space:
create user app_admin identified by "p4ss" default tablespace
sales_T temporary tablespace temp;
grant connect, resource to app_admin;
grant dba to app_admin;
Logging in to app_admin user, I can create tables but can't query or insert data into them, which privileges do I need to grant to?