ORA-03137:
TTC protocol internal error : [3147] [] [] [] [] [] [] []
This
error is only telling us that the client and server process communication was
terminated due to some "event".
Client
/ server message exchanges use an Oracle specific protocol (TTC). ORA-3137 is
reported if something unexpected is seen that does not conform to the expected
protocol. The error can be raised by the client or server side of a connection.
Solution-1:
Disable
bind peeking by setting:
SQL>
alter system set "_optim_peek_user_binds"=false;
Restart
the database and listener services.
This
hidden parameter was introduced since 9i in order to help optimizer makes
better decisions for producing better executions plans. This hidden parameter
lets Optimizer peeks the values of binds at hard parsing phase using them for
looking for the best exec plans based on current stats and values of binds.
When
bind variables are used in a statement, it is assumed that cursor sharing is
intended and that different invocations are supposed to use the same execution
plan.
The
parameter ( "_optim_peek_user_binds") controls this feature's
behavior, default value is TRUE.
Solution-2:
If
error raise continuously, then you can install the following patch:
Patch
Number# 18841764
this article is very useful ;)
ReplyDeleteThis comment has been removed by the author.
ReplyDelete