Please turn JavaScript on
Alter-database icon

Alter-database

Get updates from Alter-database via email, on your phone or read them on follow.it on your own custom news page.

You can filter the news from Alter-database that get delivered to you using tags or topics or you can opt for all of them. Unsubscription is also very simple.

See the latest news from Alter-database below.

Site title: Database Technology

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  0.07 / day

Message History

 Here is the full  script which will get few input and build the oracle database and configure the listener,tnsnames.ora.pfile/spfile and convert the database to archive log

#########################################################################################################

#purpose : Script used to build oracle DB,pass requested info ...


Read full story
Read full story

 -- List all users present in mysql


mysql> select user,host,account_locked,password_expired from mysql.user;



Create user in mysql:


mysql> CREATE USER 'test_user'@'%' IDENTIFIED BY 'test_user';

Query OK, 0 rows affected (0.02 sec)


mysql> GRANT ALL ON *.* TO 'user'@'localhost...


Read full story