Hello,
In the version 6.x (I’ve checked both official ver.: 6.1.1 and 6.2.1) the wrapped code isn’t correctly shown anymore (worked fine in v4.4 and 5.x) in the Code Editor. Once you acces to the object via CTRL+click_on_the_object or even directly from DB navigator the code is deformed, I would say: even more wrapped ;-).
Here’s an example of the same procedure opened in the newest Navi 6.2.1:
PROCEDURE
9 :2 11
And the same procedure shown in the Navi 5.5:
PROCEDURE
/* $Header:: /Src-6.5.1/server/rKillOs.sql 4 1.0.4 27.09.08 15:54 $ */
rKillOs wrapped
0
abcd
abcd
abcd
So as you can see, we’ve lost the possibility to easily check the wrapped source origin.
In fact, there’s at least 2 workarounds:
- Extract DDL works fine
- Direct access to the source code stored in the DB with the query:
SELECT *
FROM all_source
WHERE lower(name) = lower(‘rkillos’)
ORDER BY line ASC;
But maybe there’s some other solutions (bit more comfortable) ?
Or, if it’s an issue, it’s previewed to be fixed soon?
Thanks in advance for any suggestions.
BR,
Dominik