How To Find Last Few Executed Queries in SQL Server?
How to Find Last Few Executed Queries in SQL Server? Simple methods to find the recently executed sql statements using DMVs (Dynamic Management Views).
How to Find Last Few Executed Queries in SQL Server? Simple methods to find the recently executed sql statements using DMVs (Dynamic Management Views).
How to get the row count of all tables In SQL Server database? Simple method to get the list of all tables in a database along with the number of rows.
Solution for error “Cannot find one or more components. Please reinstall the application.” when launching SQL Server Management Studio 2016 (SSMS 6.5.3).
Find the user defined function containing text or specific table name or specific column name? Here is the simple transact SQL statements to find the UDF
How to search and find user defined function (UDF) by it’s name or partial name, or even with some text in the function’s source code.
How to search and find all user defined functions or UDF In SQL Server? Several methods to find all the user defined functions in a database.
Difference between Temp Table, Table Variable and CTE in SQL Server. Temp Table vs Table Variable vs CTE and their usage.
Difference between function and stored procedure in SQL Server. Here you have a comparison table on Function vs Stored Procedure.
Encrypting a string using hash code algorithm in sql server using the HASHBYPES function. Hash Code Encryption using MD2, MD4, MD5, SHA, SHA1, SHA 256 & 512
Finding Indexes On A Table In SQL Server: There are several ways to list the indexes on a table. We’ll see few easy methods to find indexes on a table
Easy method to find the size of tables in an SQL Server database. Get the size of all the tables in a database using SSMS standard report and queries.
Combine multiple rows into one string in SQL Server. Simple query in SQL Server to concatenate multiple rows Into single string.
Shrink database file (mdf) In SQL Server database and reduce it’s size. I.e. shrinking the mdf file without affecting the ldf file.
Shrink transaction log file In SQL Server database without altering the database files . I.e. shrinking the ldf file without affecting the mdf file.
Generating more and recent transaction data In SQL Server WideWorldImporters sample database. Steps for generating more data In WideWorldImporters database.
Tips and tricks to check if column exists in a SQL Server database table. Also find the list of all tables and stored procedures having the column name.
Encrypting stored procedure in SQL Server for hiding the source code of the stored procedure, view and function. Using WITH ENCRYPTION to hide source code.
Choosing, downloading and installing (restoring) Wide World Importers Sample Database for SQL Server for training purpose. What is WideWorldImporters?
Update from select statement in SQL Server. Updating a table using select statement form the same table or different tables using join.
A simple step by step tutorial on SQL Server basics. This tutorial is focused for the beginners who are trying to learn Microsoft SQL Server from scratch.