Skip to content

Commit bd38bb5

Browse files
Merge pull request #1111 from MicrosoftDocs/Rick-Anderson-patch-12
SFI: web-deploy-parameterization.md
2 parents c998436 + 45f6291 commit bd38bb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iis/publish/using-web-deploy/web-deploy-parameterization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ The CreateDBAndUser.sql script is a fairly simple script that can be [copied fro
7474

7575
The VacPicDBSchema.sql is the script that creates all the tables in the database that the application uses. This file can created using the Web Deploy command line tool. From the command line, navigate to where Web Deploy is installed (typically %programfiles%\IIS\Microsoft Web Deploy <LatestVersion>) and enter the following command:
7676

77-
`msdeploy -verb:sync -source:dbfullsql="data source=.\SQLExpress;initial catalog=PhotoGallery;user id=sa;password=<AdminPassword>" -dest:dbfullsql="c:\VacPicDBSchema.sql"`
77+
`msdeploy -verb:sync -source:dbfullsql="data source=.\SQLExpress;initial catalog=PhotoGallery;user id=sa;password=*" -dest:dbfullsql="c:\VacPicDBSchema.sql"`
7878

79-
Make sure to replace &lt;AdminPassword&gt; with the appropriate SQL administrator password.
79+
Replace the asterisk (`*`) with the appropriate SQL administrator password.
8080

8181
At a basic level, the above command uses the **dbFullSql** provider to copy data from a database using a database connection string ("-source:dbfullsql=…") and copies it to a database script file ("-dest:dbfullsql=…")
8282

0 commit comments

Comments
 (0)