Skip to content

Commit 694574c

Browse files
committed
fix SFI
1 parent 88a0b0b commit 694574c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

learn-pr/azure/azure-sql-deploy-configure/includes/8-exercise-load-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Both exercises contain the same commands and content, so you can choose the opti
6767
6868
```sql
6969
CREATE MASTER KEY
70-
ENCRYPTION BY PASSWORD='MyComplexPassword00!';
70+
ENCRYPTION BY PASSWORD='<password>';
7171
GO
7272
```
7373
@@ -78,7 +78,7 @@ Both exercises contain the same commands and content, so you can choose the opti
7878
```sql
7979
CREATE DATABASE SCOPED CREDENTIAL [https://azuresqlworkshopsa.blob.core.windows.net/data/]
8080
WITH IDENTITY = 'SHARED ACCESS SIGNATURE',
81-
SECRET = 'st=2020-09-28T22%3A05%3A27Z&se=2030-09-29T22%3A05%3A00Z&sp=rl&sv=2018-03-28&sr=c&sig=52WbuSIJCWyjS6IW6W0ILfIpqh4wLMXmOlifPyOetZI%3D';
81+
SECRET = '<secret>';
8282
GO
8383
```
8484

0 commit comments

Comments
 (0)