PL/SQL (MOSC)

MOSC Banner

We have a procedure that was running fine, but now we receive this error - ORA-53203 Security Violat

edited Feb 1, 2010 3:03AM in PL/SQL (MOSC) 8 commentsAnswered
 Problem Description: We have a procedure that has been running fine, until we installed Oracle 10.2. now we receive the security violation. Here is part of the procedure:
---USER STD DATA FILE

V_FILE_HANDLEUSER := UTL_FILE.FOPEN ('DATA_FILE_DIR', V_USER_STD, 'W',32767);

SELECT 'SYSTEM_ROLE|INSTITUTION_ROLE|EXTERNAL_PERSON_KEY|USER_ID|PASSWD|FIRSTNAME|LASTNAME|EMAIL|ROW_STATUS|AVAILABLE_IND'
INTO V_USER_HEADER
FROM DUAL ;

UTL_FILE.PUT_LINE (V_FILE_HANDLEUSER,
V_USER_HEADER);

FOR USER_STD_REC IN USER_STD_CURSOR LOOP
V_USER_STD_CNT := V_USER_STD_CNT + 1;
UTL_FILE.PUT_LINE (V_FILE_HANDLEUSER,

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center