Skip to content

Commit fe172ad

Browse files
authored
Merge pull request #20265 from john-par/validation-fix-disallowed-html-attribute
BULK UPDATE: Validation fix disallowed HTML attributes
2 parents 4d2feeb + b9a7b0c commit fe172ad

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/linux/sql-server-linux-develop-use-ssdt.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SQL Server Data Tools (SSDT) turns Visual Studio into a powerful development and
2424

2525
3. Select **Microsoft SQL Server Data Tools**, **Git for Windows**, and **GitHub Extension for Visual Studio** from the feature selection list.
2626

27-
<img src="./media/sql-server-linux-develop-use-ssdt/ssdt-setup.png" alt="ssdt setup" style="width: 400px;"/>
27+
<img src="./media/sql-server-linux-develop-use-ssdt/ssdt-setup.png" alt="ssdt setup"/>
2828

2929
4. Continue and finish the installation of Visual Studio. It can take a few minutes.
3030

@@ -42,13 +42,13 @@ SQL Server on Linux is supported by SSDT version 17.0 RC or later.
4242

4343
3. Click **New** in **Local Git Repository** section on the **Connect** page.
4444

45-
<img src="./media/sql-server-linux-develop-use-ssdt/git-repository.png" alt="Screenshot of the Local Git Repository section with the New option called out." style="width: 300px;"/>
45+
<img src="./media/sql-server-linux-develop-use-ssdt/git-repository.png" alt="Screenshot of the Local Git Repository section with the New option called out."/>
4646

4747
4. Click **Create**. After the local Git repository is created, double-click **SSDTRepo**.
4848

4949
5. Click **New** in the **Solutions** section. Select **SQL Server** under **Other Languages** node in the **New Project** dialog.
5050

51-
<img src="./media/sql-server-linux-develop-use-ssdt/new-project.png" alt="Screenshot of the Solutions section with the New option and SQL Server option called out." style="width: 480px;"/>
51+
<img src="./media/sql-server-linux-develop-use-ssdt/new-project.png" alt="Screenshot of the Solutions section with the New option and SQL Server option called out."/>
5252

5353
6. Type in **TutorialDB** for the name and click **OK** to create a new database project.
5454

@@ -60,19 +60,19 @@ SQL Server on Linux is supported by SSDT version 17.0 RC or later.
6060

6161
3. Select **Table** under **Add**.
6262

63-
<img src="./media/sql-server-linux-develop-use-ssdt/create-table.png" alt="create table" style="width: 480px;"/>
63+
<img src="./media/sql-server-linux-develop-use-ssdt/create-table.png" alt="create table"/>
6464

6565
4. Using table designer, add two columns, Name `nvarchar(50)` and Location `nvarchar(50)`, as shown in the picture. SSDT generates the `CREATE TABLE` script as you add the columns in the designer.
6666

67-
<img src="./media/sql-server-linux-develop-use-ssdt/add-columns.png" alt="Screenshot of the table designer with the Name and Location values called out." style="width: 480px;"/>
67+
<img src="./media/sql-server-linux-develop-use-ssdt/add-columns.png" alt="Screenshot of the table designer with the Name and Location values called out."/>
6868

6969
5. Save the **Table1.sql** file.
7070

7171
## Build and validate the database
7272

7373
1. Open the database project menu on **TutorialDB** and select **Build**. SSDT compiles .sql source code files in your project and builds a Data-tier Application package (dacpac) file. This can be used to publish a database to your SQL Server instance on Linux.
7474

75-
<img src="./media/sql-server-linux-develop-use-ssdt/build.png" alt="Screenshot showing the TutorialDB with the Build option called out." style="width: 400px;"/>
75+
<img src="./media/sql-server-linux-develop-use-ssdt/build.png" alt="Screenshot showing the TutorialDB with the Build option called out."/>
7676

7777
2. Check the build success message in **Output** window in Visual Studio.
7878

@@ -82,19 +82,19 @@ SQL Server on Linux is supported by SSDT version 17.0 RC or later.
8282

8383
2. Click **Edit** to select your SQL Server instance on Linux.
8484

85-
<img src="./media/sql-server-linux-develop-use-ssdt/publish-dialog.png" alt="publish dialog" style="width: 480px;"/>
85+
<img src="./media/sql-server-linux-develop-use-ssdt/publish-dialog.png" alt="publish dialog"/>
8686

8787
3. On the connection dialog, type in the IP address or host name of your SQL Server instance on Linux, user name and password.
8888

89-
<img src="./media/sql-server-linux-develop-use-ssdt/connection-dialog.png" alt="connection dialog" style="width: 400px;"/>
89+
<img src="./media/sql-server-linux-develop-use-ssdt/connection-dialog.png" alt="connection dialog"/>
9090

9191
4. Click the **Publish** button on the publish dialog.
9292

9393
5. Check the publish status in the **Data Tools Operations** window.
9494

9595
6. Click **View Results** or **View Script** to see details of the database publish result on your SQL Server on Linux.
9696

97-
<img src="./media/sql-server-linux-develop-use-ssdt/publish-result.png" alt="publish result" style="width: 480px;"/>
97+
<img src="./media/sql-server-linux-develop-use-ssdt/publish-result.png" alt="publish result"/>
9898

9999
You've successfully created a new database on SQL Server instance on Linux and learned the basics of developing a database with a source-controlled database project.
100100

docs/linux/sql-server-linux-run-sql-server-agent-job.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ You can also create and manage jobs remotely using SQL Server Management Studio
151151

152152
1. Verify that you have created a sample database named **SampleDB**.
153153

154-
<img src="./media/sql-server-linux-run-sql-server-agent-job/ssms-agent-0.png" alt="Create a SampleDB database" style="width: 550px;"/>
154+
<img src="./media/sql-server-linux-run-sql-server-agent-job/ssms-agent-0.png" alt="Create a SampleDB database"/>
155155

156156
1. Verify that SQL Agent was [installed](sql-server-linux-setup-sql-agent.md) and configured correctly. Look for the plus sign next to SQL Server Agent in the Object Explorer. If SQL Server Agent is not enabled, try restarting the **mssql-server** service on Linux.
157157

@@ -179,7 +179,7 @@ You can also create and manage jobs remotely using SQL Server Management Studio
179179

180180
1. Start your job.
181181

182-
<img src="./media/sql-server-linux-run-sql-server-agent-job/ssms-agent-9.png" alt="Start the SQL Server Agent job" style="width: 550px;"/>
182+
<img src="./media/sql-server-linux-run-sql-server-agent-job/ssms-agent-9.png" alt="Start the SQL Server Agent job"/>
183183

184184
## Next Steps
185185

0 commit comments

Comments
 (0)