Skip to content

Commit bf00cf7

Browse files
authored
Merge pull request #207 from mattcargile/helpme_query_CS_orderby
sp_helpme Case Sensitivity [name] to [Name] in all_objects ORDER BY
2 parents 02ecb97 + a2222d4 commit bf00cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sp_helpme.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ BEGIN
146146
and [ep].[name] = @ExtendedPropertyName
147147
AND [ep].[minor_id] = 0
148148
AND [ep].[class] = 1
149-
ORDER BY [Owner] ASC, [Object_type] DESC, [name] ASC;';
149+
ORDER BY [Owner] ASC, [Object_type] DESC, [Name] ASC;';
150150
SET @ParmDefinition = N'@ExtendedPropertyName SYSNAME';
151151

152152
EXEC sp_executesql @SQLString

0 commit comments

Comments
 (0)