Premium Employer

i

This company page is being actively managed by Infosys Team. If you also belong to the team, you can get access from here

Infosys Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Lead Oracle Application DBA Interview Questions and Answers

Updated 15 Jul 2024

Infosys Lead Oracle Application DBA Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What the procedure for patching in oracle apps R12.2
  • Ans. 

    Patching in Oracle Apps R12.2 involves applying patches using adop utility and following specific steps.

    • Apply patches using adop utility

    • Run pre-patch and post-patch scripts

    • Follow patching documentation for specific steps

    • Perform patching in a non-production environment first

  • Answered by AI
  • Q2. How to apply R12.2 patch in faster way
  • Ans. 

    To apply R12.2 patch faster, use parallel workers, pre-install patches, and automate the process.

    • Use parallel workers to speed up the patching process

    • Pre-install prerequisite patches to reduce downtime during patching

    • Automate the patching process using scripts or tools

    • Leverage Oracle E-Business Suite's online patching feature for minimal downtime

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - always check if the HR is ready to give you that CTC that you had asked or else its just waste of time.

What people are saying about Infosys

View All
yedabhai
2d
works at
Hyperpure
Are we not even safe in our own workplaces?
An Infosys employee was arrested for secretly recording women in the office washroom. Over 30 videos were found on his phone. This isn't just shocking, it's horrifying. Offices are meant to be safe, respectful spaces. 🙎 When will companies truly prioritize safety and surveillance in all corners, not just the visible ones?
FeedCard Image
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

Lead Oracle Application DBA Interview Questions Asked at Other Companies

Q1. Are you aware of cross-platform migration in Oracle Apps, i.e., L ... read more
Q2. What is the cutover phase during migration or upgradation?
Q3. What parameters are needed for configuring DataGuard?
asked in Infosys
Q4. What is the procedure for patching in Oracle Apps R12.2?
Q5. What are the ADOP phases during Oracle Apps patching?

I applied via Job Portal and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. First they ask basic questions like HTML SQL Java.

Interview Preparation Tips

Interview preparation tips for other job seekers - First we learn basics programming knowledge and we confident to attend interview and speak bold.

I applied via Naukri.com and was interviewed in Aug 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: All Java basic questions will be asked including servlets and jsp even about application and web servers. To clear,1st round you should have strong core Java knowledge along with few real time examples. Collections are mandatory.
Database knowledge could be expected. RestFul and soap along with spring and spring boot, your project details and your responsibilities.
Skills: SOAP, RestFul, Spring, Springboot, Java Application Development, Java Programming, Javascript, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks

I applied via Company Website and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. By Rajkumar Bharathi, I stay at Trichy
  • Q2. I have completed my B.E from kalasalingam university in 2020, with a score of 6.33
  • Q3. I am a fresher need this jobs

Interview Preparation Tips

Interview preparation tips for other job seekers - Dress for the job or company

I applied via Campus Placement and was interviewed before Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was placed through campus . Did not have to give the appitude / online exam as I was among top 10 students from the college . In the interview panel ,we had 3 people .one manager and two technical / staf...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to answer all. If something is out of your scope and you don't know ,politely tell them you don't know . Keep yourself engaged with the panel . In between talk to them , just do not give long pause and stares . It make things akward . Hope it helps

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident , easy to crack
Are these interview questions helpful?

I applied via Applied in more than one job portal can't remember now. and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About struts framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had three rounds of telephonic, technical, HR, interviews, I can say this confidence is important in all aspects.

I appeared for an interview before Sep 2016.

Interview Preparation Tips

Round: Test
Experience: There were 30 questions that needs to be answered and then there was this one question where we had to complete one story writing within 10 minutes with some provided sets of words that needs to be included in the story.
Tips: It's not tough and doesn't need any extra effort. You will find some website wherein you get past years tcs ques, and believe me, tcs repeats questions.
You have to have a descent typing speed as well to finish the story on time.
Duration: 50 minutes
Total Questions: 30

Round: Technical Interview
Experience: If something has to happen, it will happen. For me what happened is that whatever I knew/wanted to speak, exactly same was asked by the interviewer.
They don't have much idea about the technical stuff, whatever you say will make sence to them, provided you say that confidently.

Round: HR Interview
Experience: A lady interviewed me for this, she had a couple of routine things, for example she had rejected atleast 5 students before me as they didn't know what was trending at that given point of time. I gave the answer correctly and then she asked about family, my flexibility in working hours, etc
. And this was it.
Tips: Be calm, smile and be confident.

College Name: Priyadarshini Institute of Engineering and Technology

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

It was in the morning. We're provided with 60 minutes.
We're provided with desktop as it was online test.
Almost 3-4 interviewer were there.

  • Q1. 

    Leap Year Checker

    Determine if a given year, represented as an integer 'N', is a leap year.

    A leap year is defined as a year with 366 days, unlike a normal year which has 365 days.

    Input:

    The initial i...
  • Ans. 

    The task is to determine if a given year is a leap year or not.

    • Check if the year is divisible by 4, if yes then proceed to the next step.

    • If the year is divisible by 100, then it should also be divisible by 400 to be a leap year.

    • If the year satisfies the above conditions, output 'Yes', else output 'No'.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 30 minutes
Round difficulty - Easy

It was in the early morning.
I was the first one who selected for the interview.
There were 4 interviewers and they all are especialist in their domain

Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Medium

It was mid in the afternoon. They called me and said you're shortlisted and come to campus again.
There were 2 interviewers who talked to me and ask different questions regarding my company, my experience in college etc.
It was kind of chit chat but basically they were testing my conversation skills.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. I applied for the job as Software Engineer in PuneEligibility criteriaNo crieteriaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Dtaa structure, Algorithm, Java , Operating System, C++Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try to give mock interview as much as you can
Tip 2 : Good with technical skills
 

Application resume tips for other job seekers

Tip 1 : Mention good projects
Tip 2 : Any internship will be add-on

Final outcome of the interviewSelected

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Lead Oracle Application DBA interview?
Infosys interview process usually has 1 rounds. The most common rounds in the Infosys interview process are Technical.
What are the top questions asked in Infosys Lead Oracle Application DBA interview?

Some of the top questions asked at the Infosys Lead Oracle Application DBA interview -

  1. what the procedure for patching in oracle apps R1...read more
  2. how to apply R12.2 patch in faster ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
View all
Technology Analyst
54.7k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
53.8k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.1k salaries
unlock blur

₹9.4 L/yr - ₹16.4 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
31.2k salaries
unlock blur

₹8.1 L/yr - ₹14 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview