Change the permission of table space
To change the permission of table space to read write use following sql command
alter tablespace TFR_REP read write;
Hello World. This is my First of First Blog. Here I will try to write things related to what I learn, Since I am kinda obsessed with Technology’s lineage. I, being a Java professional, love Java profoundly and so tried to make a blog that will help you and me of course to be in touch with new happenings in the field of technology. I may soon start a discussion forum based on Java, for that we need to wait a while, after all , not always, good things are FREE….
To change the permission of table space to read write use following sql command
alter tablespace TFR_REP read write;
Posted by Unknown at 2:55 AM 0 comments
Labels: oracle, tablespace
first connect with the system on the database where you have created this user.
alter user AHSAN_TFR default tablespace TFR_REP quota unlimited on TFR_REP;
must assign quota otherwise you cannot run any SQL statement.
Posted by Unknown at 10:34 PM 0 comments
Labels: oracle, tablespace
To know the tablespace assigned to a user run following query on sqlplusSphere: Related Content
select USERNAME,
CREATED,
PROFILE,
DEFAULT_TABLESPACE,
TEMPORARY_TABLESPACE
from dba_users
order by USERNAME
Posted by Unknown at 5:27 AM 0 comments
Labels: oracle, tablespace, user
Here we will first create a tablespace and then we will create a user for that tablespace.
create tablespace ahsan
add datafile 'e:\ahsan.dbf' size 100 m;
create user ahsan identified by welcome
default tablespace ahsan temporary tablespace temp;
grant create session, connect, resource to ahsan;
Hence now you are ready with the new tablespace and a new user that belongs to the ahsan tablespace;
Posted by Unknown at 8:59 AM 0 comments
Labels: oracle, schema, tablespace