Get the list of temporal tables in SQL Server DB
Using simple sql technique, here we will see how to get the list of temporal tables in a database.
Using simple sql technique, here we will see how to get the list of temporal tables in a database.
How to check and drop a system-versioned temporal table if it exists in the database as temporal tables are different from regular tables?
Here a simple trick to find the name of the history table of a system versioned temporal table using SQL select statement.
Let us see how to check if a specific table is system versioned temporal or not using SQL script. SQL tips to check if temporal table exists.
Temporal table otherwise called as system-versioned table helps you to maintain the version history of the data in the table in a automated way.
In this article let us see a briefing about how Extended Events are comparable with Profiler and Trace. Extended Events vs Profiler Trace.
With example how to get only the common records from two tables using INTERSECT and the advantages of INTERSECT over INNER JOIN.
Getting records from one table which are not present in another table using EXCEPT operator in SQL Server.
In SQL Server there are several ways to concatenate columns to a single string. Here are few methods for concatenating columns based on the version of SQL Server.
Formatting SQL statements or source code of procedures or function in SSMS is a daunting task. Here you will see how to use a plugin to format T-SQL in SSMS.
It will be a good practice to create a code snippet instead of copy paste the template code in several files. Creating code snippet for Python Django web app in VS Code.
Simple step by step illustrations for using database in Python Django website. Here we will be using SQLite database.
Adding images and other media files is same as adding other static files. Sometime you may need to segregate images in a separate folder.
Step by step instruction on how to use Python for website development using Django as the web framework, Visual Studio Code as the editor on macOS.
Here is a simple way to copy a file in Python programming using one of the copy methods in shutil library module.
There are several ways to get a sub-string from a string in Python programming. Here we will see a simple slicing techniques to get sub string.
Here is a simple method to find the current directory of the script file in Python programming using a method from the os module.
Sometime you may need to manually raise exception in Python programming instead of thrown automatically.
There are couple of simple ways to get the last element of a list in Python programming. Let us see both these methods with samples.
Here is a simple tip to find the number of elements in a list in Python programming. Get the count of elements in a list.