Closed goranschwarz closed 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'
EXEC sp_BlitzIndex @ObjectName = 'schema.tablename'
EXEC sp_BlitzIndex 'schema.tablename'
Thanks for the pull request! Merged into the dev branch, will be in the next release with credit to you in the release notes.
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'