Hi,
Is it possible to create a "SQL server login and user" after a user has been created without one?
Thanks
At the moment it is not supported, you will need to do this manually. Something like:use master;GOcreate login name with password='mypassword';GOuse rdm;GOcreate user [name] FOR LOGIN [name];GOI've added a feature request to allow doing this directly within the app.
Best regards,
Stéfane Lavergne