Category: SQL Server

To See Which Tables Have Been Processed Last in SQL Server

Hello everyone, In this article, I will try to give information about seeing which tables were processed last in SQL Server. In SQL Server, in some cases, you may want to see which tables were processed last. You can easily do this using the code below. SELECT DB_NAME(ius.[database_id]) AS [Database],...

Versions that Need to be Updated in SQL Server

Hello everyone, In this article, I will try to give information about the versions that need to be updated in SQL Server. There are some versions of SQL Server that are known to cause corruption in SQL Server in certain situations. These are versions of SQL Server 2012 and SQL...

Comma-Separating Table Columns into Lists in SQL Server

Hello everyone, In this article, I will try to give information about separating table columns with commas and making them a list in SQL Server. In SQL Server, in some cases, the number of columns in your table may be high. Instead of typing the column names one by one...

MSSQL Support End Dates in SQL Server

Hello everyone, In this article, I will try to give information about the MSSQL support termination dates in SQL Server. Below are Microsoft’s end of support dates for SQL Server versions. ↓SQL Server 2019 15.0.2000.5 Version: 15.0 Mainstream support end: Jan 14, 2025 Extended support end: Jan 8, 2030 ↓SQL...

Seeing Table Sizes in SQL Server

Hello everyone, In this article, I will try to give information about seeing table sizes in SQL Server. In SQL Server you may want to see table sizes in some cases. You can easily do this using the code below. SELECT t.name AS TableName, s.name AS SchemaName, p.rows AS RowCounts,...

Don`t copy text!