Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
**Do you want to request a *feature* or report a *bug*?**

**What is the current behavior?**

**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via http://sqlfiddle.com/**

**What is the expected behavior?**

**Which versions of SQL Server and which OS are affected by this issue? Did this work in previous versions of our procedures?**
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Fixes # .

Changes proposed in this pull request:
-
-
-

How to test this code:
-
-
-

Has been tested on (remove any that don't apply):
- SQL Server 2016 SP1
- Amazon RDS
- Azure SQL DB
- Windows Server 2012
9 changes: 9 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# The MIT License (MIT)

Copyright (c) 2017 Denny Cherry

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 changes: 22 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
# SQL2016_Scripted_Install
# SQL Server 2016 Scripted Install
[![licence badge]][licence]
[![stars badge]][stars]
[![forks badge]][forks]
[![issues badge]][issues]

This is SQL 2016 scripted install process. There is a best practices script which configures SQL Server with best practices.
[licence badge]:https://img.shields.io/badge/license-MIT-blue.svg
[stars badge]:https://img.shields.io/github/stars/DC-AC/SQL2016_Scripted_Install.svg
[forks badge]:https://img.shields.io/github/forks/DC-AC/SQL2016_Scripted_Install.svg
[issues badge]:https://img.shields.io/github/issues/DC-AC/SQL2016_Scripted_Install.svg

A few assumptions here:

--You have SQL Media mounted to the D: drive

--The SSMS silent installer doesn't offer any indication of progress, and has worked about 50% of the time in my testing
[licence]:https://github.com/DC-AC/SQL2016_Scripted_Install/blob/master/LICENSE.md
[stars]:https://github.com/DC-AC/SQL2016_Scripted_Install/stargazers
[forks]:https://github.com/DC-AC/SQL2016_Scripted_Install/network
[issues]:https://github.com/DC-AC/SQL2016_Scripted_Install/issues

--Even though SQL Server 2016 does not require .NET 3.5, Database Mail does. I'm currently waiting to hear back to see if this fixed in CU1
This is Microsoft SQL Server 2016 scripted install process. There is a best practices script which configures SQL Server with best practices.

--This looks for updates in C:\SQLUpdates, you may wish to update to a different drive (a network share works well)

--This script puts data files on the E: drive--you may need to change for Azure VMs

--You need to edit the DB Mail settings for your SMTP server.
A few assumptions here:
- You have SQL Media mounted to the `D:` drive
- The SSMS silent installer doesn't offer any indication of progress, and has worked about 50% of the time in my testing
- Even though SQL Server 2016 does not require .NET 3.5, Database Mail does. I'm currently waiting to hear back to see if this fixed in CU1
- This looks for updates in `C:\SQLUpdates`, you may wish to update to a different drive (a network share works well)
- This script puts data files on the `E: ` drive--you may need to change for Azure VMs
- You need to edit the DB Mail settings for your SMTP server