Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 86.7k Reviews

Filter interviews by

TCS Oracle SQL and PLSQL Developer Interview Questions and Answers

Updated 8 Oct 2024

TCS Oracle SQL and PLSQL Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Sep 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about OLAP systems.
  • Ans. 

    OLAP systems are designed for analyzing and managing large volumes of data from multiple perspectives.

    • OLAP stands for Online Analytical Processing

    • OLAP systems allow users to analyze data in real-time

    • They provide advanced analytics capabilities like data mining, forecasting, and trend analysis

    • Examples of OLAP systems include Oracle Essbase, Microsoft Analysis Services, and IBM Cognos

  • Answered by AI
  • Q2. How to process files in different formats and from different sources to load a single table in Oracle.
  • Ans. 

    Use Oracle External Tables and SQL Loader to process files in different formats and from different sources to load a single table.

    • Create External Tables in Oracle to define the structure of the files from different sources.

    • Use SQL Loader to load data from the files into the External Tables.

    • Transform and manipulate the data as needed using SQL queries before inserting into the final table.

  • Answered by AI
  • Q3. More questions on partitioning. Range and List partitioning. Interval partition, split partition etc
  • Q4. Questions on indexes
  • Q5. Questions on performance tuning

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Salary you want
  • Q2. Location you choose
  • Ans. 

    I would choose a location with a peaceful environment and good work-life balance.

    • Prefer a location with low traffic and easy commute

    • Look for nearby amenities like grocery stores, restaurants, and parks

    • Consider the cost of living in the area

    • Research the crime rate and safety of the neighborhood

  • Answered by AI

Oracle SQL and PLSQL Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. Tell me about Analytical functions you worked on ?
asked in Infosys
Q2. What is Context switching ? And about collection types ...
asked in Infosys
Q3. What are Set operators ,which one keep duplicates among them
asked in Zoho
Q4. What will happen if we do not use commit in pragma procedure?
asked in Infosys
Q5. Triggers : do we can use commit or roll back with in trigger ?

Oracle SQL and PLSQL Developer | PL/SQL Developer interview

user image Oracle PLSQL&Talend ETL

posted on 24 Nov 2021

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website

Round 1 - Technical 

(9 Questions)

  • Q1. Question on LIST_AGGR
  • Q2. Question on dynamic SQL ,what is a bind variable
  • Q3. Question on constraints ,do we can delete a child table column having connection with foreign key with parent table
  • Q4. Triggers : do we can use commit or roll back with in trigger ?
  • Ans. 

    No, we cannot use commit or roll back within a trigger.

    • Triggers are automatically committed or rolled back as part of the transaction that fired them.

    • Using commit or rollback within a trigger can lead to unpredictable behavior and is not recommended.

  • Answered by AI
  • Q5. Materialized views and how to refresh
  • Ans. 

    Materialized views store the results of a query and can be refreshed to update the data.

    • Materialized views store the results of a query in a table-like structure

    • They can be refreshed manually or automatically based on a schedule

    • Refresh options include full, fast, and force refresh

    • Example: CREATE MATERIALIZED VIEW mv_name AS SELECT * FROM table_name;

  • Answered by AI
  • Q6. Print 1 to 10 using sql
  • Ans. 

    Use CONNECT BY LEVEL to print numbers from 1 to 10 in Oracle SQL

    • Use CONNECT BY LEVEL to generate rows from 1 to 10

    • Select the generated numbers in the query

  • Answered by AI
  • Q7. What is Context switching ? And about collection types ...
  • Ans. 

    Context switching is the process of storing and restoring the state of a CPU so that multiple processes can share the same CPU.

    • Context switching allows the CPU to switch from one process to another, enabling multitasking.

    • In Oracle PLSQL, collection types are used to store multiple values in a single variable.

    • Examples of collection types in PLSQL include arrays, nested tables, and associative arrays.

  • Answered by AI
  • Q8. Tell me about Analytical functions you worked on ?
  • Ans. 

    Analytical functions are used to perform calculations across a set of rows related to the current row.

    • Analytical functions are used to calculate aggregate values based on a group of rows.

    • They can be used to calculate running totals, moving averages, rank, percentiles, etc.

    • Examples include functions like ROW_NUMBER(), RANK(), DENSE_RANK(), LAG(), LEAD(), SUM() OVER(), AVG() OVER().

  • Answered by AI
  • Q9. What are Set operators ,which one keep duplicates among them
  • Ans. 

    Set operators are used to combine the result sets of two or more SELECT statements. UNION ALL keeps duplicates.

    • Set operators include UNION, UNION ALL, INTERSECT, and MINUS

    • UNION ALL retains duplicate rows from the result sets

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Oracle SQL and PLSQL Developer interview:
  • Siva academy
  • Techtfq
  • Kudvenkat

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is merge statement and use case ?
  • Ans. 

    Merge statement is used to perform insert, update, or delete operations in a single statement based on a condition.

    • Combines INSERT, UPDATE, and DELETE operations into a single statement

    • Used to synchronize two tables based on a condition

    • Improves performance by reducing the number of SQL statements needed

    • Can be used to insert new records, update existing records, or delete records in a single operation

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

SQL and PLSQL querys writing.

Round 3 - HR 

(2 Questions)

  • Q1. Self introduction ,and salary discussion
  • Q2. Self introduction and salary discussion, company details.

I applied via Approached by Company and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL Questions. Joins triggers cursor function procedure materialized view. Group by concept with SQL queries
Round 2 - Technical 

(1 Question)

  • Q1. Triggers cursor function procedure refcursor
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and other HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all basics. SQL queries to including group by with agrigate function with windowing clause

I applied via Walk-in and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Wipro Oracle SQL and PLSQL Developer interview:
  • Oracle SQL and plsql Developer
Interview preparation tips for other job seekers - Don't take the one with the highest salary best parks or fanciest title take the job that makes you happy

I was interviewed in Feb 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Wipro Oracle SQL and PLSQL Developer interview:
  • Oracle SQL and plsql developer
Interview preparation tips for other job seekers - Don't take the one with the highest salary,best perks or fanciest title take the job that makes you happy

Interview Questionnaire 

1 Question

  • Q1. SQL full

TCS Interview FAQs

How many rounds are there in TCS Oracle SQL and PLSQL Developer interview?
TCS interview process usually has 1 rounds. The most common rounds in the TCS interview process are HR and Technical.
What are the top questions asked in TCS Oracle SQL and PLSQL Developer interview?

Some of the top questions asked at the TCS Oracle SQL and PLSQL Developer interview -

  1. How to process files in different formats and from different sources to load a ...read more
  2. Tell me about OLAP syste...read more
  3. Location you cho...read more

Tell us how to improve this page.

TCS Oracle SQL and PLSQL Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
TCS Oracle SQL and PLSQL Developer Salary
based on 27 salaries
₹3.4 L/yr - ₹9.5 L/yr
12% less than the average Oracle SQL and PLSQL Developer Salary in India
View more details

TCS Oracle SQL and PLSQL Developer Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

3.0

Company culture

3.5

Promotions

2.0

Work satisfaction

Explore 3 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
67.6k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.3k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.9k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.9k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview