Skip to content

Commit 6a92fc2

Browse files
committed
adding links to the readmes
1 parent a7e6a1b commit 6a92fc2

File tree

10 files changed

+55
-39
lines changed

10 files changed

+55
-39
lines changed

samples/databases/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Contains samples databases for Microsoft's SQL databases include SQL Server, Azure SQL Database, and Azure SQL Data Warehouse.
44

5-
Samples are coming soon!
5+
__[world-wide-importers](world-wide-importers/)__
66

7+
The new sample database for SQL Server 2016 and Azure SQL Database. It illustrates best practices in database design, as well as the core capabilities of SQL Server 2016 and Azure SQL Database, for transaction processing (OLTP), data warehousing and analytics (OLAP) workloads, as well as hybrid transaction and analytics processing (HTAP) workloads.
78

9+
__[contoso-data-warehouse](contoso-data-warehouse/)__
10+
11+
Sample data warehouse that illustrates loading data into Azure SQL Data Warehouse.

samples/databases/wide-world-importers/README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ To run this sample, you need the following prerequisites.
3636
**Software prerequisites:**
3737

3838
<!-- Examples -->
39-
1. SQL Server 2016 (or higher) or an Azure SQL Database.
39+
1. SQL Server 2016 (or higher) or an Azure SQL Database.
4040
2. SQL Server Management Studio, preferably 2016 April Preview or later (version >= 13.0.14000.36).
4141
3. (to build sample apps) Visual Studio 2015.
42+
4. (to run ETL jobs) SQL Server 2016 Integration Services
4243

4344
<a name=run-this-sample></a>
4445

@@ -48,6 +49,14 @@ The latest release of this sample is available here: TBD
4849

4950
The source code for the sample is structured as follows:
5051

52+
__[sample-scripts] (sample-scripts/)__
53+
54+
Sample scripts that illustrate the use of various SQL Server features with the WideWorldImporters sample database.
55+
56+
__[workload-drivers] (workload-drivers/)__
57+
58+
Simple apps that simulate workloads for the WideWorldImporters sample database.
59+
5160
__[wwi-database-scripts] (wwi-database-scripts/)__
5261

5362
T-SQL scripts to create the main WideWorldImporters database.
@@ -61,7 +70,6 @@ __[wwi-integration-etl] (wwi-integration-etl/)__
6170
SQL Server Integration Services (SSIS) project for the Extract, Transform, and Load (ETL) process that takes data from the transactional database WideWorldImporters and loads it into the WideWorldImportersDW database.
6271

6372

64-
6573
<a name=disclaimers></a>
6674

6775
## Disclaimers
@@ -71,5 +79,8 @@ The code included in this sample is not intended to be used for production purpo
7179

7280
## Related Links
7381
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
74-
TBD
7582
For more information, see these articles:
83+
- [SQL Server 2016 product page](https://www.microsoft.com/server-cloud/products/sql-server-2016/)
84+
- [SQL Server 2016 download page](https://www.microsoft.com/evalcenter/evaluate-sql-server-2016)
85+
- [Azure SQL Database product page](https://azure.microsoft.com/services/sql-database/)
86+
- [What's new in SQL Server 2016](https://msdn.microsoft.com/en-us/library/bb500435.aspx)

samples/databases/wide-world-importers/sample-scripts/always-encrypted/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sample for use of Always Encrypted in WideWorldImportersDW
22

3-
This script demonstrates the use of Always Encrypted to encrypt sensitive data in the database.
3+
This script demonstrates the use of Always Encrypted to encrypt sensitive data in the database.
44

55

66
### Contents
@@ -34,7 +34,7 @@ To run this sample, you need the following prerequisites.
3434
**Software prerequisites:**
3535

3636
<!-- Examples -->
37-
1. SQL Server 2016 (or higher) or Azure SQL Database.
37+
1. SQL Server 2016 (or higher) or Azure SQL Database.
3838
2. SQL Server Management Studio
3939
3. Visual Studio 2015
4040
4. The WideWorldImporters database.
@@ -64,5 +64,6 @@ The code included in this sample is not intended to be used for production purpo
6464

6565
## Related Links
6666
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
67-
TBD
68-
67+
For more information, see these articles:
68+
- [Always Encrypted documentation](https://msdn.microsoft.com/library/mt163865.aspx)
69+
- [Keep Sensitive Data Secure with Always Encrypted](https://channel9.msdn.com/Events/DataDriven/SQLServer2016/AlwaysEncrypted)

samples/databases/wide-world-importers/sample-scripts/in-memory-oltp/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To run this sample, you need the following prerequisites.
3535
**Software prerequisites:**
3636

3737
<!-- Examples -->
38-
1. SQL Server 2016 (or higher) or Azure SQL Database.
38+
1. SQL Server 2016 (or higher) or Azure SQL Database.
3939
2. The WideWorldImporters database.
4040

4141
<a name=run-this-sample></a>
@@ -55,7 +55,7 @@ It then compares the performance of single-threaded insert of 500,000 row:
5555
- into a memory-optimized table
5656
- into a memory-optimized table, with rows generated in a natively compiled stored procedure
5757

58-
The script outputs the time taken for each
58+
The script outputs the time taken for each
5959

6060
<a name=disclaimers></a>
6161

@@ -66,5 +66,8 @@ The code included in this sample is not intended to be used for production purpo
6666

6767
## Related Links
6868
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
69-
TBD
70-
69+
For more information, see these articles:
70+
- [In-Memory OLTP documentation](https://msdn.microsoft.com/library/dn133186.aspx)
71+
- [In-Memory OLTP quick start](https://msdn.microsoft.com/library/mt694156.aspx)
72+
- [In-Memory OLTP in SQL Server 2016 (video)](https://channel9.msdn.com/Events/DataDriven/SQLServer2016/InMemoryOLTP)
73+
- [Get started with In-Memory in SQL Database](https://azure.microsoft.com/documentation/articles/sql-database-in-memory/)

samples/databases/wide-world-importers/sample-scripts/operational-analytics/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ To run this sample, you need the following prerequisites.
3535
**Software prerequisites:**
3636

3737
<!-- Examples -->
38-
1. SQL Server 2016 (or higher) or Azure SQL Database.
38+
1. SQL Server 2016 (or higher) or Azure SQL Database.
3939
2. SQL Server Management Studio
4040
3. The WideWorldImporters database (Full version).
4141

4242
<a name=run-this-sample></a>
4343

4444
## Running the sample
4545

46-
1. Run the [Order Insert](../../workload-drivers/vehicle-location-insert/) workload for a while. When starting from the vanilla WideWorldImporters database the recommendation is to run at least 20 minutes, to ensure that enough data is generated and that compression kicks in (the sample has a COMPRESSION_DELAY of 10 minutes for the columnstore indexes).
46+
1. Run the [Order Insert](../../workload-drivers/vehicle-location-insert/) workload for a while. When starting from the vanilla WideWorldImporters database the recommendation is to run at least 20 minutes, to ensure that enough data is generated and that compression kicks in (the sample has a COMPRESSION_DELAY of 10 minutes for the columnstore indexes).
4747

4848
2. Execute the sample script.
4949

5050
3. Open the Messages pane in SSMS and observe the time taken to run the query with and without columnstore index.
5151

5252
## Sample details
5353

54-
The [Order Insert](../../workload-drivers/vehicle-location-insert/) workload driver is used to simulate an order processing workload. The queries in the sample script are reporting queries run with and without columnstore index.
54+
The [Order Insert](../../workload-drivers/vehicle-location-insert/) workload driver is used to simulate an order processing workload. The queries in the sample script are reporting queries run with and without columnstore index.
5555

5656
<a name=disclaimers></a>
5757

@@ -62,5 +62,6 @@ The code included in this sample is not intended to be used for production purpo
6262

6363
## Related Links
6464
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
65-
TBD
66-
65+
For more information, see these articles:
66+
- [Get started with Columnstore for real time operational analytics](https://msdn.microsoft.com/library/dn817827.aspx)
67+
- [Real-Time Operational analytics with SQL Server 2016 (video)](https://channel9.msdn.com/Events/DataDriven/SQLServer2016/Real-Time-Operational-analytics)

samples/databases/wide-world-importers/sample-scripts/polybase/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sample Querying of External Data Source in WideWorldImportersDW
22

3-
This script demonstrates the use of PolyBase to query an external data source.
3+
This script demonstrates the use of PolyBase to query an external data source.
44

55
Demographics data is available in Azure blob storage. This data is joined with sales data recorded in the local database to determine which would be good candidates for future expansion of the business.
66

@@ -35,7 +35,7 @@ To run this sample, you need the following prerequisites.
3535
**Software prerequisites:**
3636

3737
<!-- Examples -->
38-
1. SQL Server 2016 (or higher) with PolyBase, connected to the internet.
38+
1. SQL Server 2016 (or higher) with PolyBase, connected to the internet.
3939
2. SQL Server Management Studio
4040
3. The WideWorldImportersDW database (Full version).
4141

@@ -70,5 +70,6 @@ The code included in this sample is not intended to be used for production purpo
7070

7171
## Related Links
7272
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
73-
TBD
74-
73+
For more information, see these articles:
74+
- [Get started with PolyBase](https://msdn.microsoft.com/library/mt163689.aspx)
75+
- [PolyBase: Gaining insights from HDFS and relational data in SQL Server 2016 (video)](https://channel9.msdn.com/Events/DataDriven/SQLServer2016/PolyBase)

samples/databases/wide-world-importers/sample-scripts/row-level-security/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sample for use of Row-Level Security in WideWorldImporters
22

3-
This script demonstrates the use of Row-Level Security to restrict access to certains rows in the table to certain users.
3+
This script demonstrates the use of Row-Level Security to restrict access to certains rows in the table to certain users.
44

55

66
### Contents
@@ -34,7 +34,7 @@ To run this sample, you need the following prerequisites.
3434
**Software prerequisites:**
3535

3636
<!-- Examples -->
37-
1. SQL Server 2016 (or higher) or Azure SQL Database.
37+
1. SQL Server 2016 (or higher) or Azure SQL Database.
3838
- With SQL Server, make sure SQL authentication is enabled.
3939
2. SQL Server Management Studio
4040
3. The WideWorldImporters database.
@@ -49,7 +49,7 @@ To run this sample, you need the following prerequisites.
4949

5050
## Sample details
5151

52-
The sample enables row-level security in the database, for the table `Sales.Customers`. Users of the database can only see the customers they are allowed to see.
52+
The sample enables row-level security in the database, for the table `Sales.Customers`. Users of the database can only see the customers they are allowed to see.
5353

5454
The user 'Great Lakes Sales' is allowed to see only the customers in the Great Lakes sales territory.
5555

@@ -64,5 +64,6 @@ The code included in this sample is not intended to be used for production purpo
6464

6565
## Related Links
6666
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
67-
TBD
68-
67+
For more information, see these articles:
68+
- [Row-Level Security documentation](https://msdn.microsoft.com/library/dn765131.aspx)
69+
- [Row-Level Security SQL Server 2016 (video)](https://channel9.msdn.com/Events/DataDriven/SQLServer2016/Row-Level-Security)

samples/databases/wide-world-importers/workload-drivers/order-insert/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To run this sample, you need the following prerequisites.
3333
**Software prerequisites:**
3434

3535
<!-- Examples -->
36-
1. SQL Server 2016 (or higher) or Azure SQL Database.
36+
1. SQL Server 2016 (or higher) or Azure SQL Database.
3737
2. Visual Studio 2015.
3838
3. The WideWorldImporters database.
3939

@@ -55,7 +55,7 @@ This application is used to provide an intensive order entry workload for the Wi
5555

5656
Ensure that the connection string is set appropriately. It is save when the program is edited. If you ever need to set it back to the default value, open the program, clear the string, and exit the program. When you restart the program, the connection string will have been returned to the default value.
5757

58-
The program uses the selected number of threads to concurrently call the `Website.InsertCustomerOrder` stored procedure.
58+
The program uses the selected number of threads to concurrently call the `Website.InsertCustomerOrder` stored procedure.
5959

6060
When inserts are occurring, click the button to stop but allow time for the system to respond and stop. It may take a few seconds to respond, particularly if a larger number of threads is being used.
6161

@@ -66,8 +66,3 @@ When inserts are occurring, click the button to stop but allow time for the syst
6666
The code included in this sample is not intended to be used for production purposes.
6767

6868
<a name=related-links></a>
69-
70-
## Related Links
71-
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
72-
TBD
73-

samples/databases/wide-world-importers/workload-drivers/vehicle-location-insert/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To run this sample, you need the following prerequisites.
3535
**Software prerequisites:**
3636

3737
<!-- Examples -->
38-
1. SQL Server 2016 (or higher) or Azure SQL Database.
38+
1. SQL Server 2016 (or higher) or Azure SQL Database.
3939
2. Visual Studio 2015.
4040
3. The WideWorldImporters database (Full version).
4141

@@ -47,7 +47,7 @@ To run this sample, you need the following prerequisites.
4747

4848
2. Build the solution.
4949

50-
3. Connect to the database and
50+
3. Connect to the database and
5151

5252
4. Run the app and follow the instructions on-screen. Compare the time taken for On Disk and In Memory insertion.
5353

@@ -61,7 +61,7 @@ When executed, this application displays the following:
6161

6262
Ensure that the connection string is set appropriately. It is save when the program is edited. If you ever need to set it back to the default value, open the program, clear the string, and exit the program. When you restart the program, the connection string will have been returned to the default value.
6363

64-
You can control the number of threads performing the insert operations. You can choose whether to insert into an on-disk table or an in-memory equivalent of the same table.
64+
You can control the number of threads performing the insert operations. You can choose whether to insert into an on-disk table or an in-memory equivalent of the same table.
6565

6666
The application will periodically (about every second) display the latest execution times for each insert.
6767

@@ -78,5 +78,4 @@ The code included in this sample is not intended to be used for production purpo
7878

7979
## Related Links
8080
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
81-
TBD
82-
81+
- [in-memory/ticket-reservations](/samples/features/in-memory/ticket-reservations)

samples/databases/wide-world-importers/wwi-integration-etl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ The code included in this sample is not intended to be used for production purpo
9292

9393
## Related Links
9494
<!-- Links to more articles. Remember to delete "en-us" from the link path. -->
95-
TBD
9695
For more information, see these articles:
96+
- [SQL Server Integration Services documentation](https://msdn.microsoft.com/library/ms141026.aspx)

0 commit comments

Comments
 (0)