├── .build ├── _init.ps1 ├── build.ps1 └── paket.dependencies ├── .gitattributes ├── .gitignore ├── .paket └── paket.bootstrapper.exe ├── Current ├── Ad hoc distributed queries.sql ├── Agent Service.sql ├── Auto close.sql ├── Auto create statistics.sql ├── Auto shrink.sql ├── Auto update statistics.sql ├── Buffer cache hit ratio.sql ├── Column collation does not match database default.sql ├── Column data types numeric vs int.sql ├── Column name problems.sql ├── Columns of data type Text or nText.sql ├── Columns with float data type.sql ├── Columns with image data type.sql ├── Compatibility level.sql ├── Database and log on the same disk.sql ├── Database collation.sql ├── Database mail.sql ├── Decimal Size Problem.sql ├── Forwarded records.sql ├── Fragmented indexes.sql ├── Instant file initialization.sql ├── Invalid Objects.sql ├── Login language.sql ├── Max degree of parallelism.sql ├── Missing foreign key indexes.sql ├── Missing foreign keys.sql ├── Old backups.sql ├── Ole automation procedures.sql ├── Orphaned Users.sql ├── Page life expectancy.sql ├── Performance counters permission check.sql ├── Procedures Named SP_.sql ├── Procedures With SET ROWCOUNT.sql ├── Procedures that call undocumented procedures.sql ├── Procedures using dynamic SQL without sp_executesql.sql ├── Procedures with @@Identity.sql ├── Procedures without set nocount on.sql ├── Service Account.sql ├── Table name problems.sql ├── Tables that start with tbl.sql ├── Tables without a primary key.sql ├── Tables without any data.sql ├── UniqueIdentifier with NewId.sql ├── Unnamed constraints.sql ├── User aliases.sql ├── Varchar size problem.sql ├── Wide tables.sql └── xp_cmdshell is enabled.sql ├── Original ├── Ad hoc distributed queries.sql ├── Agent Service.sql ├── Auto close.sql ├── Auto create statistics.sql ├── Auto shrink.sql ├── Auto update statistics.sql ├── Buffer cache hit ratio.sql ├── Column collation does not match database default.sql ├── Column data types numeric vs int.sql ├── Column name problems.sql ├── Columns of data type Text or nText.sql ├── Columns with float data type.sql ├── Columns with image data type.sql ├── Compatibility level.sql ├── Database and log on the same disk.sql ├── Database collation.sql ├── Database mail.sql ├── Decimal Size Problem.sql ├── Forwarded records.sql ├── Fragmented indexes.sql ├── Instant file initialization.sql ├── Login language.sql ├── Max degree of parallelism.sql ├── Missing foreign key indexes.sql ├── Missing foreign keys.sql ├── Old backups.sql ├── Ole automation procedures.sql ├── Orphaned Users.sql ├── Page life expectancy.sql ├── Procedures Named SP_.sql ├── Procedures With SET ROWCOUNT.sql ├── Procedures that call undocumented procedures.sql ├── Procedures using dynamic SQL without sp_executesql.sql ├── Procedures with @@Identity.sql ├── Procedures without set nocount on.sql ├── SMO and DMO.sql ├── Service Account.sql ├── Table name problems.sql ├── Tables that start with tbl.sql ├── Tables without a primary key.sql ├── Tables without any data.sql ├── UniqueIdentifier with NewId.sql ├── Unnamed constraints.sql ├── User aliases.sql ├── Varchar size problem.sql ├── Views with order by.sql ├── Wide tables.sql └── xp_cmdshell is enabled.sql ├── README.md ├── RELEASENOTES.md ├── license.txt └── nuspec └── SQLCop.nuspec /.build/_init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/.build/_init.ps1 -------------------------------------------------------------------------------- /.build/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/.build/build.ps1 -------------------------------------------------------------------------------- /.build/paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/.build/paket.dependencies -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /Current/Ad hoc distributed queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Ad hoc distributed queries.sql -------------------------------------------------------------------------------- /Current/Agent Service.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Agent Service.sql -------------------------------------------------------------------------------- /Current/Auto close.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Auto close.sql -------------------------------------------------------------------------------- /Current/Auto create statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Auto create statistics.sql -------------------------------------------------------------------------------- /Current/Auto shrink.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Auto shrink.sql -------------------------------------------------------------------------------- /Current/Auto update statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Auto update statistics.sql -------------------------------------------------------------------------------- /Current/Buffer cache hit ratio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Buffer cache hit ratio.sql -------------------------------------------------------------------------------- /Current/Column collation does not match database default.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Column collation does not match database default.sql -------------------------------------------------------------------------------- /Current/Column data types numeric vs int.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Column data types numeric vs int.sql -------------------------------------------------------------------------------- /Current/Column name problems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Column name problems.sql -------------------------------------------------------------------------------- /Current/Columns of data type Text or nText.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Columns of data type Text or nText.sql -------------------------------------------------------------------------------- /Current/Columns with float data type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Columns with float data type.sql -------------------------------------------------------------------------------- /Current/Columns with image data type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Columns with image data type.sql -------------------------------------------------------------------------------- /Current/Compatibility level.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Compatibility level.sql -------------------------------------------------------------------------------- /Current/Database and log on the same disk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Database and log on the same disk.sql -------------------------------------------------------------------------------- /Current/Database collation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Database collation.sql -------------------------------------------------------------------------------- /Current/Database mail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Database mail.sql -------------------------------------------------------------------------------- /Current/Decimal Size Problem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Decimal Size Problem.sql -------------------------------------------------------------------------------- /Current/Forwarded records.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Forwarded records.sql -------------------------------------------------------------------------------- /Current/Fragmented indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Fragmented indexes.sql -------------------------------------------------------------------------------- /Current/Instant file initialization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Instant file initialization.sql -------------------------------------------------------------------------------- /Current/Invalid Objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Invalid Objects.sql -------------------------------------------------------------------------------- /Current/Login language.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Login language.sql -------------------------------------------------------------------------------- /Current/Max degree of parallelism.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Max degree of parallelism.sql -------------------------------------------------------------------------------- /Current/Missing foreign key indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Missing foreign key indexes.sql -------------------------------------------------------------------------------- /Current/Missing foreign keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Missing foreign keys.sql -------------------------------------------------------------------------------- /Current/Old backups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Old backups.sql -------------------------------------------------------------------------------- /Current/Ole automation procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Ole automation procedures.sql -------------------------------------------------------------------------------- /Current/Orphaned Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Orphaned Users.sql -------------------------------------------------------------------------------- /Current/Page life expectancy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Page life expectancy.sql -------------------------------------------------------------------------------- /Current/Performance counters permission check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Performance counters permission check.sql -------------------------------------------------------------------------------- /Current/Procedures Named SP_.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Procedures Named SP_.sql -------------------------------------------------------------------------------- /Current/Procedures With SET ROWCOUNT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Procedures With SET ROWCOUNT.sql -------------------------------------------------------------------------------- /Current/Procedures that call undocumented procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Procedures that call undocumented procedures.sql -------------------------------------------------------------------------------- /Current/Procedures using dynamic SQL without sp_executesql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Procedures using dynamic SQL without sp_executesql.sql -------------------------------------------------------------------------------- /Current/Procedures with @@Identity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Procedures with @@Identity.sql -------------------------------------------------------------------------------- /Current/Procedures without set nocount on.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Procedures without set nocount on.sql -------------------------------------------------------------------------------- /Current/Service Account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Service Account.sql -------------------------------------------------------------------------------- /Current/Table name problems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Table name problems.sql -------------------------------------------------------------------------------- /Current/Tables that start with tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Tables that start with tbl.sql -------------------------------------------------------------------------------- /Current/Tables without a primary key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Tables without a primary key.sql -------------------------------------------------------------------------------- /Current/Tables without any data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Tables without any data.sql -------------------------------------------------------------------------------- /Current/UniqueIdentifier with NewId.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/UniqueIdentifier with NewId.sql -------------------------------------------------------------------------------- /Current/Unnamed constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Unnamed constraints.sql -------------------------------------------------------------------------------- /Current/User aliases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/User aliases.sql -------------------------------------------------------------------------------- /Current/Varchar size problem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Varchar size problem.sql -------------------------------------------------------------------------------- /Current/Wide tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/Wide tables.sql -------------------------------------------------------------------------------- /Current/xp_cmdshell is enabled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Current/xp_cmdshell is enabled.sql -------------------------------------------------------------------------------- /Original/Ad hoc distributed queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Ad hoc distributed queries.sql -------------------------------------------------------------------------------- /Original/Agent Service.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Agent Service.sql -------------------------------------------------------------------------------- /Original/Auto close.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Auto close.sql -------------------------------------------------------------------------------- /Original/Auto create statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Auto create statistics.sql -------------------------------------------------------------------------------- /Original/Auto shrink.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Auto shrink.sql -------------------------------------------------------------------------------- /Original/Auto update statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Auto update statistics.sql -------------------------------------------------------------------------------- /Original/Buffer cache hit ratio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Buffer cache hit ratio.sql -------------------------------------------------------------------------------- /Original/Column collation does not match database default.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Column collation does not match database default.sql -------------------------------------------------------------------------------- /Original/Column data types numeric vs int.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Column data types numeric vs int.sql -------------------------------------------------------------------------------- /Original/Column name problems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Column name problems.sql -------------------------------------------------------------------------------- /Original/Columns of data type Text or nText.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Columns of data type Text or nText.sql -------------------------------------------------------------------------------- /Original/Columns with float data type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Columns with float data type.sql -------------------------------------------------------------------------------- /Original/Columns with image data type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Columns with image data type.sql -------------------------------------------------------------------------------- /Original/Compatibility level.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Compatibility level.sql -------------------------------------------------------------------------------- /Original/Database and log on the same disk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Database and log on the same disk.sql -------------------------------------------------------------------------------- /Original/Database collation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Database collation.sql -------------------------------------------------------------------------------- /Original/Database mail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Database mail.sql -------------------------------------------------------------------------------- /Original/Decimal Size Problem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Decimal Size Problem.sql -------------------------------------------------------------------------------- /Original/Forwarded records.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Forwarded records.sql -------------------------------------------------------------------------------- /Original/Fragmented indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Fragmented indexes.sql -------------------------------------------------------------------------------- /Original/Instant file initialization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Instant file initialization.sql -------------------------------------------------------------------------------- /Original/Login language.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Login language.sql -------------------------------------------------------------------------------- /Original/Max degree of parallelism.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Max degree of parallelism.sql -------------------------------------------------------------------------------- /Original/Missing foreign key indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Missing foreign key indexes.sql -------------------------------------------------------------------------------- /Original/Missing foreign keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Missing foreign keys.sql -------------------------------------------------------------------------------- /Original/Old backups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Old backups.sql -------------------------------------------------------------------------------- /Original/Ole automation procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Ole automation procedures.sql -------------------------------------------------------------------------------- /Original/Orphaned Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Orphaned Users.sql -------------------------------------------------------------------------------- /Original/Page life expectancy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Page life expectancy.sql -------------------------------------------------------------------------------- /Original/Procedures Named SP_.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Procedures Named SP_.sql -------------------------------------------------------------------------------- /Original/Procedures With SET ROWCOUNT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Procedures With SET ROWCOUNT.sql -------------------------------------------------------------------------------- /Original/Procedures that call undocumented procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Procedures that call undocumented procedures.sql -------------------------------------------------------------------------------- /Original/Procedures using dynamic SQL without sp_executesql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Procedures using dynamic SQL without sp_executesql.sql -------------------------------------------------------------------------------- /Original/Procedures with @@Identity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Procedures with @@Identity.sql -------------------------------------------------------------------------------- /Original/Procedures without set nocount on.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Procedures without set nocount on.sql -------------------------------------------------------------------------------- /Original/SMO and DMO.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/SMO and DMO.sql -------------------------------------------------------------------------------- /Original/Service Account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Service Account.sql -------------------------------------------------------------------------------- /Original/Table name problems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Table name problems.sql -------------------------------------------------------------------------------- /Original/Tables that start with tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Tables that start with tbl.sql -------------------------------------------------------------------------------- /Original/Tables without a primary key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Tables without a primary key.sql -------------------------------------------------------------------------------- /Original/Tables without any data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Tables without any data.sql -------------------------------------------------------------------------------- /Original/UniqueIdentifier with NewId.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/UniqueIdentifier with NewId.sql -------------------------------------------------------------------------------- /Original/Unnamed constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Unnamed constraints.sql -------------------------------------------------------------------------------- /Original/User aliases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/User aliases.sql -------------------------------------------------------------------------------- /Original/Varchar size problem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Varchar size problem.sql -------------------------------------------------------------------------------- /Original/Views with order by.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Views with order by.sql -------------------------------------------------------------------------------- /Original/Wide tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/Wide tables.sql -------------------------------------------------------------------------------- /Original/xp_cmdshell is enabled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/Original/xp_cmdshell is enabled.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/license.txt -------------------------------------------------------------------------------- /nuspec/SQLCop.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gate/SQLCop/HEAD/nuspec/SQLCop.nuspec --------------------------------------------------------------------------------