GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  Concepts and Architecture

 Print  |  
Question:  What is the command to find the database that already present before connecting ?



September 09, 2009 07:15:56 #5
 lakshmi143.e   Member Since: September 2009    Total Comments: 2 

RE: What is the command to find the database that already present before connecting ?
 
select name as "DB Name" from v$database;

select global_name from global_name;

select ora_database_name from dual;
     

 

Back To Question