Link to home
Start Free TrialLog in
Avatar of Kin Fat SZE
Kin Fat SZEFlag for Hong Kong

asked on

create schema on oracle

Hi,
I am confuse, I want to create a new schema = create a new user on the same database?

Thank you!
Francis SZE
Avatar of sweetfa2
sweetfa2
Flag of Australia image

create user francis identified by francispassword;
Avatar of Kin Fat SZE

ASKER

my question is create a new user is equal to create a new schema, is it?
Thank you!
Francis SZE
SOLUTION
Avatar of sweetfa2
sweetfa2
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
But if you want to setup the schema in one go by creating multiple objects

multiple objects means multi users in one schema?
no.. a schema means it is for one user only.

multiple objects means multi users in one schema? ---> this means that if you want to setup n tables, x views, y sequences etc...

In this context, user is not a database object here.
so, create schema is not a must, just create a user on one database
right?
Thank you
Francis SZE
Yes, that is what i said that it is not mandatory. But create user is mandatory if at all you need to setup a schema with objects.

Thanks,