Heim > Datenbank > MySQL-Tutorial > Hauptteil

Oracle赋予用户sysdba权限

WBOY
Freigeben: 2016-06-07 17:58:05
Original
2422 Leute haben es durchsucht

以SYS用户进入Oracle, SQL grant sysdba to username; grant sysdba to username * ERROR at line 1: ORA-01994: GRANT failed: password file missing or disabled 首先,把初始化参数REMOTE_LOGIN_PASSWORDFILE的值改成EXCLUSIVE 如果还是有问题,可能是缺

以SYS用户进入Oracle,

SQL> grant sysdba to username;

grant sysdba to username

*
ERROR at line 1:
ORA-01994: GRANT failed: password file missing or disabled

首先,把初始化参数REMOTE_LOGIN_PASSWORDFILE的值改成EXCLUSIVE

如果还是有问题,可能是缺少密码文件,用orapwd创建密码文件

$ orapwd -h
Usage: orapwd file= password= entries=

where
file - name of password file (mand),
password - password for SYS (mand),
entries - maximum number of distinct DBA and OPERs (opt),
There are no spaces around the equal-to (=) character.

这个命令很简单,密码文件一般放在$Oracle_HOME/dbs目录下,命名规则为orapd+SID,

orapwd FILE='/db/Oracle/product/10.2.0/db_1/dbs/orapw+SID'  PASSWORD=oracle   ENTRIES=5  FORCE=y

然后再执行

SQL> grant sysdba to username;

Grant succeeded.

检查

SQL> select * from v$pwfile_users;

USERNAME                       SYSDB SYSOP
------------------------------ ----- -----
SYS                            TRUE  TRUE
******                          TRUE  FALSE

SYSDB那一栏是TRUE就对了

然后就可以as sysdba连接了
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!