SOLVED

How to Resolve ORA-12528

Asked by OracleDba13 viewsoracle
1
2
3
How to Resolve ORA-12528

How to Resolve ORA-12528
#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
To fix this issue, we need to add a special parameter UR=A in connect descriptor to lift off the restriction. More specifically, we added (UR=A) for a connect identifier PRIM.

[oracle@prim ~]$ vi $ORACLE_HOME/network/admin/tnsnames.ora

PRIM =

    (DESCRIPTION =

        (ADDRESS = (PROTOCOL = TCP)(HOST = node1)(PORT = 1521))

        (CONNECT_DATA =

            (SERVER = DEDICATED)

            (SERVICE_NAME = PRIM)(UR=A)

        )

    )

Hope it Helps!
OracleDba

Post Your Solution