Upload Button Icon Add office photos

Filter interviews by

Centific SQL Developer Interview Questions and Answers

Updated 30 Sep 2024

Centific SQL Developer Interview Experiences

1 interview found

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

Interview experience
3
Average
Difficulty level
Hard
Process Duration
6-8 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About Normalization and Denormalization

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Joins in sql server
  • Q2. Set operator in sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy and anyone can tackle it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain about SSIS Architecture
  • Ans. 

    SSIS Architecture is a platform for data integration and workflow applications.

    • SSIS stands for SQL Server Integration Services

    • It includes a data flow engine, control flow engine, and event handling

    • SSIS packages can be created using SQL Server Data Tools (SSDT)

    • SSIS packages can be scheduled and executed using SQL Server Agent

  • Answered by AI
  • Q2. How to implement transactions in ssis
  • Ans. 

    Transactions in SSIS can be implemented using the TransactionOption property in Control Flow tasks.

    • Set the TransactionOption property to Required on the Control Flow tasks that need to be included in the transaction.

    • Use the TransactionOption property to specify the level of transaction support needed for each task.

    • Transactions can be managed using the Distributed Transaction Coordinator (DTC) service.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. All the best

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to insert multiple values in one go
  • Ans. 

    Use the INSERT INTO statement with multiple value sets separated by commas

    • Use the INSERT INTO statement followed by the table name

    • List the column names in parentheses after the table name

    • Use the VALUES keyword followed by multiple value sets in parentheses, separated by commas

    • Example: INSERT INTO table_name (column1, column2) VALUES (value1, value2), (value3, value4)

  • Answered by AI
  • Q2. Update query using joins
  • Ans. 

    Update query using joins in SQL

    • Use UPDATE statement with JOIN clause to update data in multiple tables

    • Specify the tables to be updated and joined using ON clause

    • Set the columns to be updated in SET clause

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basic Questions

Skills evaluated in this interview

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

Simple coding not that much tough

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to your skills
  • Q2. Just basic questions
Round 3 - HR 

(1 Question)

  • Q1. Why u want to join
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a query to display the highest salary
  • Ans. 

    Query to display the highest salary in a table

    • Use the SELECT statement to retrieve data

    • Use the MAX() function to find the highest salary

    • Specify the column name for salary in the query

  • Answered by AI
  • Q2. Stored proceduers,functions,cursors triggers,

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics first

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Performance tunning and sql profiler

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Types of Indexes
  • Ans. 

    Types of indexes include clustered, non-clustered, unique, composite, and filtered indexes.

    • Clustered indexes physically reorder the data in the table based on the index key.

    • Non-clustered indexes create a separate structure for the index, pointing back to the original table data.

    • Unique indexes ensure that no two rows have the same values in the indexed columns.

    • Composite indexes are created on multiple columns to improve...

  • Answered by AI
  • Q2. Sceanrio based question
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Joining date and last working date
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Profit and loss,percentage

Round 2 - HR 

(2 Questions)

  • Q1. Why do you this job ?
  • Q2. How can i believe you are the best to our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Never Give up
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 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 - Technical 

(4 Questions)

  • Q1. About sql and roles and responsibilities
  • Q2. What is sql ? What are joins ?
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases. Joins are used to combine data from multiple tables.

    • SQL stands for Structured Query Language

    • It is used to create, modify, and query databases

    • Joins are used to combine data from two or more tables based on a related column

    • Types of joins include inner join, left join, right join, and full outer join

    • Example: SELECT * FROM table1 INNER JOIN t

  • Answered by AI
  • Q3. What are set operators ?
  • Ans. 

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

    • Set operators include UNION, UNION ALL, INTERSECT, and EXCEPT.

    • UNION combines the results of two SELECT statements and removes duplicates.

    • UNION ALL combines the results of two SELECT statements and includes duplicates.

    • INTERSECT returns only the common rows between two SELECT statements.

    • EXCEPT returns only the rows from the first SELECT st...

  • Answered by AI
  • Q4. What are constraints?
  • Ans. 

    Constraints are rules that are applied to a table column or a group of columns.

    • Constraints ensure data accuracy and consistency in a database.

    • They can be used to enforce rules like uniqueness, primary key, foreign key, etc.

    • Constraints can be added when creating a table or altered later using ALTER TABLE statement.

    • Examples of constraints include NOT NULL, CHECK, UNIQUE, PRIMARY KEY, FOREIGN KEY, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and do well prepare well and do well
Prepare well and do well

Skills evaluated in this interview

Centific Interview FAQs

How many rounds are there in Centific SQL Developer interview?
Centific interview process usually has 1 rounds. The most common rounds in the Centific interview process are Technical.

Tell us how to improve this page.

Centific SQL Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Project Associate
120 salaries
unlock blur

₹1.8 L/yr - ₹3.8 L/yr

Senior Software Engineer
34 salaries
unlock blur

₹10.7 L/yr - ₹25 L/yr

Associate Software Engineer
33 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Software Engineer
25 salaries
unlock blur

₹4 L/yr - ₹15.1 L/yr

Data Engineer
16 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Centific with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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