Skip to content

Commit de0ad94

Browse files
committed
Add new awesome articles and fix some formating
1 parent 2d0d62b commit de0ad94

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

Articles/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ Articles types:
434434
| [How Do I Analyze a SQL Server Execution Plan?] | Kendra Little | 2017-09-22 | [DEV] |
435435
| [A Subtle Difference Between COALESCE and ISNULL] | Shaneis | 2017-10-09 | [DEV] |
436436
| [Puzzle Challenge: Graph Matching with T-SQL Part 1-Concepts] | Itzik Ben-Gan | 2017-08-08 | [DEV] |
437+
| [Graph Matching with T-SQL Part 3: Maximum Matching] | Itzik Ben-Gan | 2017-10-12 | [DEV] |
437438
| [Running PowerShell in a SQL Agent Job] | Derik Hammer | 2017-03-04 | [PS] |
438439
| [Line-Continuation in T-SQL] | Solomon Rutzky | 2017-10-27 | [DEV] |
439440
| [SQL Server 2017: Making Backups Great Again!] | John Sterrett | 2017-10-31 | [DBA],[DEV] |
@@ -463,6 +464,15 @@ Articles types:
463464
| [Hey! What's the deal with SQL Server NOCOUNT and T-SQL WHILE loops?] | @sqL_handLe | 2017-17-30 | [DEV] |
464465
| [Query Store Settings] | Erin Stellato | 2010-11-28 | [DBA],[DEV] |
465466
| [Using Plan Explorer with Entity Framework] | Jason Hall | 2010-11-28 | [DEV] |
467+
| [Overview of Encryption Tools in SQL Server] | Matthew McGiffen | 2017-12-05 | [DBA],[DEV] |
468+
| [Clustered Index Uniquifier Existence and Size] | Solomon Rutzky | 2017-09-18 | [DBA],[DEV] |
469+
| [Understanding Logging and Recovery in SQL Server] | Paul Randal | 2009-02-01 | [DBA],[B] |
470+
| [Understanding SQL Server Backups] | Paul Randal | 2009-07-01 | [DBA],[B] |
471+
| [Recovering from Disasters Using Backups] | Paul Randal | 2009-11-01 | [DBA],[B] |
472+
| [Simple SQL: Handling Location Datatypes] | Joe Celko | 2017-10-19 | [DEV] |
473+
| [Improve SQL Server Performance by Looking at Plan Cache (Part 1)] | Thomas LaRock | 2014-10-30 [DBA],[DEV] |
474+
| [Improve SQL Server Performance by Looking at Plan Cache (Part 2)] | Thomas LaRock | 2014-10-30 [DBA],[DEV] |
475+
| [Improve SQL Server Performance by Looking at Plan Cache (Part 3)] | Thomas LaRock | 2014-10-30 [DBA],[DEV] |
466476

467477
[SQL Server Index Design Guide]:https://technet.microsoft.com/en-us/library/jj835095.aspx
468478
[SQL Server 2012 Security Best Practices - Microsoft]:http://download.microsoft.com/download/8/f/a/8fabacd7-803e-40fc-adf8-355e7d218f4c/sql_server_2012_security_best_practice_whitepaper_apr2012.docx
@@ -876,6 +886,7 @@ Articles types:
876886
[How Do I Analyze a SQL Server Execution Plan?]:https://littlekendra.com/2017/09/22/how-do-i-analyze-a-sql-server-execution-plan/
877887
[A Subtle Difference Between COALESCE and ISNULL]:https://nocolumnname.wordpress.com/2017/10/09/a-subtle-difference-between-coalesce-and-isnull/
878888
[Puzzle Challenge: Graph Matching with T-SQL Part 1-Concepts]:http://sqlmag.com/software-development/puzzle-challenge-graph-matching-t-sql-part-1-concepts
889+
[Graph Matching with T-SQL Part 3: Maximum Matching]:http://www.itprotoday.com/microsoft-sql-server/graph-matching-t-sql-part-3-maximum-matching
879890
[Running PowerShell in a SQL Agent Job]:https://www.sqlhammer.com/running-powershell-in-a-sql-agent-job/
880891
[Line-Continuation in T-SQL]:https://sqlquantumleap.com/2017/10/27/line-continuation-in-t-sql/
881892
[SQL Server 2017: Making Backups Great Again!]:https://johnsterrett.com/2017/10/31/sql-server-2017-backups/
@@ -905,3 +916,12 @@ Articles types:
905916
[Hey! What's the deal with SQL Server NOCOUNT and T-SQL WHILE loops?]:http://sql-sasquatch.blogspot.ru/2017/11/hey-whats-deal-with-nocount-and-t-sql.html
906917
[Query Store Settings]:https://www.sqlskills.com/blogs/erin/query-store-settings/
907918
[Using Plan Explorer with Entity Framework]:https://blogs.sentryone.com/jasonhall/using-plan-explorer-entity-framework/
919+
[Overview of Encryption Tools in SQL Server]:https://matthewmcgiffen.com/2017/12/05/overview-of-encryption-tools-in-sql-server/
920+
[Clustered Index Uniquifier Existence and Size]:https://sqlquantumleap.com/2017/09/18/clustered-index-uniquifier-existence-and-size/
921+
[Understanding Logging and Recovery in SQL Server]:https://technet.microsoft.com/en-us/library/2009.02.logging.aspx
922+
[Understanding SQL Server Backups]:https://technet.microsoft.com/en-us/library/2009.07.sqlbackup.aspx
923+
[Recovering from Disasters Using Backups]:https://technet.microsoft.com/en-us/library/ee677581.aspx
924+
[Simple SQL: Handling Location Datatypes]:https://www.red-gate.com/simple-talk/sql/t-sql-programming/simple-sql-handling-location-datatypes/
925+
[Improve SQL Server Performance by Looking at Plan Cache (Part 1)]:https://logicalread.com/sql-server-minimize-single-use-plans-tl01/
926+
[Improve SQL Server Performance by Looking at Plan Cache (Part 2)]:https://logicalread.com/sql-server-identifying-plans-that-need-tuning-tl01/
927+
[Improve SQL Server Performance by Looking at Plan Cache (Part 3)]:https://logicalread.com/sql-server-identify-similar-plans-tl01/

PowerShell/Compare-Server-Settings.ps1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
Production server name
99
1010
.PARAMETER $productionName
11-
Production server name
11+
Production server name
1212
13-
.NOTE
13+
.NOTE
1414
Original link: https://therestisjustcode.wordpress.com/2017/09/12/t-sql-tuesday-94-automating-configuration-comparison/
1515
Author: Andy Levy
1616
Modified: Konstantin Taranov 2017-09-20
@@ -19,6 +19,7 @@ Modified: Konstantin Taranov 2017-09-20
1919
$productionName = 'localhost';
2020
$developmentName = 'localhost';
2121

22-
$ProductionConfiguration = Get-DbaSpConfigure -ServerInstance $productionName; # -SqlCredential (Get-Credential -Message "Production Credentials" -UserName MySQLLogin);
22+
$ProductionConfiguration = Get-DbaSpConfigure -ServerInstance $productionName;
23+
# -SqlCredential (Get-Credential -Message "Production Credentials" -UserName MySQLLogin);
2324
$DevelopmentConfiguration = Get-DbaSpConfigure -ServerInstance $developmentName;
2425
Compare-Object -ReferenceObject $DevelopmentConfiguration -DifferenceObject $ProductionConfiguration -property ConfigName, RunningValue | Sort-Object ConfigName;

0 commit comments

Comments
 (0)