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 |
Who is the owner of mysql database?
what is the difference between truncate and delete statement? : Transact sql
What are the two characteristics of a primary key?
What is pl sql code?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
What are the types of triggers in sql?
how can i create a user defined datatype
How do I partition in sql?
What is varchar data type in sql?
Write a procedure to return the month and the number of developers joined in each month (cursor )
What are % type and % rowtype?
What is sql and its types?