From f6bce2308912d36635cc21345c115c2d001d3f1c Mon Sep 17 00:00:00 2001 From: Sydney Smith <43417619+SydneyhSmith@users.noreply.github.com> Date: Mon, 8 Jul 2019 15:31:02 -0700 Subject: [PATCH 1/2] Add files via upload --- ...Server-Creation-With-Docker-Notebook.ipynb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 docs/azure_data_studio/Server-Creation-With-Docker-Notebook.ipynb diff --git a/docs/azure_data_studio/Server-Creation-With-Docker-Notebook.ipynb b/docs/azure_data_studio/Server-Creation-With-Docker-Notebook.ipynb new file mode 100644 index 0000000000..1b61fdc6c2 --- /dev/null +++ b/docs/azure_data_studio/Server-Creation-With-Docker-Notebook.ipynb @@ -0,0 +1,29 @@ +{ + "metadata": { + "kernelspec": { + "name": "SQL", + "display_name": "SQL", + "language": "sql" + }, + "language_info": { + "name": "sql", + "version": "" + } + }, + "nbformat_minor": 2, + "nbformat": 4, + "cells": [ + { + "cell_type": "markdown", + "source": "## Creating a SQL Server in a Linux Container [Using PowerShell]\r\n\r\n|Module|Link|\r\n|------------|---------------------------------------|\r\n|SqlServer|https://www.powershellgallery.com/packages/SqlServer/|\r\n|ReportingServicesTools|https://www.powershellgallery.com/packages/ReportingServicesTools/|\r\n|MicrosoftPowerBIMgmt|https://www.powershellgallery.com/packages/MicrosoftPowerBIMgmt/|\r\n|SqlServerDsc|https://www.powershellgallery.com/packages/SqlServerDsc/|\r\n|Az.Sql|https://www.powershellgallery.com/packages/Az.Sql/|\r\n\r\n
\r\nIf you don't already have a terminal window open, you need to first: Open the terminal \r\n\r\n
\r\nYou probably don't have this directory on your machine, so run this: mkdir C:/SQLData/Docker/SQLDev63 \r\n\r\n
\r\nSpin up a Docker Container with Invoke-Expression (Invoke-WebRequest https://gist.githubusercontent.com/SQLvariant) Just click enter after the command is placed into the terminal. Just click enter after the command is placed into the terminal. When prompted, the sa password is Test1234, but you can obviously change this.\r\n\r\n
\r\nView the PowerShell Script with PSEdit \r\n\r\n", + "metadata": {} + }, + { + "cell_type": "code", + "source": "SELECT name, create_date\r\nFROM sys.databases", + "metadata": {}, + "outputs": [], + "execution_count": 0 + } + ] +} \ No newline at end of file From 121ca6e233e749d46b2bedee15293ddc340abaa3 Mon Sep 17 00:00:00 2001 From: Sydney Smith <43417619+SydneyhSmith@users.noreply.github.com> Date: Tue, 9 Jul 2019 08:51:15 -0700 Subject: [PATCH 2/2] Update docs/azure_data_studio/Server-Creation-With-Docker-Notebook.ipynb Co-Authored-By: Tyler James Leonhardt