-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3dba68
commit 8708a6c
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,5 +41,5 @@ CREATE LOGIN [ IF NOT EXISTS ] <login_name> | |
The following command will create an account in the US East (N. Virginia) region. | ||
|
||
```sql | ||
CREATE LOGIN "[email protected]" WITH FIRST_NAME = "Alex" LAST_NAME = "Summers"; | ||
CREATE LOGIN "[email protected]" WITH FIRST_NAME = 'Alex' LAST_NAME = 'Summers'; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,5 +41,5 @@ CREATE USER [ IF NOT EXISTS ] <user_name> | |
The following code example creates a user named `alex`, links it to the login `[email protected]`, and assigns it the roles of `analyst` and `data_engineer`: | ||
|
||
```sql | ||
CREATE USER alex WITH LOGIN= "[email protected]", ROLE= (analyst, data_engineer); | ||
CREATE USER alex WITH LOGIN= "[email protected]" ROLE= (analyst, data_engineer); | ||
``` |