Recently updated blog post:
In which I demonstrate why using heaps in SQL Server for anything other than staging tables comes with real, measurable costs.
If you didn't get a chance to attend my session at Data Saturday Croatia 2026, then this is the next best thing.
https://vladdba.com/2025/12/30/the-hidden-costs-of-heaps-in-sql-server/
#sqlserver #sqldba #microsoftsqlserver #mssqlserver #mssql #mssqldba
The hidden costs of heaps in SQL Server

In this post I cover some unpleasant side-effects of using heaps in SQL Server for anything else than staging tables.

VladDBA
New blog post:
On my experience as a first time speaker at a Data Saturday conference at Data Saturday Croatia 2026.
https://vladdba.com/2026/06/23/attendee-speaker-data-saturday/
#sqlserver #sqldba #microsoftsqlserver #mssqlserver #mssql #mssqldba #sql #mvpbuzz
From Attendee to Speaker: My first Data Saturday session

In this post I cover my experience as a first time speaker at a Data Saturday conference at Data Saturday Croatia 2026.

VladDBA

More coding!

This one is not really anything new.
It's just a tool that allows to interact with Microsoft SQL from the command line in different ways.

I used it in a few engagements I had and I thought it came in handy every time, so I decided to publish the code.

Maybe someone else will find it useful as well.

https://codeberg.org/ti-kallisti/Tessera

#foss #coding #InfoSec #pentesting #redteaming #codeberg #windows #mssql #csharp

Tessera

A small C# tool for interacting with MSSQL

Codeberg.org

Credential Attacks Target Fortinet, Sophos, MSSQL Devices in Large-Scale Campaign

A large-scale password spraying and credential theft campaign, dubbed "FortiBleed," is targeting Fortinet devices, with attempts also seen against MSSQL services and Sophos devices, warns Unit 42. This coordinated attack has sparked concerns over widespread credential attacks.

https://osintsights.com/credential-attacks-target-fortinet-sophos-mssql-devices-in-large-scale-campaign?utm_source=mastodon&utm_medium=social

#CredentialAttacks #Fortinet #Sophos #Mssql #PasswordSpraying

Credential Attacks Target Fortinet, Sophos, MSSQL Devices in Large-Scale Campaign

Learn how to protect against large-scale credential attacks targeting Fortinet, Sophos, MSSQL devices and take action to secure your network now effectively.

OSINTSights

How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
What is Microsoft SQL Server?
Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
Continued 👉 https://blog.radwebhosting.com/install-microsoft-sql-server-on-ubuntu-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.social #freetds #mssql #apache #sqlserver #selfhosted #selfhosting

How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
What is Microsoft SQL Server?
Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
Continued 👉 https://blog.radwebhosting.com/install-microsoft-sql-server-on-ubuntu-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #mssql #selfhosted #selfhosting #freetds #sqlserver #apache

Giving AI Agents Visibility Into SQL Server with MCP

I built a custom MCP server that wires AI agents directly into SQL Server DMVs, giving them real diagnostic visibility into blocking chains, wait stats, missing indexes, and more. Here's why I built it and how to get started.

Anthony Nocentino's Blog

Дашборд для SSRS и Power BI Report Server, которого нет ни у кого: собираем сами и забираем готовым

Готового мониторинга для SSRS и Power BI Report Server в сети нет - одни обзоры «SQL Server» с CPU и памятью. Собрал свой на Grafana: трейс упавших рассылок, тяжёлые отчёты, ночная нагрузка pbix и грабли с часовым поясом. Сборку отдаю целиком.

https://habr.com/ru/articles/1047918/

#ssrs #powerbi #pbirs #grafana #mssql #мониторинг #windows_exporter #victoriametrics #prometheus #дашборд

Дашборд для SSRS и Power BI Report Server, которого нет ни у кого: собираем сами и забираем готовым

Скажу честно: к этой статье меня подтолкнула причина донельзя прозаическая. Сижу недавно на брифинге, и прилетает жалоба - сервер отчётов работает из рук вон плохо. Сервер при этом не мой, в орбиту...

Хабр

How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
What is Microsoft SQL Server?
Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
Continued 👉 https://blog.radwebhosting.com/install-microsoft-sql-server-on-ubuntu-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.social #sqlserver #apache #freetds #mssql #selfhosting #selfhosted

REDB: индексы, или почему на любую схему — это быстро

В предыдущей части цикла разобрали 13 таблиц REDB: как устроены objects , values , structures , как RTTI-хранение значений отличается от старого EAV-паттерна, зачем нужен scheme_metadata_cache . Если не читали — начните с неё, без понимания схемы дальше тяжело. В этой статье — то, что обычно идёт следующим вопросом: «А индексы где? У вас же значения всех полей лежат в одной таблице. Любой WHERE — это Seq Scan по миллионам строк». Это статья 1.1, а не 2 — потому что она прямое продолжение разговора про физическое хранение. Глубокое погружение в C# — это статьи 3-5 цикла : Code-first схемы ( SyncSchemeAsync<T> ), CRUD (SaveAsync/LoadAsync), LINQ-транслятор. Здесь разговор остаётся в плоскости БД и DDL. Цифры, на которые опираемся, — с реального прода: TSUM, логистическая система, обслуживает движение грузовиков и заказов через РЦ.

https://habr.com/ru/articles/1045208/

#redb #dotnet #postgresql #mssql #индексы #производительность #c# #c#net

REDB: индексы, или почему на любую схему — это быстро

redb index REDB изнутри, статья 1.1: индексы, или почему 3 таблиц на любую схему — это быстро В  предыдущей части цикла  разобрали 13 таблиц REDB: как устроены  objects ,  values...

Хабр