Avatar of chaitu chaitu
chaitu chaitu
Flag for India

asked on 

what is the equivalent command for oracle for creating DB and user w.r.t mysql

below commands used for generate DB and user in mysql.what is the equivalent command for oracle.

CREATE DATABASE xyz; CREATE USER 'xyz'@'localhost' IDENTIFIED BY 'xyz'; grant all on xyz.* to 'alfresco5'@'localhost' identified by 'xyz' with grant option; grant all on xyz.* to 'xyz'@'localhost.localdomain' identified by 'xyz' with grant option;
Oracle DatabaseDatabases

Avatar of undefined
Last Comment
Mark Geerlings

8/22/2022 - Mon