Skip to content

Commit eea1552

Browse files
authored
Merge pull request #157 from LowlyDBA/development
Fix EPs and typos
2 parents 3514f84 + 893d135 commit eea1552

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<img src="assets/dba-multitool-logo-small.png" align="left">
1111

1212
</br>The DBA MultiTool is a suite of scripts for the long haul:
13-
optimizing storage, on-the-fly documentation,general administrative needs,
13+
optimizing storage, on-the-fly documentation, general administrative needs,
1414
and more. Each script relies solely on T-SQL to ensure it is secure,
1515
requires no third-party software, and can be installed in seconds.
1616

docs/sp_estindex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ how an index would look without having to actually create it!
3535
| @IndexColumns | NVARCHAR(2048) | no | Comma separated list of key columns. |
3636
| @IncludeColumns | NVARCHAR(2048) | no | Optional comma separated list of include columns. |
3737
| @IsUnique | BIT | no | Whether or not the index is UNIQUE. Default is 0. |
38-
| @Filter | NVARCHAR(2048) | no | Optional filter for the index. Default is 100. |
39-
| @FillFactor | TINYINT | no | Optional fill factor for the index. |
38+
| @Filter | NVARCHAR(2048) | no | Optional filter for the index. |
39+
| @FillFactor | TINYINT | no | Optional fill factor for the index. Default is 100. |
4040
| @Verbose | BIT | no | Show intermediate variables used in size calculations. Default is 0. |
4141
| @SqlMajorVersion | TINYINT | no | For unit testing only. |
4242

sp_estindex.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -846,10 +846,10 @@ GO
846846
EXEC sys.sp_addextendedproperty @name=N'@DatabaseName', @value=N'Target database of the index''s table.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
847847
GO
848848

849-
EXEC sys.sp_addextendedproperty @name=N'@FillFactor', @value=N'Optional fill factor for the index.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
849+
EXEC sys.sp_addextendedproperty @name=N'@FillFactor', @value=N'Optional fill factor for the index. Default is 100.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
850850
GO
851851

852-
EXEC sys.sp_addextendedproperty @name=N'@Filter', @value=N'Optional filter for the index. Default is 100.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
852+
EXEC sys.sp_addextendedproperty @name=N'@Filter', @value=N'Optional filter for the index.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
853853
GO
854854

855855
EXEC sys.sp_addextendedproperty @name=N'@IncludeColumns', @value=N'Optional comma separated list of include columns.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
@@ -874,4 +874,4 @@ EXEC sys.sp_addextendedproperty @name=N'Description', @value=N'Estimate a new in
874874
GO
875875

876876
EXEC sys.sp_addextendedproperty @name=N'@Verbose', @value=N'Show intermediate variables used in size calculations. Default is 0.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'sp_estindex';
877-
GO
877+
GO

0 commit comments

Comments
 (0)