how to create user in sql and how to set password for that?
Answer Posted / 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 |
Post New Answer View All Answers
What is dba in sql? : SQL DBA
Does pl sql work in mysql?
What are operators available in sql?
How many commands are there in sql?
What is flag in sql?
What do you mean by stored procedures?
What is file based approach?
Can variables be used in sql statements?
What are different types of queries in sql?
Is postgresql a nosql database?
What is a primary key sql?
What is the advantage of index in sql?
Hi how to import oracle sequence in Informatica? Please write stored procedure code that will import oracle sequence in Informatica SP transformation as per below scenario Oracle table product list Pro_id, pro_name 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights Now a new flat file with new product list needs to be added to oracle table product list with oracle sequence. flat file product Prono,pro_name, 1, 20 watt tube light 2, 30 watt tube light & target should be like 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights. 104, 20 watt tube light 105, 30 watt tube light thks reg suvarna joshi suvarnaatsuvarna@rediffmail.com
What is a trigger word?
Is coalesce faster than isnull?