topic: oracle sql
I have a database 'guitar'.
I want to add a user to that database.
Please get me started at least with overview / tutorial.
You should have specified which user, i mean who will use this database(administrator) or you want to store user's in your database in your table but i will give you both
How to Create a User and Grant Permissions in Oracle
You want to make table of users
CREATE TABLE guitar.persons( person_id NUMBER GENERATED BY DEFAULT AS IDENTITY, first_name VARCHAR2(50) NOT NULL, last_name VARCHAR2(50) NOT NULL, PRIMARY KEY(person_id) );
Get Answers For Free
Most questions answered within 1 hours.