Skip to content

Commit e7755c1

Browse files
committed
Add new nice articles, 1701 error, update sample database list
1 parent 28314ce commit e7755c1

3 files changed

Lines changed: 12 additions & 8 deletions

File tree

Articles/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Articles types:
132132
| [What is the CXPACKET Wait Type, and How Do You Reduce It?] | Brent Ozar | 2013-08-27 | |
133133
| [New indexes, hypothetically] | Kenneth Fisher | 2016-11-02 | [BIDX] |
134134
| [Indexing Wide Keys in SQL Server] | Brent Ozar | 2013-05-08 | [BIDX] |
135-
| [The Anatomy and (In)Security of Microsoft SQL Server Transparent Data Encryption (TDE)] | Simon McAuliffe | 2016-03-31 | |
135+
| [The Anatomy and (In)Security of Microsoft SQL Server Transparent Data Encryption (TDE), or How to Break TDE] | Simon McAuliffe | 2016-03-31 | |
136136
| [Correctly adding data files to tempdb] | Paul Randal | 2014-10-14 | |
137137
| [Why You Should Test Your Queries Against Bigger Data] | Erik Darling | 2016-11-01 | |
138138
| [Tally OH! An Improved SQL 8K “CSV Splitter” Function] | Jeff Moden | 2012-12-28 | |
@@ -440,6 +440,8 @@ Articles types:
440440
| [Surprise Delta Stores] | Joe Obbish | 2017-11-07 | [DEV] |
441441
| [SQL 2014 Clustered Columnstore index rebuild and maintenance considerations] | Denzil Ribeiro | 2015-07-08 | [DBA],[DEV] |
442442
| [The Case of the Weirdly Long COLUMNSTORE_BUILD_THROTTLE Wait] | Kendra Little | 2017-11-09 | [DEV] |
443+
| [Multiple Output Datasets With R and SQL Server] | Kendra Little | 2017-11-06 | [DEV],[R] |
444+
| [How to Avoid Excessive Sorts in Window Functions] | JOOQ | 2017-11-06 | [DEV] |
443445

444446
[SQL Server Index Design Guide]:https://technet.microsoft.com/en-us/library/jj835095.aspx
445447
[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
@@ -551,7 +553,7 @@ Articles types:
551553
[What is the CXPACKET Wait Type, and How Do You Reduce It?]:https://www.brentozar.com/archive/2013/08/what-is-the-cxpacket-wait-type-and-how-do-you-reduce-it/
552554
[New indexes, hypothetically]:https://sqlstudies.com/2016/11/02/new-indexes-hypothetically/
553555
[Indexing Wide Keys in SQL Server]:https://www.brentozar.com/archive/2013/05/indexing-wide-keys-in-sql-server/
554-
[The Anatomy and (In)Security of Microsoft SQL Server Transparent Data Encryption (TDE)]:http://simonmcauliffe.com/technology/tde/
556+
[The Anatomy and (In)Security of Microsoft SQL Server Transparent Data Encryption (TDE), or How to Break TDE]:http://simonmcauliffe.com/technology/tde/
555557
[Correctly adding data files to tempdb]:http://www.sqlskills.com/blogs/paul/correctly-adding-data-files-tempdb/
556558
[Why You Should Test Your Queries Against Bigger Data]:https://www.brentozar.com/archive/2016/11/why-you-should-test-your-queries-against-bigger-data/
557559
[Tally OH! An Improved SQL 8K “CSV Splitter” Function]:http://www.sqlservercentral.com/articles/Tally+Table/72993/
@@ -860,3 +862,5 @@ Articles types:
860862
[Surprise Delta Stores]:https://orderbyselectnull.com/2017/11/07/delta-stores/
861863
[SQL 2014 Clustered Columnstore index rebuild and maintenance considerations]:https://blogs.msdn.microsoft.com/sqlcat/2015/07/08/sql-2014-clustered-columnstore-index-rebuild-and-maintenance-considerations/
862864
[The Case of the Weirdly Long COLUMNSTORE_BUILD_THROTTLE Wait]:https://sqlworkbooks.com/2017/11/the-case-of-the-weirdly-long-columnstore_build_throttle-wait/
865+
[Multiple Output Datasets With R and SQL Server]:https://itsalljustelectrons.blogspot.ru/2017/11/Multiple-Output-Datasets-with-R-and-SQL-Server.html
866+
[How to Avoid Excessive Sorts in Window Functions]:https://blog.jooq.org/2017/11/06/how-to-avoid-excessive-sorts-in-window-functions/

Errors/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Error code equal `message_id` from `sys.messages`
6262
| 824 | SQL Server detected a logical consistency-based I/O error | [Resolve Microsoft SQL Server Error Code 824], [KB2152734] |
6363
| 825 | The operating system returned error %ls to SQL Server. It failed creating event for a %S_MSG at offset %#016I64x in file '%ls'. | [825_link1] |
6464
| 913 | Could Not Find Database %d. Database May Not be Activated Yet or May be in Transition | [FIX: Error: 913, Severity: 16 – Could Not Find Database ID] |
65+
| 1701 | Creating or altering table %ls failed because the minimum row size would be 8061, including 10 bytes of internal overhead... | [1701_link1] |
6566
| 1807 | Could not obtain exclusive lock on database ‘model’. Retry the operation later. | [CREATE DATABASE – I’ve not seen that before.] |
6667
| 1904 | The statistics on table has 65 columns in the key list | [SQL SERVER - Fix: Error: Msg 1904] |
6768
| 3013 | RESTORE DATABASE is terminating abnormally | [KB290787] |
@@ -103,6 +104,7 @@ Error code equal `message_id` from `sys.messages`
103104
[825_link1]:https://www.sqlskills.com/blogs/paul/a-little-known-sign-of-impending-doom-error-825/
104105
[FIX: Error: 913, Severity: 16 – Could Not Find Database ID]:https://blog.sqlauthority.com/2017/04/10/sql-server-fix-error-913-severity-16-not-find-database-id-3-database-may-not-activated-yet-may-transition-sql-service/
105106
[KB2152734]:https://support.microsoft.com/en-us/kb/2152734
107+
[1702_link1]:http://www.sqlservercentral.com/questions/163450/
106108
[CREATE DATABASE – I’ve not seen that before.]:http://www.sqlservercentral.com/blogs/martin_catherall/2017/01/22/create-database-ive-not-seen-that-before/
107109
[SQL SERVER - Fix: Error: Msg 1904]:http://blog.sqlauthority.com/2016/10/27/sql-server-fix-error-msg-1904-statistics-table-65-columns-key-list/
108110
[KB290787]:https://support.microsoft.com/en-us/kb/290787

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -366,20 +366,17 @@ BIML Bloggers
366366
## SQL Server Sample Databases and Datasets
367367
Alternative download link for some sample databases: http://bit.ly/ya-ssk
368368

369-
- [AdventureWorks Sample Databases and Scripts for SQL Server 2016 CTP3](https://www.microsoft.com/en-us/download/details.aspx?id=49502)
370-
- [Microsoft SQL Server Community Projects & Samples](http://sqlserversamples.codeplex.com/)
371-
- [Adventure Works 2014 Sample Databases](https://github.com/Microsoft/sql-server-samples/releases/tag/adventureworks2014)
372-
- [Adventure Works 2012 Sample Databases](http://msftdbprodsamples.codeplex.com/releases/view/55330)
369+
- [AdventureWorks Sample Databases and Scripts for SQL Server 2017, 2016, 2014 , 2012](https://github.com/Microsoft/sql-server-samples/releases/tag/adventureworks)
373370
- [Microsoft SQL Server 2008 R2 SR1 Sample Databases](https://sqlserversamples.codeplex.com/releases/view/72278)
374371
- [Thinking Big (Adventure)](http://sqlblog.com/blogs/adam_machanic/archive/2011/10/17/thinking-big-adventure.aspx) (by Adam Machanic)
375-
- [WideWorldImporters Sample Database](https://github.com/Microsoft/sql-server-samples/tree/master/samples/databases/wide-world-importers) (Github Microsoft)
376-
- [WideWorldImporters Sample Database Download Files](https://github.com/Microsoft/sql-server-samples/releases/tag/wide-world-importers-v1.0) (Github Microsoft)
372+
- [WideWorldImporters Sample Database](https://github.com/Microsoft/sql-server-samples/releases/tag/wide-world-importers-v1.0) (Github Microsoft)
377373
- [IoT Smart Grid sample - demonstrates how SQL Server 2016 memory optimized databases could be used to ingest a very high input data rate](https://github.com/Microsoft/sql-server-samples/releases/tag/iot-smart-grid-v1.0) (Github Microsoft)
378374
- [In-Memory OLTP (WWI Sales Orders)](https://github.com/Microsoft/sql-server-samples/releases/tag/wwi-sales-orders-v0.5) (Github Microsoft)
379375
- [Bigger Fact Table for Wide World Importers](http://www.sqlservercentral.com/blogs/koen-verbeeck/2016/08/12/bigger-fact-table-for-wide-world-importers/) (by Koen Verbeeck)
380376
- [Contoso Retail Data Warehose](https://github.com/Microsoft/sql-server-samples/tree/master/samples/databases/contoso-data-warehouse) (Github)
381377
- [How to Download the Stack Overflow Database via BitTorrent 2016-03](https://www.brentozar.com/archive/2015/10/how-to-download-the-stack-overflow-database-via-bittorrent/) (by Brent Ozar)
382378
- [Updating the Stack Overflow Demo Database version 2016-12-15](https://www.brentozar.com/archive/2017/01/updating-stack-overflow-demo-database/)
379+
- [Stackexchange Source files - xml files](https://archive.org/download/stackexchange)
383380
- [Amazon product data](http://jmcauley.ucsd.edu/data/amazon/) (This dataset contains product reviews and metadata from Amazon, including 142.8 million reviews spanning May 1996 - July 2014)
384381
- [Git repo for SQL Server Reporting Services samples and community projects](https://github.com/Microsoft/Reporting-Services)
385382
- [SQLSkills sample databases](https://www.sqlskills.com/sql-server-resources/sql-server-demos/) (also include SAMPLE CORRUPT DATABASES)
@@ -388,6 +385,7 @@ Alternative download link for some sample databases: http://bit.ly/ya-ssk
388385
- [Itzik Ben-Gan Sample Databases](http://tsql.solidq.com/books/source_code/) (by Itzik Ben-Gan)
389386
- [Orders: Open Source Sample Database](https://www.brentozar.com/orders-open-source-sample-database/) (by Brent Ozar)
390387
- [BabbyNames Database](https://github.com/LitKnd/BabbyNames) (by Kendra Little)
388+
- [SQL Server Sakila DB](https://www.jooq.org/sakila) (by jOQO)
391389

392390
[*Back to top*](#header03)
393391

0 commit comments

Comments
 (0)