Top 10 New Features in SQL Server 2016
Microsoft is releasing new and exciting features with new versions over the time. SQL Server 2016 also has lots of new features for database users and it has been reformed and made database users...
Articles / SQL Server / Tutorials
by Manzoor Siddiqui · Published November 29, 2015 · Last modified May 26, 2016
Microsoft is releasing new and exciting features with new versions over the time. SQL Server 2016 also has lots of new features for database users and it has been reformed and made database users...
Interview Q&A / SQL DBA Interview Q&A / SQL Developer Interview Q&A / SQL Server
by Manzoor Siddiqui · Published October 11, 2015 · Last modified December 8, 2015
1. What do mean by XML Datatype? XML data type is used to store XML documents in the SQL Server database. Columns and variables are created and store XML instances in the database. 2. What...
Articles / Database Administration / SQL Server / SQL Tips and Tricks / SQL Troubleshooting
by Manzoor Siddiqui · Published October 10, 2015 · Last modified December 4, 2015
SQL Server provides DMVs and system tables to find out when SQL Server was last restarted. We may need this information many times to troubleshoot or trace issues which occurs on database servers. So,...
Database Administration / Performance Tuning / SQL Server
by Manzoor Siddiqui · Published October 9, 2015 · Last modified February 12, 2021
344views If you want to identify when last time statistics were updated on objects in database then you can use either DBCC SHOW_STATISTICS header information or sys.stats catalog view. Below example displays all statistics information for the...
Database Administration / Performance Tuning / SQL Server
by Manzoor Siddiqui · Published October 8, 2015 · Last modified November 12, 2015
If your database contains hundreds or thousands of tables then it’s difficult to find which tables are missing clustered index in a database manually. You can go through this article which provides very simple...
Database Administration / SQL Server / SQL Tips and Tricks
by Manzoor Siddiqui · Published October 7, 2015 · Last modified October 29, 2015
We have a query which is very useful for DBAs and database users to find total number of connections used by particular login on database instance for all databases or on particular database. Here I am...
More