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  >  Tech FAQs  >  Oracle

 Print  |  
Question:  How to find the tables in GL,AP,AR
for oracle applications for reports




September 09, 2007 03:37:27 #1
 indifa   Member Since: Visitor    Total Comments: N/A 

RE: How to find the tables in GL,AP,ARfor oracle...
 
Select * from dba_objects where owner = 'GL' and object_type = 'TABLE'

Change GL to AP and AR for respective table info.
     

 

Back To Question