BrentOzarULTD / SQL-Server-First-Responder-Kit

sp_Blitz, sp_BlitzCache, sp_BlitzFirst, sp_BlitzIndex, and other SQL Server scripts for health checks and performance tuning.
http://FirstResponderKit.org
Other
3.38k stars 1k forks source link

When your lazy and do not want to fill in all parameters... for: @DatabaseName, @SchemaName, @TableName #3587

Closed goranschwarz closed 1 month ago

goranschwarz commented 1 month ago

When your lazy and do not want to fill in all parameters: @DatabaseName, @SchemaName and @TableName

Now you can simply do: EXEC sp_BlitzIndex @ObjectName = 'schema.tablename' Or if you're really lazy do: EXEC sp_BlitzIndex 'schema.tablename'

BrentOzar commented 1 month ago

Thanks for the pull request! Merged into the dev branch, will be in the next release with credit to you in the release notes.