How to create a new schema/new user in Oracle Database 11g?

前端 未结 5 876
终归单人心
终归单人心 2021-01-29 17:03

I have applied for an internship in a company and as a question they have asked me to create a schema for their company with certain requirements and mail them the DDL

5条回答
  •  萌比男神i
    2021-01-29 18:00

    From oracle Sql developer, execute the below in sql worksheet:

    create user lctest identified by lctest;
    grant dba to lctest;
    

    then right click on "Oracle connection" -> new connection, then make everything lctest from connection name to user name password. Test connection shall pass. Then after connected you will see the schema.

提交回复
热议问题