Dear All
I am able to create database table in oracle 12c with prefix c## , where as I want to create without prefix . I Read all the documents but still I am not understanding. can anyone explain about this
I am using the following command to create database
create user c##test identified by test;
grant connect, resource to c##test;
grant imp_full_database to c##test;
grant exp_full_database to c##test;
Sandy