--------------------------------------------------------------------------------------------------------
Q#1. Which TCP/IP port does SQL Server run on?
Ans. By default SQL Server runs on port 1433.
Q#2. What is the difference between clustered and a non-clustered index?
Ans. A clustered index is an index that rearranges the table in the order of index itself. Its leaf nodes contain data pages. A table can have only one clustered index.
A non-clustered index is an index that does not re-arranges the table in the order of index itself. Its leaf nodes contain index rows instead of data pages. A table can have many non-clustered indexes.
Q#3. List the different index configurations possible for a table?
Ans. A table can have one of the following index configurations:
- No indexes
- A clustered index
- A clustered index and many non-clustered indexes
- A non-clustered index
- Many non-clustered indexes
Q#4. What is the recovery model? List the types of recovery model available in SQL Server?
Ans. Recovery model basically tells SQL Server what data should be kept in the transaction log file and for how long. A database can have only one recovery model.
It also tells SQL server that which backup is possible in a particular recovery model selected. There are three types of recovery model:
- Full
- Simple
- Bulk-Logged
Q#5. What are different backups available in SQL Server?
Ans. Different possible backups are:
- Full backup
- Differential Backup
- Transactional Log Backup
- Copy Only Backup
- File and Filegroup backup
Q#6. What is a FULL Backup?
Ans. A full backup is the most common type of backup in SQL Server. This is the complete backup of the database. It also contains part of transaction log so it can be recovered.
Q#7. What is OLTP?
Ans. OLTP means Online transaction processing which follows rules of data normalization to ensure data integrity. Using these rules complex information is broken down into a most simple structure.
Q#8. What is RDBMS?
Ans. RDBMS or Relational Data Base Management Systems are database management systems that maintain data in the form of tables. We can create relationships between the tables. An RDBMS has the capability to recombine the data items from different files, providing powerful tools for data usage.
Q#9. What are the properties of the Relational tables?
Ans. Relational tables have six properties:
- Values are atomic.
- Column values are of the same kind.
- Each row is unique.
- The sequence of columns is insignificant.
- The sequence of rows is insignificant.
- Each column must have a unique name.
Q#10. What’s the difference between a primary key and a unique key?
Ans. The differences between the primary key and a unique key are:
- The primary key is a column whose values uniquely identify every row in a table. Primary key values can never be reused. They create a clustered index on the column and cannot be null.
- A Unique key is a column whose values also uniquely identify every row in a table but they create a non-clustered index by default and it allows one NULL only.
Q#11. When is UPDATE_STATISTICS command used?
Ans. As the name implies UPDATE_STATISTICS command updated the statistics used by the index to make the search easier.
Q#12. What is the difference between a HAVING CLAUSE and a WHERE CLAUSE?
Ans. The differences between HAVING CLAUSE and WHERE CLAUSE are:
- Both specify a search condition but Having clause is used only with the SELECT statement and typically used with GROUP BY clause.
- If GROUP BY clause is not used then Having behaved like WHERE clause only.
Q#13. What is Mirroring?
Ans. Mirroring is a high availability solution. It is designed to maintain a hot standby server which is consistent with the primary server in terms of a transaction. Transaction Log records are sent directly from principal server to a secondary server which keeps a secondary server up to date with the principal server.
Q#14. What are the advantages of the Mirroring?
Ans. Advantages of Mirroring are:
- It is more robust and efficient that Log shipping.
- It has an automatic failover mechanism.
- The secondary server is synced with the primary in near real time.
Q#15. What is Log Shipping?
Ans. Log shipping is nothing but the automation of backup and restores of a database from one server to another standalone standby server. This is one of the disaster recovery solutions. If one server fails for some reason we will have the same data available on the standby server.
Q#16. What are the advantages of Log shipping?
Ans. Advantages of Log shipping:
- Easy to set up.
- Secondary database can be used as a read-only purpose.
- Multiple secondary standby servers are possible
- Low maintenance.
Q#17. Can we take the full database backup in Log shipping?
Ans. Yes, we can take the full database backup. It won’t affect the log shipping.
Q#18. What is an execution plan?
Ans. An execution plan is a graphical or textual way of showing how the SQL server breaks down a query to get the required result. It helps a user to determine why queries are taking more time to execute and based on the investigation user can update their queries for the maximum result.
In Query Analyzer is an option called “Show Execution Plan” (located on the Query drop-down menu). If this option is turned on it will display a query execution plan in a separate window when a query is run again.
Q#19. What is the Stored Procedure?
Ans. A stored procedure is a set of SQL queries which can take input and send back output. And when the procedure is modified, all clients automatically get the new version. Stored procedures reduce network traffic and improve performance. Stored procedures can be used to help ensure the integrity of the database.
Q#20. List the advantages of using Stored Procedures?
Ans. Advantages of using Stored procedures are:
- Stored procedure boosts application performance.
- Stored procedure execution plans can be reused as they cached in SQL Server’s memory which reduces server overhead.
- Stored procedures can be reused.
- Stored procedures can encapsulate logic. You can change the stored procedure code without affecting clients.
- Stored procedures provide better security for your data.
Q#21. What is identity in SQL?
Ans. An identity column in the SQL automatically generates numeric values. We can be defined as a start and increment value of the identity column. Identity columns do not need to be indexed.
Q#22. What are the common performance issues in SQL Server?
Ans. Following are the common performance issues:
- Deadlocks
- Blocking
- Missing and unused indexes.
- I/O bottlenecks
- Poor Query plans
- Fragmentation
Q#23. List the various tools available for performance tuning?
Ans. There are various tools available for performance tuning:
- Dynamic Management Views
- SQL Server Profiler
- Server Side Traces
- Windows Performance monitor.
- Query Plans
- Tuning advisor
Q#24. What is a performance monitor?
Ans. Windows performance monitor is a tool to capture metrics for the entire server. We can use this tool for capturing events of SQL server also.
Some useful counters are – Disks, Memory, Processors, Network etc.
Some useful counters are – Disks, Memory, Processors, Network etc.
Q#25. What are 3 ways to get a count of the number of records in a table?
Ans. SELECT * FROM table_Name
SELECT COUNT(*) FROM table_Name
SELECT rows FROM indexes WHERE id = OBJECT_ID(tableName) AND indid< 2a from the database.
SELECT COUNT(*) FROM table_Name
SELECT rows FROM indexes WHERE id = OBJECT_ID(tableName) AND indid< 2a from the database.
Sql Server Interview Questions Ans Part -2
Reviewed by Ashwani
on
August 21, 2019
Rating:

No comments:
Post a Comment