Alessandro Alpi

Alessandro works in the IT since 2000. He started the DBA career since 2005. It's CTO and co-founder of Engage IT Services S.r.l. in which he's the Team Leader. He manages the development team with a continuous improvement pattern using agile practices. He designed the SQL Server automated deployment in his company using the RedGate tools and Visual Studio Team Services. Thanks to this, he's now Friend Of RedGate. Alessandro is also a teacher for SQL Server and ALM topics and a Translation Community Contributor on the official MS documentation. He's staff member of GetLatestVersion.it. He is also the organizer of some italian online and offline events, like PASS SQL Saturdays and DevOpsHeroes. He's the local organizer of SQL Saturday Parma. He's Certified Disciplined Agile Practitioner.

Blog Post

A 2015 full of DLM

After SQL Saturday Pordenone, I’ll keep speaking about DLM (aka ALM on databases) during the following events:
PASS Italian Virtual Chapter, April 14. I’ll demonstrate...

2015-03-24

266 reads

Blog Post

A 2015 full of DLM

After SQL Saturday Pordenone, I’ll keep speaking about DLM (aka ALM on databases) during the following events:
PASS Italian Virtual Chapter, April 14. I’ll demonstrate...

2015-03-24

522 reads

Blogs

Understanding Lakehouse Permissions in Microsoft Fabric

By

Understanding how permissions work in Microsoft Fabric can be essential for anyone managing access...

The Cost of Not Having a DBA

By

Does skipping a DBA save money? Wait until your system grinds to a halt,...

Who are you? Building an identity map.

By

I admit that until I read the article, Who are you as a Leader?,...

Read the latest Blogs

Forums

Union where it matches against only one shared column

By ldanks

Hi folks I have two tables, both with a NAME, START and END fields...

How to update using data from three tables?

By mjdemaris

I am in the process of migrating from MySQL to SQL Server. I have...

Select Returning Blank Rows

By JP789

I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...

Visit the forum

Question of the Day

Replacing a NULL II

What is returned from this code in SQL Server 2022?

DECLARE
  @value INT = NULL
, @value2 VARCHAR(20) = NULL;
SELECT COALESCE (@value, @value2, 100.5) AS Result;
GO

See possible answers