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  >  Basics

 Print  |  
Question:  Using which language oracle is developed?



February 02, 2009 09:03:41 #2
 U.Jankirao   Member Since: February 2009    Total Comments: 1 

RE: Using which language oracle is developed?
 
Of course Varchar2 is there to maintain variable length of columns.  It keeps an internal pointer to maintain Variable length that means it wastes two bytes to keep first and last index where column starts and Calculates for each DML operation against that column.  So We can Avoid this house keeping work using Char data type if we can estimate the maximum length of the column. So both have it's own significance. Be
careful while using varchar2 (It make overhead for each row). Use Char if you are sure with the lump sum length of the column..

Thanks,
     

 

Back To Question