How To Find out Who Deleted the Login from SQL Server - SQL Server DBA Tutorial
In this video you will learn multiple ways to find out who deleted login in SQL Server such as extracting information from SQL Server Default Trace, by creating Login Audit, by creating Login Audit...
View ArticleHow to Find out who has Modified or created object in SQL Server - SQL Server...
In this video you will learn multiple ways to find out who has created or deleted objects in SQL Server as well as SQL Server database. It explains finding out who deleted or created object using SQL...
View ArticleHow to Change SQL Server Port - SQL Server DBA Tutorial
In this video you will learn how to change SQL Server Port from Dynamic port to Static port using SQL Server Configuration manager. It also explains how to configure SQL Server to listen to different...
View ArticleHow to Setup the Email Notificaion For Job Failure on SQL Server - SQL Server...
This video explains step by step process of setting up the email notification if SQL Server Agent Job fails. It explains using SQL Server agent notification where you configure the Job system alert to...
View ArticleHow to Assign Default Schema to AD Group in SQL Server - SQL Server DBA Tutorial
This video shows step by step process of assigning default schema to SQL Server Group login. It explains using how to assign schema to AD group Login in SQL Server 2005, 2008, 2012 and 2014. It shows...
View ArticleHow To Delete ERROR LOGS in SQL Server - SQL Server DBA Tutorial
In this video you will learn how to delete SQL Server Error Log. It shows step by step process of viewing the location of SQL Server Error Logs, how to recycle SQL Server Error log Using SSMS as well...
View ArticleHow to Update Statistics (stats) of All the Databases or Single Database in...
In this video you will learn how to update Statistics of All databases in SQL Server using SQL Server Management studio as well as using T-SQL Script. It shows different options of updating the...
View ArticleSQL Server Cursor Types - What are Static Cursors in SQL Server | SQL Server...
Cursors are the objects those allow us to access the data row by row from result set.Static Cursor make the copy of result set in memory at time of cursor creation and use that temporary result set to...
View ArticleSQL Server Cursor Types - Dynamic Cursor | SQL Server Tutorial / TSQL Tutorial
Cursors are the objects those allow us to access the data row by row from result set.Dynamic Cursors are update-able. The dynamic cursor will fetch the changes (insert,update or delete) on each fetch...
View ArticleSQL Server Cursor Types - Forward Only Static Cursor | SQL Server Tutorial /...
Cursors are the objects those allow us to access the data row by row from result set.Forward Only Cursors do not allow backward scrolling. The only scrolling option we have is FETCH NEXT.Forward only...
View ArticleSQL Server Cursor Types - Forward Only Dynamic Cursor | SQL Server Tutorial /...
Cursors are the objects those allow us to access the data row by row from result set.Forward Only Cursors do not allow backward scrolling. The only scrolling option we have is FETCH NEXT.Forward only...
View ArticleWhat is Intersect Operator in SQL Server - SQL Server Tutorial / TSQL Tutorial
The Intersect Operator returns us distinct matching records from two or more Select queries ( Result Sets).For Intersect Operator to work, the Number of columns should be same in all Select queries and...
View ArticleHow to get Database out of Single User Mode - SQL Server DBA Tutorial
In this video you will learn how to bring database from Single User mode to Multi User mode using SQL Server Management studio as well as using T-SQL Script. You will learn a scenario where you will...
View ArticleHow to Shrink MDF Database Data File of SQL Server - SQL Server DBA Tutorial
In this video you will learn how to shrink MDF database file of SQL Server using SQL Server Management studio as well as T-SQL Script. It also talks about what are the best practices of shrinking SQL...
View ArticleHow to See SQL Server User Password in SSMS, Can we script out SQL Server...
In this video you will learn how to see SQL Server User Password in SQL Server Management studio, how to script out SQL Server User with same password and how to migrate user from Once SQL Server...
View ArticleHow to Rename a Database in SQL Server - SQL Server DBA Tutorial
In this video you will learn how to rename SQL Server database using SQL Server Management studio (GUI) as well as using T-SQL Script. Video talks about different scenarios where you might have to...
View ArticleHow to Find out How Much Memory is Allocated to SQL Server Instance - SQL...
In this video you will learn how to find how much memory is allocated to SQL Server instances using various methods. Methods include by viewing SQL Server memory configuration via SSMS, using SQL...
View ArticleHow to Find Out If SQL Server Database is in Use - SQL Server DBA Tutorial
In this video you will learn how to check if SQL Server Database is in use? It provides couple ways to accomplish this task, using store procedure sp_who2 and SQL Server Activity Monitor.How to Find...
View ArticleHow to Check CPU % Usage by SQL Server - SQL Server DBA Tutorial
This video provides step by step process of how to check CPU utilization for SQL Server in % (Percentage). It uses different methods of checking CPU utilization on operating system as well as Other...
View ArticleHow to Change Database Collation From Case Insensitive to Case Sensitive -...
In this video you will learn how to change SQL Server Database collation from Case Insensitive to Case sensitive using SQL Server Management Studio as well as using T-SQL Script. It also talks about...
View Article