Author: Yavuz Selim Kart

Enable All Triggers in SQL Server

Hello to everyone, In this article, I will give information about how to enable All Triggers in SQL Server. In SQL Server, in some cases, you may want to enable all triggers. You can do this easily with the help of the code below. –Enable All Triggers in SQL Server...

Disable All Triggers in SQL Server

Hello to everyone, In this article, I will give information about how to disable All Triggers in SQL Server. In SQL Server, in some cases, you may want to disable all triggers. You can do this easily with the help of the code below. –Disable All Triggers in SQL Server...

Using Python MSSQL-CLI in SQL Server

Hello to everyone, In this article, I will try to give information about using Python MSSQL-CLI in SQL Server. First, let me talk about what MSSQL-CLI is. MSSQL-CLI is an interactive command line query tool for SQL Server. It is open source and built with Python. It can be used...

Listing All Functions in SQL Server

Hello to everyone, In this article, I will give information about how to list all functions in SQL Server. In SQL Server you may want to list all functions in some cases. You can do this easily with the help of the code below. SELECT name, definition, type_desc FROM sys.sql_modules...

Listing All Procedures in SQL Server

Hello to everyone, In this article, I will give information about how to list All Procedures in SQL Server. In SQL Server you may want to list all procedures in some cases. You can do this easily with the help of the code below. SELECT SPECIFIC_CATALOG, SPECIFIC_SCHEMA, SPECIFIC_NAME FROM INFORMATION_SCHEMA.ROUTINES...

Islamic Calendar Dates in SQL Server

Hello to everyone, In this article, I will talk about changing the date format to Islamic calendar date format in SQL Server. You may need Islamic calendar date in SQL Server. You can use the codes below to change your date in Islamic calendar date format. 130 SELECT CONVERT(NVARCHAR, GETDATE(),...

SQL Server Date Formats

Hello to everyone, In this article, I will talk about Date format change operations in SQL Server. Date format change is often used in SQL Server. You can use the codes below to change the date format. 1 SELECT CONVERT(VARCHAR, GETDATE(), 1); mm/dd/yy 12/30/06 2 SELECT CONVERT(VARCHAR, GETDATE(), 2); yy.mm.dd...

Don`t copy text!