Created
July 4, 2018 08:46
-
-
Save DarkAllien/f12d6e0aa20bb553dee1fc96fca3eb27 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 [s].[Name0], | |
| [s].[Full_Domain_Name0], | |
| [sp].* | |
| FROM [dbo].[v_HS_sqlpatching] [sp] | |
| LEFT JOIN [dbo].[v_R_System] [s] ON [s].[ResourceID] = [sp].[resourceid] | |
| ORDER BY [s].[name0], | |
| [sp].[querytime0]; | |
| --or | |
| SELECT [s].[Name0], | |
| [s].[Full_Domain_Name0], | |
| [sp].* | |
| FROM [dbo].[v_gs_sqlpatching] [sp] | |
| LEFT JOIN [dbo].[v_R_System] [s] ON [s].[ResourceID] = [sp].[resourceid] | |
| ORDER BY [s].[name0], | |
| [sp].[querytime0]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment