Bringing Database Online In SQL Server
How to bring back an SQL Server database online? Simple methods for bringing database online state using transact-SQL or SSMS.
Articles about Microsoft technologies like Windows, SQL server, MS Office, Sharepoint, IIS, Dot Net, etc..
How to bring back an SQL Server database online? Simple methods for bringing database online state using transact-SQL or SSMS.
How to take an SQL Server database offline? Simple methods to bring a MSSQL database to offline state using transact-SQL or management studio.
Simple method to split delimited strings in newer and older versions of SQL Server. Using STRING_SPLIT() in SQL Server 2016 and higher and Few lines of code to create a function which splits the strings with delimiters on older versions.
Easy way to simulating deadlocks and blocks In SQL Server. You may need to simulate blocked processes and deadlocks for testing purpose.
Finding the deadlocks and blocked processes using extended events In SQL Server. Collecting deadlocks using extended events
Step by step instructions for creating Core MVC web application using Zurb Foundation 6 user interface framework. Foundation 6 with ASP.NET Core MVC 1.
How to find long running stored procedures In SQL Server? Step by step illustration to find slow running SQL Server stored procedure.
What Are Extended Events In SQL Server? What are the advantages of extended events over profiler? How to use SQL Server XEvents?
How to add bootstrap in ASP.NET Web Forms and MVC projects? Step by step instruction for adding bootstrap UI framework in ASP.NET web projects.
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.
Fix for OneNote For Mac OS Crashes on Startup. Simple and quick steps to fix the crashing of OneNote on MacOS Sierra. Is onenote crashes on startup in mac?
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