how to create user in sql and how to set password for that?
Answers were Sorted based on User's Feedback
Answer / ayan banerjee
create user user_name identified by password
then
grant resource to user_name
grant create session to user_name
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / guruswamy
create user <username> IDENTIFIED BY password;
| Is This Answer Correct ? | 21 Yes | 6 No |
Answer / satyajit patel
If u later want to change the password then go to the
database where the user is created and write
ALTER USER user_name IDENTIFIED BY new_password;
| Is This Answer Correct ? | 11 Yes | 2 No |
Why indexing is needed?
What is the maximum size of sqlite database?
What is difference between joins and union?
What is sql and its types?
Is sql workbench free?
Define join and name different types of joins?
Is it mandatory for the primary key to be given a value when a new record is inserted?
What are all types of user defined functions?
can use the following like overloading concept in a single package: procedure p1(a varchar), procedure p1(a varchar2), procedure p1(a char)
What is the usage of sql functions?
What is database white box testing and black box testing?
I want to execute a piece of code before calling a procedure. How to achieve it?
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)