I like to know any way to get all the database names in oracle using c#. I think we are not able to get all database names using query. I like to get all database names in oracle 9i server in C# code. Is their any way for that?
How to get all database names in oracle using c#?
1.2k views Asked by user3037393 At
1
It should be enough to query databse server according to oracle specification :
How to Query Database Name in Oracle SQL Developer?
and execute this command in relative .NET adapter.
See a code example here: Oracle database connection data access from C#