Can oracle import be used as a non-dba user?

When I try to import an oracle dump. The following error appears:

Export file created by EXPORT: V10.02.01 by direct path

IMP-00013: only the database administrator can import a file exported by another database administrator

IMP-00000: Import Failed

I'm just wondering if a non-dba user is exporting a dump file. Can a non-dba user import a dump file?

+3
source share
2 answers

, -dba / . / / , IMP_FULL_DATABASE/EXP_FULL_DATABASE.

, , , . DBA .

, .

SQL> conn / as sysdba
Connected.
SQL> grant IMP_FULL_DATABASE to test;

, :)

+3

, , . , .

+2

All Articles