Add office photos
Employer?
Claim Account for FREE

Accenture

3.9
based on 52.6k Reviews
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by

10+ Pure & Cure Healthcare Interview Questions and Answers

Updated 26 Jun 2024
Popular Designations

Q1. What is Database Management System?

Ans.

A Database Management System (DBMS) is a software that manages and organizes data in a structured manner.

  • DBMS is used to create, retrieve, update, and delete data in a database.

  • It provides a way to store, manage, and manipulate large amounts of data efficiently.

  • DBMS ensures data integrity, security, and concurrency control.

  • Examples of popular DBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

View 2 more answers

Q2. What is difference between SQL and my SQL?

Ans.

SQL is a standard language for managing databases, while MySQL is a specific open-source relational database management system.

  • SQL is a standard language used to manage databases, while MySQL is a specific implementation of SQL.

  • SQL is an ANSI (American National Standards Institute) standard, while MySQL is an open-source relational database management system.

  • SQL can be used with various database management systems like Oracle, SQL Server, etc., while MySQL is a specific datab...read more

View 1 answer

Q3. What is Delete and Truncate Command

Ans.

Delete command is used to remove specific rows from a table, while truncate command is used to remove all rows from a table.

  • Delete command is a DML (Data Manipulation Language) statement.

  • Delete command can be used with a WHERE clause to specify the rows to be deleted.

  • Truncate command is a DDL (Data Definition Language) statement.

  • Truncate command removes all rows from a table, but keeps the table structure intact.

  • Truncate command is faster than delete command as it does not ge...read more

View 1 answer

Q4. 1. What is Rank and Dense_Rank.

Ans.

Rank and Dense_Rank are window functions used to assign a rank to each row based on a specific column value.

  • Rank assigns unique ranks to each row based on the column value.

  • Dense_Rank assigns ranks to each row based on the column value, but skips the rank if there are ties.

  • Both functions are used with the OVER() clause and ORDER BY statement.

  • Example: SELECT name, salary, RANK() OVER(ORDER BY salary DESC) AS rank FROM employees;

  • Example: SELECT name, salary, DENSE_RANK() OVER(OR...read more

Add your answer
Discover Pure & Cure Healthcare interview dos and don'ts from real experiences

Q5. Different between primary key and unique key?

Ans.

Primary key uniquely identifies each record in a table, while unique key ensures each value in a column is unique.

  • Primary key does not allow NULL values, while unique key allows one NULL value.

  • A table can have only one primary key, but multiple unique keys.

  • Primary key automatically creates a unique index, while unique key does not.

  • Primary key is used to establish relationships between tables, while unique key is used to enforce data integrity.

View 1 answer

Q6. 5. What is PIVOT and UNPIVOT

Ans.

PIVOT and UNPIVOT are used to transform data from rows to columns and vice versa.

  • PIVOT is used to rotate rows into columns

  • UNPIVOT is used to rotate columns into rows

  • PIVOT requires an aggregate function to be specified

  • UNPIVOT requires the column names to be specified

  • PIVOT and UNPIVOT are used in T-SQL

  • Example: PIVOT (SUM(Sales) FOR Product IN ([A], [B], [C]))

  • Example: UNPIVOT (Sales FOR Product IN ([A], [B], [C]))

Add your answer
Are these interview questions helpful?

Q7. 2. What is SET NOCOUNT ON

Ans.

SET NOCOUNT ON is a T-SQL statement that stops the message indicating the number of rows affected by a Transact-SQL statement.

  • SET NOCOUNT ON is used to improve the performance of stored procedures by reducing network traffic.

  • It is particularly useful when executing large scripts or batch processes.

  • It is also used to suppress the '(X row(s) affected)' message in SQL Server Management Studio.

  • To turn it off, use SET NOCOUNT OFF.

Add your answer

Q8. What is the primary key?

Ans.

Primary key is a unique identifier for each record in a database table.

  • Primary key ensures each record in a table is uniquely identified.

  • It must contain unique values and cannot have NULL values.

  • Primary key can be a single column or a combination of columns.

  • Example: 'id' column in a 'users' table can be a primary key.

View 1 answer
Share interview questions and help millions of jobseekers 🌟

Q9. What do you mean by DBMS?

Ans.

DBMS stands for Database Management System, which is a software system that allows users to define, create, maintain and control access to databases.

  • DBMS is a software system that allows users to interact with databases.

  • It helps in defining, creating, maintaining, and controlling access to databases.

  • Examples of DBMS include MySQL, Oracle Database, Microsoft SQL Server.

View 1 answer

Q10. What are constraint?

Ans.

Constraints are rules that are enforced on data columns in a table to ensure data integrity and accuracy.

  • Constraints can be used to enforce uniqueness, primary keys, foreign keys, and check conditions on data.

  • Examples include UNIQUE, PRIMARY KEY, FOREIGN KEY, and CHECK constraints.

  • Constraints help maintain data integrity by preventing invalid data from being inserted into tables.

View 1 answer

Q11. 3. What is COALESCE

Ans.

COALESCE is a function that returns the first non-null value in a list of expressions.

  • COALESCE is used to simplify complex SQL statements.

  • It can be used with any data type.

  • It takes two or more arguments and returns the first non-null value.

  • If all arguments are null, it returns null.

  • Example: COALESCE(column1, column2, 'N/A') will return the value of column1 if it's not null, else column2 if it's not null, else 'N/A'.

Add your answer

Q12. 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.

Add your answer

Q13. What are the sequel language

Ans.

SQL is a language used to manage and manipulate relational databases.

  • SQL stands for Structured Query Language

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

  • Common SQL commands include SELECT, INSERT, UPDATE, and DELETE

  • SQL is used in many popular database management systems such as MySQL, Oracle, and Microsoft SQL Server

Add your answer

Q14. What is aggregate function

Ans.

Aggregate function performs a calculation on a set of values and returns a single value.

  • Used with SELECT statement to perform calculations on multiple rows

  • Examples: SUM, AVG, COUNT, MAX, MIN

  • Can be used with GROUP BY clause to group results by a specific column

Add your answer

Q15. Different types of commands

Ans.

Different types of SQL commands include DDL, DML, DCL, and TCL.

  • DDL (Data Definition Language) commands are used to create, modify, and delete database objects.

  • DML (Data Manipulation Language) commands are used to insert, update, and delete data in a database.

  • DCL (Data Control Language) commands are used to control access to data in a database.

  • TCL (Transaction Control Language) commands are used to manage transactions in a database.

  • Examples of SQL commands include CREATE TABLE...read more

Add your answer

Q16. 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

Add your answer

More about working at Accenture

Top Rated Mega Company - 2024
Top Rated Company for Women - 2024
Top Rated IT/ITES Company - 2024
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top SQL Developer Interview Questions from Similar Companies

3.7
 • 12 Interview Questions
3.8
 • 11 Interview Questions
4.4
 • 10 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter