Finding triggers on table or schema in SQL Server DB
Simple tips for finding triggers in an SQL Server database based on the partial table name or all the tables under a schema.
Simple tips for finding triggers in an SQL Server database based on the partial table name or all the tables under a schema.
When trying to filter the results using LIKE clause with string having square bracket, it won’t work. So, how to escape square brackets in LIKE clause?
Is there FOR LOOP in SQL Server? If you are new to SQL Server and trying to create a stored procedure with some simple logic, you might be looking for the syntax of FOR LOOP.
Here is my take to search the whole database for a string In SQL Server. A stored procedure to search all the tables and its columns for a keyword.
Here is a simple solution to avoid the SQL Server error “String or binary data would be truncated …” and Insert string data with truncation.
Now we will see how to execute a Stored Procedure from python. For the most part, executing a stored procedure is similar to a select statement.
Error CS1069 The type name ‘SqlConnection’ could not be found in the namespace ‘System.Data.SqlClient’. This type has been forwarded to assembly ‘System.Data.SqlClient, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’ Consider adding a reference to that assembly.
Today, let us see how to execute an SQL Server Stored Procedure from a C# program.
Solution for unable to save changes after editing table in design window of SQL Server Management Studio.
GETDATE() Vs CURRENT_TIMESTAMP: What are the differences and similarities between GETDATE() and CURRENT_TIMESTAMPIn SQL Server?
Why is the finder, disk utility and storage tab windows are showing different free space In MacOS drive? and what is purgeable storage
When downloading files form any website, it is important to verify the integrity of the file after downloading. Here are the the steps for verifying the integrity of the Linux Mint ISO file.
In this article we will see how to connect SQL Server from a Python program on macOS using the Visual Studio Code as the development environment.
IN SQL Server, moving table to another schema is quiet simple. Here I have given sample script to transfer one or all tables in a database to another schema.
How to add key value pair to a dictionary in Python? You can add key value pairs to an existing dictionary by couple of methods. Let us see them in detail.
extend() vs append(): Pythons list or array methods extend() and append() appears similar, but they perform different operations on the list. Let’s see the differences between extend() and append() list methods.
Here is the simple method to check if the list is empty or not in python programming language.
Lately I got questions asking for a quick lightweight tool to compare code files. Even though there are several tools available in the market, I use Visual Studio Code to quickly compare contents of two files.
Now we will see about the simplest method for killing all the active connections of an SQL Server database.
Here are the queries I’m using to fetch the data and log file sizes separately for a specific database. These T-SQL queries return file sizes, used space and free space using DMVs.