The 2024 Plan
On the last working day of 2023, Steve says you should think about making a 2024 plan for your career.
On the last working day of 2023, Steve says you should think about making a 2024 plan for your career.
Learn about Microsoft Fabric and OneLake which is a single logical data lake for the entire Fabric platform in your organization.
Introduction This SQLServerCentral article shows how to create a SQL Server presentation in 5 minutes using AI. AI is revolutionizing the world as it continues to evolve. In this article, we aim to answer the question: Is it truly possible to create a high-quality presentation using AI in such a short amount of time? Is […]
Steve is relieved that he hasn't updated sqlmemorial.org this year, but worries he's missed remembering some of our colleagues.
This short piece explains the value of maximum server memory and shows you how to change this.
Learn about some of the overlooked but extremely useful features when building Power BI reports and dashboards.
Receive email notifications of non-standard entries in your SQL Server Error Log files with a little PowerShell.
Learn about Power BI vs Tableau reporting comparison with SQL Server data to see the query differences when retrieving data.
Docker is an open-source platform that enables developers to automate the deployment and management of applications using containerization. It was created by Solomon Hykes and his team at Docker, Inc., and was first released in 2013.
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers