How to know the compatibility and version of Oracle database

set serverout on
 
declare
  l_version        varchar2(255);
   l_compatibility varchar2(255);
  begin
     dbms_utility.db_version( l_version, l_compatibility );
      dbms_output.put_line( l_version );
     dbms_output.put_line( l_compatibility );
 end;

/

Post a Comment

And that's all there is to it!

If anyone has any other questions or requests for future How To posts, you can either ask them in the comments or email me. Please don't feel shy at all!

I'm certainly not an expert, but I'll try my hardest to explain what I do know and research what I don't know.

Previous Post Next Post