How to fix the Oracle error PLW-05013: second parameter to pragma INLINE ‘string’ is not ‘YES’ or ‘NO’?
In this post, you’ll learn more about the Oracle ErrorPLW-05013: second parameter to pragma INLINE ‘string’ is not ‘YES’ or ‘NO’ with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLW-05013: second parameter to pragma INLINE ‘string’ is not ‘YES’ or ‘NO’
Reason for the Error PLW-05013: second parameter to pragma INLINE ‘string’ is not ‘YES’ or ‘NO’
The second parameter to the pragma INLINE governs whether or not a procedure call can be inlined. The only legal values are ‘YES’, meaning that the compiler should attempt to inline the call, and ‘NO’, meaning that the compiler must not inline the call.
How to fix the Error PLW-05013: second parameter to pragma INLINE ‘string’ is not ‘YES’ or ‘NO’ ?
You can fix this error in Oracle by following the below steps
Use ‘YES’ or ‘NO’ as appropriate.
Leave Your Comment