1

Like title says, I want to know oracle's version I connected with toad.

danny
  • 427
  • 1
  • 15
  • 25
  • Possible duplicate of [How can I confirm a database is Oracle & what version it is using SQL?](https://stackoverflow.com/questions/101184/how-can-i-confirm-a-database-is-oracle-what-version-it-is-using-sql) – Sam M Apr 27 '18 at 05:05
  • Possible duplicate of https://serverfault.com/questions/171827/how-can-i-find-my-oracle-10g-server-version – Sam M Apr 27 '18 at 05:06

2 Answers2

5

If you don't have access to v$version or v$instance, you can run this code. Be sure to turn on DBMS Output.

BEGIN 
   DBMS_OUTPUT.PUT_LINE(DBMS_DB_VERSION.VERSION || '.' || DBMS_DB_VERSION.RELEASE); 
END;

You can also run select * from PRODUCT_COMPONENT_VERSION;

Sam M
  • 4,136
  • 4
  • 29
  • 42
3

We could use this query command to find oracle's version.

select * from v$version

enter image description here

danny
  • 427
  • 1
  • 15
  • 25