SQL Server is widely used in the industry for database management needs. Cracking the SQL Server DBA interview can be challenging. Applicants must practice answering the most anticipated SQL Server DBA interview questions before attending the interviews. This article aims to provide useful details about commonly asked SQL Server DBA interview questions and tips to answer them to make the preparation process a lot more effective and successful.
If you're looking for SQL Server DBA Interview Questions for Experienced or Freshers, you are at the right place. There are a lot of opportunities from many reputed companies in the world. According to research on SQL Server, DBA has a market share of about 46%.
So, You still have the opportunity to move ahead in your career in SQL Server DBA. Mindmajix offers Advanced SQL Server DBA Interview Questions 2024 that helps you in cracking your interview & acquire a dream career as an SQL Server DBA Developer.
We have categorized SQL Server DBA Interview Questions into 3 levels they are
Looking to specialize in SQL Server DBA? The "SQL Server DBA Training" course provides a pathway to enhance your expertise in this area. |
MS SQL Server Vs MySQL
| |||
Name
|
MS SQL Server
|
MySQL
| |
Define
|
Microsoft Relational DataBase Management System
|
Wide usage of Relational DataBase Management system
| |
Primary DB Model
|
Relational DB Management System
| ||
Secondary DB Model
|
Graph DBMS, Document & Value store
|
Document & Key-Value store
| |
Developer
|
It is developed by Microsoft
|
It is developed by Oracle
| |
Server OS
|
It supports Windows, Linux
|
It supports Linux, Solarwinds, Windows, OS X
| |
Supporting Languages
|
Java, PHP, Ruby, C#, C++, R, etc
|
Python, TCL, Scheme, Haskell, Javascript, Ruby, C, C++, C# few more
| |
FK(Foreign Key)
|
Yes they support
|
Yes they support
| |
API's
|
JDBC, ODBC, OLE DB, TDS
|
ODBC, ADO.NET, JDBC
| |
License Permit
|
Only Commercial
|
OpenSource (Free)
|
The model database, as its name implies, serves as the model (or template) for all databases created on the same instance. If the model database is modified, all subsequent databases created on that instance will pick up those changes, but earlier created databases will not. Note that TEMPDB is also created from the model every time SQL Server starts up.
SQL profiler is the SQL Server utility you can use to trace the traffic on the SQL Server instance. Traces can be filtered to narrow down the transactions that are captured and reducing the overhead incurred for the trace. The trace files can be searched, saved off, and even replayed to facilitate troubleshooting.
SQL Server has three types of replication: Snapshot, Merge, and Transaction. Snapshot replication creates a snapshot of the data (point-in-time picture of the data) to deliver to the subscribers. This is a good type to use when the data changes infrequently, there is a small amount of data to replicate, or large changes occur over a small period of time.
Merge replication uses a snapshot to seed the replication. Changes on both sides of the publication are tracked so the subscriber can synchronize with the publisher when connected. A typical use for this type of replication is in a client and server scenario. A server would act as a central repository and multiple clients would independently update their copies of the data until connected. At which time, they would all send up their modifications to the central store.
Transaction replication also begins with a snapshot only this time changes are tracked as transactions (as the name implies). Changes are replicated from publisher to subscriber the same as they occurred on the publisher, in the same order as they occurred, and in near real-time. This type of replication is useful when the subscriber needs to know every change that occurred to the data (not point-in-time), when the change volume is high, and when the subscriber needs near real-time access to the changes.
SQL Agent is the job scheduling mechanism in SQL Server. Jobs can be scheduled to run at a set time or when a specific event occurs. Jobs can also be executed on demand. SQL Agent is most often used to schedule administrative jobs such as backups.
Checkpoints, whether scheduled or manually executed, cause the transaction log to be truncated up to the beginning of the oldest open transaction (the active portion of the log). That is, the dirty pages from the buffer cache are written to disk. Storing committed transactions in the cache provides a performance gain for SQL Server. However, you do not want the transaction log to get too big because it might consume too many resources and, should your database fail, take too long to process to recover the database.
One important thing to note here is that SQL Server can only truncate up to the oldest open transaction. Therefore, if you are not seeing the expected relief from a checkpoint, it could very well be that someone forgot to commit or rollback their transaction. It is very important to finalize all transactions as soon as possible.
DBCC statements are Database Console Commands and come in four flavors:
Maintenance commands are those commands that allow the DBA to perform maintenance activities on the database such as shrinking a file.
Informational commands provide feedback regarding the database such as providing information about the procedure cache. Validation commands include commands that validate the database such as the ever-popular CHECKDB. Finally, miscellaneous commands are those that obviously don’t fit in the other three categories. This includes statements like DBCC HELP, which provides the syntax for a given DBCC command.
You can set the fill factor on your indexes. This tells SQL Server how much free space to leave in the index pages when re-indexing. The performance benefit here is fewer page splits (where SQL Server has to copy rows from one index page to another to make room for an inserted row) because there is room for growth built into the index.
Update Statistics is used to force a recalculation of query optimization statistics for a table or indexed view. Query optimization statistics are automatically recomputed, but in some cases, a query may benefit from updating those statistics more frequently.
Beware though that re-computing the query statistics causes queries to be recompiled. This may or may not negate all performance gains you might have achieved by calling update statistics. In fact, it could have a negative impact on performance depending on the characteristics of the system.
A correlated sub-query is a nested query that is linked to the outer query. For instance, say I wanted to find all the employees who have not entered their time for the week. I could query the Employee table to get their first and last name, but I need to look at the time entry table to see if they’ve entered their time or not. I can’t do a straight join here because I’m looking for the absence of time data, so I’ll do a correlated sub-query similar to this:
SELECT FirstName, LastName
FROM EMPLOYEE e
WHERE NOT EXISTS (SELECT 1 FROM TimeEntry te
WHERE te.EmpID = e.EmpID
AND te.WeekID = 35)
Notice that the inner query relates to the outer query on the employee ID, thus making it a correlated sub-query. The inner query will be evaluated once per the outer query row.
Explore - SQL Server Interview Questions for 5 Years Experienced |
SQL Server supports Windows Authentication and mixed-mode. Mixed-mode allows you to use both Windows Authentication and SQL Server Authentication to log into your SQL Server. It’s important to note that if you use Windows Authentication, you will not be able to log in.
This is a generic question often asked by many interviewers. Explain what are the different SQL Server Versions you have worked on, what kind of administration of those instances has been done by you.
Your role and responsibilities carried out in your earlier projects would be of significance to the potential employer. This is the answer that lets the interviewer know how suitable are you for the position to which you are being interviewed.
The answer would be depending on the versions you have worked on, I would say I have experience working in SQL Server 7, SQL Server 2000, 2005, and 2008. If you have worked only on some versions be honest in saying that, remember, no one would be working on all versions, it varies from individual to individual.
The simplest answer to this is “Clustered and Non-Clustered Indexes”. There are other types of Indexes that can be mentioned such as Unique, XML, Spatial and Filtered Indexes. More on these Indexes later.
In a clustered index, the leaf level pages are the actual data pages of the table. When a clustered index is created on a table, the data pages are arranged accordingly based on the clustered index key. There can only be one Clustered index on a table.
In a Non-Clustered index, the leaf level pages do not contain data pages instead it contains pointers to the data pages. There can multiple non-clustered indexes on a single table.
There are quite a lot of changes and enhancements in SQL Server 2005. A few of them are listed here:
Support for Analysis Services on a Failover Cluster.
Failover Clustering, Database Mirroring, Log Shipping, and Replication are the High-Availability features available in SQL Server. I would recommend reading this blog of mine which explains the differences between these 4 features.
Inside SSMS, in Object Explorer under SQL Server Agent look for Job Activity Monitor. The job activity monitor displays the current status of all the jobs on the instance. Choose a particular job that failed, right-click, and choose view history from the drop-down menu.
The execution history of the job is displayed and you may choose the execution time (if the job failed multiple times during the same day). There would information such as the time it took to execute that Job and details about the error that occurred.
1433.
[ Learn - Oracle DBA Interview Questions & Answers ]
DCL stands for Data Control Language.
GRANT, DENY, and REVOKE.
Fill Factor is a setting that is applicable to Indexes in SQL Server. The fill factor value determines how much data is written to an index page when it is created/rebuilt.
By default, the fill factor value is set to 0.
The easiest way to find and change the default fill factor value is from Management Studio, right-click the SQL Server, and choose properties. In the Server Properties, choose Database Settings, you should see the default fill factor value in the top section.
You can change to the desired value there and click OK to save the changes. The other option for viewing and changing this value is using.
System databases are the default databases that are installed when the SQL Server is installed. Basically, there are 4 system databases: Master, MSDB, TempDB, and Model. It is highly recommended that these databases are not modified or altered for the smooth functioning of the SQL System. A user database is a database that we create to store data and start working with the data.
There are 3 recovery models available for a database. Full, Bulk-Logged, and Simple are the three recovery models available.
Primarily, the recovery model is chosen keeping in view the amount of data loss one can afford. If one expects to have minimal or no data loss, choosing the Full recovery model is a good choice.
Depending on the recovery model of a database, the behavior of the database log file changes. I would recommend you read more material on log backups and log file behavior and so on to understand in depth.
Replication is a feature in SQL Server that helps us publish database objects and data and copy (replicate) it to one or more destinations. It is often considered as one of the High-Availability options. One of the advantages of Replication is that it can be configured on databases that are in a simple recovery model.
There are basically 3 types of replication: Snapshot, Transactional and Merge Replication. The type of Replication you choose depends on the requirements and/or the goals one is trying to achieve. For example, Snapshot Replication is useful only when the data inside the tables does not change frequently and the amount of data is not too large, such as a monthly summary table or a product list table, etc.
Transactional Replication would useful when maintaining a copy of a transactional table such as sales order tables etc. Merge Replication is more useful in the case of remote / distributed systems where the data flow can be from multiple sites, for example, sales done at a promotional event that might not be connected to the central servers always.
The 3 main components in Replication are Publisher, Distributor, and Subscriber. The publisher is the data source of a publication. The distributor is responsible for distributing the database objects to one or more destinations. The subscriber is the destination where the publisher's data is copied/replicated.
Check out - SQL Server Interview Questions for 2-5 Years Experienced |
Replication can be configured in any topology depending on keeping in view the complexity and the workload of the entire Replication. It can be any of the following:
I would go to the SQL Server Configuration Manager. In the left pane of the tool, I would select SQL Server Services, the right side pane displays all of the SQL Server Services/components that are installed on that machine. If the Service is displayed as (MSSQLSERVER), then it indicates it is a default instance, else there will be the Instance name displayed.
SQL Server has 2 Authentication modes; Windows Authentication and SQL Server and Windows Authentication mode also referred to as Mixed Mode.
On SQL Server 2005, installing the SQL Server failover cluster is a single-step process whereas on SQL Server 2008 or above it is a multi-step process. That is, in SQL Server 2005, the Installation process itself installs on all of the nodes (be it 2 nodes or 3 nodes). In 2008 or above this has changed, we would need to install separately on all the nodes. 2 times if it is a 2 node cluster or 3 times in a 3 node cluster, and so on.
An Active-Passive cluster is a failover cluster configured in a way that only one cluster node is active at any given time. The other node, called the Passive node is always online but in an idle condition, waiting for a failure of the Active Node, upon which the Passive Node takes over the SQL Server Services and this becomes the Active Node, the previous Active Node now being a Passive Node.
An Active-Active cluster is a failover cluster configured in a way that both the cluster nodes are active at any given point in time. That is, one Instance of SQL Server is running on each of the nodes always; when one of the nodes has a failure, both the Instances run on only one node until the failed node is brought up (after fixing the issue that caused the node failure). The instance is then failed over back to its designated node.
Virtual network name for the SQL Server, Virtual IP address for SQL Server, IP addresses for the Public Network and Private Network(also referred to as Heartbeat) for each node in the failover cluster, shared drives for SQL Server Data and Log files, Quorum Disk, and MSDTC Disk.
Introduced in SQL Server 2008 Transparent Data Encryption (TDE) is a mechanism through which you can protect the SQL Server Database files from unauthorized access through encryption. Also, TDE can protect the database backups of the instance on which TDE was set up.
No, Transparent Data Encryption (TDE) does not encrypt the data during transfer over a communication channel.
Database Mirroring runs in 2 operating modes High-Safety Mode and High-Performance Mode.
Yes, it is possible to have various configurations in a Replication environment.
Learn - Oracle PL SQL Interview Questions & Answers |
Drop database deletes the database along with the physical files, it is not possible to bring back the database unless you have a backup of the database. When you take a database offline, the database is not available for users, it is not deleted physically, it can be brought back online.
Setting an auto-growth in multiples of MB is a better option than setting auto growth in percentage (%).
Row compression and Page Compression.
In-place upgrade and Side-by-Side Upgrade.
Using Cluster Administrator, connect to the cluster and select the SQL Server cluster. Once you have selected the SQL Server group, on the right-hand side of the console, the column “Owner” gives us the information of the node on which the SQL Server group is currently active.
From Start -> Run and type CluAdmin (case insensitive) and the Cluster Administrator console is displayed OR you can also go to Start -> All Programs -> Administrative Tools -> Cluster Administrator.
In the Cluster Administrator, rick click on the SQL Server Group, and from the popup menu item choose to Take Offline.
No, you cannot have a Distributor on a previous version than the Publisher.
→ Explore SQL Server DBA Sample Resumes Download & Edit, Get Noticed by Top Employers! |
Our work-support plans provide precise options as per your project tasks. Whether you are a newbie or an experienced professional seeking assistance in completing project tasks, we are here with the following plans to meet your custom needs:
Name | Dates | |
---|---|---|
SQL Server DBA Training | Nov 19 to Dec 04 | View Details |
SQL Server DBA Training | Nov 23 to Dec 08 | View Details |
SQL Server DBA Training | Nov 26 to Dec 11 | View Details |
SQL Server DBA Training | Nov 30 to Dec 15 | View Details |
Ravindra Savaram is a Technical Lead at Mindmajix.com. His passion lies in writing articles on the most popular IT platforms including Machine learning, DevOps, Data Science, Artificial Intelligence, RPA, Deep Learning, and so on. You can stay up to date on all these technologies by following him on LinkedIn and Twitter.