This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
choco install DotNet4.5 | |
choco install git | |
choco install fiddler4 | |
#Enable Web Services | |
choco install IIS-WebServerRole -source WindowsFeatures | |
choco install IIS-ISAPIFilter -source WindowsFeatures | |
choco install IIS-ISAPIExtensions -source WindowsFeatures |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * | |
FROM ( | |
SELECT [ID], | |
ROW_NUMBER() OVER(ORDER BY ID DESC) AS Row | |
FROM [Stats].[dbo].[OriginCodes] | |
) codes | |
INNER JOIN | |
( | |
SELECT [Id], | |
ROW_NUMBER() OVER(ORDER BY ID DESC) AS Row |
NewerOlder