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

265 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

521 reads

Blogs

Making a PostgreSQL Backup in a Container

By

I needed to back up a PostgreSQL database as a part of the repro...

Azure SQL offerings

By

There are three Azure SQL products with so many different deployment options, service tiers,...

T-SQL Tuesday #183 Roundup

By

I hosted this month’s T-SQL Tuesday party with my invitation asking about tracking permissions....

Read the latest Blogs

Forums

RLS Causing RBAR

By danielfountain

Hi all, First I want to ask just a generic question.  Does RLS in...

SQL2019 STANDARD max memory is 128Gb yet my Bufferpool exceeds this value

By PearlJammer1

Reading the Microsoft documentation it says SQL2019 STANDARD EDITION has a max memory of...

Having issues installing SSIS extension for VS 2022 Community

By daniel.manke

I have installed the SSIS extension for VS 2022 community. When I go into...

Visit the forum

Question of the Day

A Simple Choice

I have this data in a table?

CatIDCatName
3Monitors
What is returned when I run this code?
SELECT CHOOSE(catid, 'Laptops', 'PCs') FROM dbo.Categories AS c
 

See possible answers