Skip to content

Update mssql.rst to include instructions for specifying password in connection URL #1672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
15 changes: 15 additions & 0 deletions docs/ref/mssql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,21 @@ welcome external TCP/IP connection. As pgloader currently piggybacks on the
FreeTDS driver, to change the port of the server please export the `TDSPORT`
environment variable.

Note on Passwords Containing the @ Character
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

When specifying a password in the connection URL, the password appears after
the username and before the @ symbol that separates credentials from the server
address. If your password itself contains an @, you must escape it by replacing
each @ in the password with @@. This ensures the connection string is parsed
correctly.

;;

load database
from mssql://user:password@host/dbname


MS SQL Database Migration Options: WITH
---------------------------------------

Expand Down