How to Delete Large Amounts of Data in Microsoft SQL Server
A short look at some of the options for deleting lots of data from a SQL Server table.
2024-10-07
5,615 reads
A short look at some of the options for deleting lots of data from a SQL Server table.
2024-10-07
5,615 reads
How many of us clean up our databases and is it worth it? Steve has a few thoughts.
2024-10-02
235 reads
This tip covers the differences and similarities between SQL Server index rebuild and index reorganize operations.
2024-09-30
2024-09-27
398 reads
This article explores how raising the Cost Threshold for Parallelism (CTFP) affects missing index recommendations in SQL Server along with examples.
2024-09-25
2024-09-20
421 reads
This continues my series on auditing SQL Server. The fist parts covered discovery and documentation, server level hardware audits and SQL Server engine level audits. This section examines database configuration audits.
2024-09-18
2024-09-13
142 reads
2024-09-11
362 reads
I’m not the first person to write about cleaning up unused or redundant indexes.
2024-08-16
By DataOnWheels
Hey data friends! This one comes from my personal vault (aka backlog of drafts...
Data's the new oil, and SQL is your refinery. It's still the go-to language...
You can’t just exec DROP ROLE your_role_name; if it’s granted perms or other roles...
Comments posted to this topic are about the item Why you should avoid Implicit...
Comments posted to this topic are about the item Creating a Linked Server in...
Comments posted to this topic are about the item Dates and Languages
The string, listopad, translates to a month name in different languages. If I were to run this code, what values are returned?
DECLARE @yourInputDate NVARCHAR(32) = '28 listopad 2018'; SET LANGUAGE Polish; SELECT CONVERT(DATE, @yourInputDate) AS [SL_Polish]; SET LANGUAGE Croatian; SELECT CONVERT(DATE, @yourInputDate) AS [SL_Croatian]; SET LANGUAGE English;See possible answers