How To Get Day Of Week In SQL Server?
Here is how to get the day of week In SQL Server. We will see couple of inbuilt functions to get the day of week.
Articles about Microsoft technologies like Windows, SQL server, MS Office, Sharepoint, IIS, Dot Net, etc..
Here is how to get the day of week In SQL Server. We will see couple of inbuilt functions to get the day of week.
Unable to change SQL Server database compatibility level from management studio. Because the compatibility level field in the database properties window is disabled and grayed out.
Upgrading SQL Server to it latest version. Here you will have the steps and tips to upgrade SQL Server and the existing database from a older version to a higher version, say 2017.
How to combine URLs or URIs in ASP.NET? Best way for joining or combining URLs or URIs in razor or c# in ASP.NET.
How to copy tables from one database to another database In SQL Server? Here is a quick tip to copy a table along with it’s table structure from one SQL Server database to another database on the same server.
How To Pass Array Or List To Stored Procedure in SQL Server? Using table-valued parameter to pass data-table to a stored procedure in SQL server from C# application.
How to rollback transaction on error in SQL Server stored procedure? Example for including transaction in TRY – CATCH block to rollback a transaction on any error occurred in the stored procedure.
How will you return error message in SQL Server stored procedure? Capturing the exception occurred in a stored procedure and returning the error message to the calling application is important in SQL Server programming. Here is the method to return the error message from a stored procedure.
How to create an unique constraint that allow multiple nulls? Using filtered index you can create unique constraint with multiple nulls. Using this you can store any number for NULL in a unique constraint column
Quick methods to list all foreign keys referencing a table in SQL Server using execution of simple TSQL scripts and SSMS GUI. Ways to identify all the tables referencing a table with foreign key constraint
Easy way to auto generate INSERT statements for a table in SQL Server using SSMS. Generate insert statements from sql server tables on the fly.
Adding or inserting Inserting Line Break or Carriage Return or Tab to a string in SQL Server. Quick examples for adding special characters like Line Break, Carriage Return and Tab to strings.
How to do pagination of results in SQL Server In and efficient way? Best way to paginate results in SQL Server to improve performance of the application.
How to get date part alone from DateTime and DateTime2 data types in SQL Server? Here are few of the techniques to get date from DateTime column.
Top SQL Server Development And Management Tools. List of few popular tools which can be used for MS SQL Server development and management.
Solution for SQL Server 2014/2012 won’t start on disabling SSL 3.0 and TLS 1.0 protocols. Fix for disabling TLS 1.0 and SSL 3.0 causes SQL Server issues.
What is Azure Data Studio (SQL Operations Studio)? What are the salient features of SQL Ops Studio? Advantages and disadvantages of SQLOPS over SSMS.
Where is SQL Server Configuration Manager? How to find and open Configuration Manager in latest versions of SQL Server? Opening SSCM in MMC.
How to drop table if it exists in SQL Server? How to drop stored procedure if it exists? How to drop function if it exists? Using DROP IF EXISTS.
Concatenate multiple rows into single string in SQL Server using STRING_AGG. New function STRING_AGG in SQL Server 2017 to concatinate rows of data.