sql-server-samples/README.md

49 строки
3.6 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

2023-02-20 21:07:15 +03:00
![](./media/solutions-microsoft-logo-small.png)
2019-07-09 01:09:06 +03:00
2020-05-28 21:34:43 +03:00
# Azure Data SQL Samples Repository
This GitHub repository contains code samples that demonstrate how to use Microsoft's Azure Data products including SQL Server, Azure SQL Database, Azure Synapse, and Azure SQL Edge. Each sample includes a README file that explains how to run and use the sample.
2016-03-17 03:15:01 +03:00
2023-10-18 14:12:13 +03:00
Please note that specific features, such as In-Memory OLTP, are edition-specific for SQL Server. These features will only be available if the edition that supports them is used to run the sample.
2016-05-17 01:31:16 +03:00
2016-09-15 20:36:18 +03:00
## Releases in this repository
2023-10-18 14:12:13 +03:00
Releases provide convenient downloads of sample databases and applications, eliminating the need to build them from source code. This SQL Server samples repository offers the following notable releases:
2016-09-15 20:36:18 +03:00
- [Wide World Importers sample database v1.0](https://github.com/Microsoft/sql-server-samples/releases/tag/wide-world-importers-v1.0) is the main sample for SQL Server 2016 and Azure SQL Database. It contains both an OLTP and an OLAP database.
- [In-Memory OLTP Performance Demo v1.0](https://github.com/Microsoft/sql-server-samples/releases/tag/in-memory-oltp-demo-v1.0) illustrates the performance benefits of the In-Memory OLTP technology built into SQL Server and Azure SQL Database.
- [IoT Smart Grid sample v1.0](https://github.com/Microsoft/sql-server-samples/releases/tag/iot-smart-grid-v1.0) illustrates how SQL Server can be leveraged to ingest data from IoT devices and sensors, and how you can run analytics on that data.
2016-09-15 20:37:56 +03:00
To see the complete list of resources in this repository, navigate to [Releases](https://github.com/Microsoft/sql-server-samples/releases)
(this now includes an entity diagram of Northwind database) to help visual learners.
2016-09-15 20:37:56 +03:00
2016-03-25 22:23:00 +03:00
## Working in GitHub
2023-10-18 14:12:13 +03:00
To contribute on GitHub, follow these steps:
2023-10-18 14:14:46 +03:00
- Visit https://github.com/microsoft/sql-server-samples and fork the repository.
- Work in your forked repository.
- When you're ready to make changes or publish your sample for the first time, submit a pull request into the 'master' branch of 'sql-server-samples'.
- One of the approvers will review your request and either accept or reject the pull request.
2016-03-25 22:23:00 +03:00
2016-06-17 18:54:29 +03:00
Each sample should be in its own folder with a README.md file that follows the [template](README_samples_template.md). Generated files (e.g., .exe or .bacpac) and user configuration settings (e.g., .user) should not be committed to GitHub.
## Cloning only a subset of the repo (with sparse checkout)
2023-02-20 21:07:15 +03:00
You can follow the steps below to clone individual files from the sql-server-samples git repo. Note: The following script clones only the files under the **features** and **demos** folders.
2017-10-05 21:13:28 +03:00
```
2018-04-11 09:20:54 +03:00
git clone -n https://github.com/Microsoft/sql-server-samples
cd sql-server-samples
git config core.sparsecheckout true
echo samples/features/*| out-file -append -encoding ascii .git/info/sparse-checkout
echo samples/demos/*| out-file -append -encoding ascii .git/info/sparse-checkout
git checkout
2017-10-05 21:13:28 +03:00
```
For more information about sparse checkout please visit [this](https://stackoverflow.com/questions/23289006/on-windows-git-error-sparse-checkout-leaves-no-entry-on-the-working-directory) stackoverflow thread.
2016-06-21 22:47:36 +03:00
## Code of Conduct
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
2016-03-25 22:23:00 +03:00
## License
These samples and templates are all licensed under the MIT license. See the license.txt file in the root.
## Questions
2016-04-25 21:15:35 +03:00
Email questions to: sqlserversamples@microsoft.com.