Mukul Kumar
Mukul Kumar

Reputation: 724

Create user in Readers Account Snowflake

I have created a share and added that share to a reader account.

Now I have executed a create user statement there in the reader account i.e.

 CREATE or replace USER client_test
 PASSWORD             = 'Client4321'
 LOGIN_NAME           = 'client'
 DISPLAY_NAME         = 'client test'
 FIRST_NAME           = 'client'
 LAST_NAME            = 'test'
 EMAIL                = '[email protected]'
 DEFAULT_ROLE         = sysadmin;

This statement gets executed without any error and also I can see the user details under the account tab in snowflake UI

but still, when I am trying to login into this newly created user, there is an error of incorrect username or password coming up.

Is creating a user in a reader account not allowed or anything like there in snowflake?

I haven't found documentation on this as such. It will be appreciated if anyone helps me out with this.

Upvotes: 0

Views: 472

Answers (1)

Srinath Menon
Srinath Menon

Reputation: 1650

The issue here is that the login_name is the one which should be used for logging in to the SF application. Use "client" and "Client4321" to login and it will be successful.

Upvotes: 1

Related Questions