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 |
what is global variable in pl/sql
Is null operator in sql?
there is A table and B table in A table there 5 rows and in b table there are 2 rows i am firing query select * from a,b what will be the output?
What is the difference between rename and alias?
What is having clause in sql?
Can a foreign key have a different name?
What does (*) mean in sql?
What are the data types allowed in a table?
In what condition is it good to disable a trigger?
How do I run a script in sql developer?
Which one of the following is a reason that an INSERT statement might cause an error instead of executing correctly? 1. The INSERT statement was attempting to insert a record into a view that was created from more than one table. 2. The INSERT statement was attempting to insert a record using a combination of constants and values from an existing table. 3. The INSERT statement was attempting to insert a record with a non-NULL value into a table that has that column defined as NULL. 4. The INSERT statement was attempting to insert a record into a table by selecting a record from that same table. 5. The INSERT statement was attempting to insert a record into a view rather than a table.
What is server name sql?
Oracle (3259)
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)