VladDBA
  • Home
  • Scripts
    • All Scripts
    • PSBlitz
    • Get database file sizes
    • Get table and index sizes
    • Lightwieght SQL login password audit
    • Measure write speeds in SQL Server
  • Diagnose your SQL Server
  • SQL Server Security
    • Securing SQL Server’s service account
    • Securing SQL Server linked servers
    • Securing xp_cmdshell in SQL Server
    • Regain access to the sa login
    • Gain sysadmin role via trustworthy database
    • Cracking SQL Server login passwords online
    • Cracking SQL Server login passwords offline
  • My SSMS Configuration
  • SSMS Tips & Tricks
VladDBA
  • Home
  • Scripts
    • All Scripts
    • PSBlitz
    • Get database file sizes
    • Get table and index sizes
    • Lightwieght SQL login password audit
    • Measure write speeds in SQL Server
  • Diagnose your SQL Server
  • SQL Server Security
    • Securing SQL Server’s service account
    • Securing SQL Server linked servers
    • Securing xp_cmdshell in SQL Server
    • Regain access to the sa login
    • Gain sysadmin role via trustworthy database
    • Cracking SQL Server login passwords online
    • Cracking SQL Server login passwords offline
  • My SSMS Configuration
  • SSMS Tips & Tricks
VladDBA
VladDBA
  • Home
  • Scripts
    • All Scripts
    • PSBlitz
    • Get database file sizes
    • Get table and index sizes
    • Lightwieght SQL login password audit
    • Measure write speeds in SQL Server
  • Diagnose your SQL Server
  • SQL Server Security
    • Securing SQL Server’s service account
    • Securing SQL Server linked servers
    • Securing xp_cmdshell in SQL Server
    • Regain access to the sa login
    • Gain sysadmin role via trustworthy database
    • Cracking SQL Server login passwords online
    • Cracking SQL Server login passwords offline
  • My SSMS Configuration
  • SSMS Tips & Tricks

©2024 - Vlad Drumea - All rights reserved.

  • SecuritySQL Server

    PoCs for two SQL Injection vulnerabilities fixed in SQL Server 2022 GDR KB5063814

    by Vlad Drumea August 29, 2025
    by Vlad Drumea August 29, 2025 0 comments 8 minutes read

    In this post I demo two PoCs for SQL injection vulnerabilities fixed in SQL Server 2022 CU20 GDR KB5063814. This August’s Patch Tuesday came with a security patch for SQL …

    0 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • PerformancePowerShellSQL Server

    Diagnosing SQL Server with PSBlitz – 3-year anniversary post

    by Vlad Drumea July 30, 2025
    by Vlad Drumea July 30, 2025 0 comments 6 minutes read

    This post is an overview of PSBlitz, how I use it in diagnosing SQL Server issues, and the notable changes it went through over the past 3 years. Intro In …

    3 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • PowerShell

    My PowerShell coding setup

    by Vlad Drumea July 28, 2025
    by Vlad Drumea July 28, 2025 0 comments 2 minutes read

    This is a brief post containing my information about my PowerShell coding setup, IDE, extensions, etc. I’m writing this mainly because, based on the reactions to my reddit comment, some …

    2 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • MisconceptionsSQL Server

    No, SQL Server CTEs do not store results

    by Vlad Drumea July 27, 2025
    by Vlad Drumea July 27, 2025 0 comments 7 minutes read

    There’s this weird misconception floating around LinkedIn and reddit that SQL Server CTEs somehow store results in either memory or tempdb. This is wrong and whoever states that CTEs store …

    1 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • SQL Server

    SQL Server IDENTITY columns – an info-dump

    by Vlad Drumea July 23, 2025
    by Vlad Drumea July 23, 2025 0 comments 14 minutes read

    In this post I go over some useful information that you should be aware of when working with SQL Server’s IDENTITY columns. I initially intended for this to be more …

    4 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • ScriptsSQL Server

    Script to reseed out-of-sync sequences used for default constraints

    by Vlad Drumea July 20, 2025
    by Vlad Drumea July 20, 2025 0 comments 8 minutes read

    This is a script that I wrote to help me next time I might need to bulk reseed out-of-sync SQL Server sequences tied to default constraints. Setting the scene Someone, …

    6 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • PerformanceSQL Server

    Does Query Store plan forcing work on queries using the RECOMPILE hint?

    by Vlad Drumea July 18, 2025
    by Vlad Drumea July 18, 2025 0 comments 8 minutes read

    It’s 3AM and I’m curious if Query Store plan forcing works on queries that use the RECOMPILE hint (aka OPTION(RECOMPILE) ).So might as well make a blog post out of …

    5 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • SecuritySQL Server

    Looking into SQL Server 2025’s new PBKDF2 hashing algorithm

    by Vlad Drumea June 23, 2025
    by Vlad Drumea June 23, 2025 0 comments 12 minutes read

    In this post I explore the impact of SQL Server 2025’s PBKDF2 hashing algorithm on password cracking and compare it with SQL Server 2022. Spoiler: SQL Server 2025’s PBKDF2 hashing …

    4 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • PerformanceSQL Server

    The VM CPU configuration mistake that is hurting your SQL Server performance and wasting licensing money

    by Vlad Drumea June 8, 2025
    by Vlad Drumea June 8, 2025 0 comments 3 minutes read

    In this post I cover a fairly common VM CPU configuration mistake that may end up hurting your SQL Server’s performance and wasting licensing money. Intro It’s not uncommon that …

    6 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
  • ContainersSQL Server

    Create a SQL Server 2025 container

    by Vlad Drumea May 30, 2025
    by Vlad Drumea May 30, 2025 0 comments 4 minutes read

    This post covers creating SQL Server 2025 containers in Podman, Qnap Container Station, and sqlcmd, and restoring a sample database to test the new version. Prerequisites For Podman and go-sqlcmd, …

    8 FacebookTwitterLinkedinRedditCopy LinkThreadsBlueskyEmail
Newer Posts
Older Posts

About Me

About Me

Hi! I'm Vlad Drumea

I've been working with SQL Server for the past 13+ years focusing on query performance, database security, and automation, with the bulk of my experience being gained while working with large production environments.
I'm a Data Platform MCSE, as well as an OSCP and PNPT, with a passion for InfoSec and PowerShell.
In my spare time I work on PSBlitz and post on this blog.

Socials

Github Linkedin Email Reddit Rss

Get 10% discount on Brent Ozar’s courses

Find out more

Subscribe

I only send one newsletter per week with the latest blog posts.

Recent Posts

  • PoCs for two SQL Injection vulnerabilities fixed in SQL Server 2022 GDR KB5063814

    August 29, 2025
  • Diagnosing SQL Server with PSBlitz – 3-year anniversary post

    July 30, 2025
  • My PowerShell coding setup

    July 28, 2025
  • No, SQL Server CTEs do not store results

    July 27, 2025
  • SQL Server IDENTITY columns – an info-dump

    July 23, 2025

Categories

  • Uncategorized (4)
  • SQL Server (82)
    • Scripts (19)
    • Recovery (1)
    • PowerShell (10)
    • Security (12)
    • Workarounds (5)
    • Troubleshooting (6)
    • Performance (9)
    • Tips And Tricks (10)
    • Azure SQL DB (1)
    • Containers (4)
    • Getting Started (2)
    • Misconceptions (1)
  • Home Lab (10)
    • VirtualBox (8)
  • Windows (3)
  • PowerShell (7)

Archives

  • August 2025 (1)
  • July 2025 (6)
  • June 2025 (2)
  • May 2025 (7)
  • April 2025 (2)
  • March 2025 (1)
  • February 2025 (3)
  • January 2025 (4)
  • December 2024 (2)
  • November 2024 (4)
  • October 2024 (1)
  • September 2024 (4)
  • July 2024 (1)
  • June 2024 (6)
  • May 2024 (4)
  • April 2024 (5)
  • March 2024 (2)
  • February 2024 (2)
  • January 2024 (2)
  • December 2023 (1)
  • November 2023 (4)
  • October 2023 (1)
  • September 2023 (6)
  • August 2023 (3)
  • July 2023 (4)
  • June 2023 (2)
  • April 2023 (1)
  • January 2023 (2)
  • December 2022 (4)
  • November 2022 (3)
  • October 2022 (3)
  • September 2022 (3)
  • August 2022 (1)
  • March 2021 (1)
  • February 2021 (1)

. .

  • Github
  • Linkedin
  • Email
  • Reddit
  • Rss
  • Bluesky

©2025 - Vlad Drumea - All rights reserved.

All opinions and research expressed here belongs to me and does not reflect the opinions of my employer.


Back To Top
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Cookie settingsACCEPT
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT
VladDBA
  • Home
  • Scripts
    • All Scripts
    • PSBlitz
    • Get database file sizes
    • Get table and index sizes
    • Lightwieght SQL login password audit
    • Measure write speeds in SQL Server
  • Diagnose your SQL Server
  • SQL Server Security
    • Securing SQL Server’s service account
    • Securing SQL Server linked servers
    • Securing xp_cmdshell in SQL Server
    • Regain access to the sa login
    • Gain sysadmin role via trustworthy database
    • Cracking SQL Server login passwords online
    • Cracking SQL Server login passwords offline
  • My SSMS Configuration
  • SSMS Tips & Tricks