Oracle Error Message
PLW-07204: conversion away from column type may result in sub-optimal query plan
Reason for the Error
The column type and the bind type do not exactly match. This may result in the column being converted to the type of the bind variable. This type conversion may prevent the SQL optimizer from using any index the column participates in. This may adversely affect the execution performance of this statement.
Solution
To make use of any index for this column, make sure the bind type is the same type as the column type.