T-SQL

SQL Server partitioning

SQL Server table partitioning allows to physically split the data of one table on the disk. Partitioning means data division that allows to directly access one unique partition instead of all the data from the table. First, why all

T-SQL

Create a SQL Server partition

How to create a table partition in SQL Server? Let’s consider a large table with Sales data. So, this table have a column that stores the year of the sale and the table stores millions of lines. Let’s consider

T-SQL

Alter View with SQL Server

How to alter a SQL Server view with a T-SQL script? This code example allows you to modify an existing view. All you must do is use the common ALTER VIEW command. For example, to delete a column from

T-SQL

How to use SQL Server SUBSTRING function?

Examples of SQL Server SUBSTRING function to split a text column or a variable with string, start and length as arguments. Find a few practical example queries that uses the SQL Server SUBSTRING function. This popular function is designed