Create a schema with a single table
drop user <username> cascade
create user <username> identified by <password>
grant sysdba to <username>
grant all privileges to <username> identified as <password>
create table dbatdb.userinfo(UserId varchar2(50),FirstName varchar2(50),LastName varchar2(50), PRIMARY KEY(UserId));
insert into dbatdb.userinfo (userid,firstname,lastname) values ('userid02','thrilochana','pakkapoti');
insert into dbatdb.userinfo (userid,firstname,lastname) values ('userid03','vasavi','akula');