Category: Beginner

Custom Keyboard Shortcuts in SSMS

Content rating: Beginner, Tip  I KNOW I blogged about custom SSMS shortcuts before, but dang if I can find it. I use certain commands SEVERAL times a day, and I’m in love with shortcuts. So the SMS keyboard shortcuts dialog is just perfect for me.  You already have three default shortcuts when you install SSMS: […]

Index Rebuilds: SQL vs. PowerShell

I thought this conversation worth reporting…Sean and I were comparing our scripts to create rebuild / reorgs, and he sent this: DECLARE @currSchema VARCHAR(100) ,   @currTableName VARCHAR(100) ,   @SQL NVARCHAR(200) DECLARE Tables CURSOR read_only FOR SELECT SS.name ,    SO.name    FROM sys.objects SO    INNER JOIN sys.schemas SS ON SO.schema_id = SS.schema_id […]