Sunday, May 15, 2016

All oracle bug fixes from DB itself.


Below query will show all fixes done in database till release

SELECT   optimizer_feature_enable, bugno, description
    FROM v$system_fix_control
ORDER BY REGEXP_REPLACE ( REGEXP_REPLACE ( optimizer_feature_enable || '.', '(\d+\.)', '0000000\1'), '0+(........)\.', '\1') desc, bugno
/

No comments:

Post a Comment