Link to home
Start Free TrialLog in
Avatar of cuttieveenz
cuttieveenz

asked on

Different USER ID and Schema in DB2

Hi,
How to create different user ids in DB2. Also how to create different schema for each user.
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America image

Hi cuttie,

DB2 defers to the underlying operating system for user validation.  To create a DB2 user, create a user on the server where DB2 is running.

You can always create additional schemas.  The DBA (or anyone with sufficient privilege) would create one with the CREATE SCHEMA statement.

In most releases of DB2, I believe that a user's default schema is the user's name.


Good Luck,
Kent
Avatar of cuttieveenz
cuttieveenz

ASKER

How do I create user on the server?
ASKER CERTIFIED SOLUTION
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America 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
Thanks Kdo. Your comments were useful.