Is it is possible in SQL
Hi,
I have investigated much time on Internet and I have found nothing to create user without command in SQL server. But you can create user simply by the following command in SQL server. Here are the commands.
CREATE USER user_nameÂ
   [ { { FOR | FROM }
     {
       LOGIN login_name
       | CERTIFICATE cert_name
       | ASYMMETRIC KEY asym_key_name
     }
     | WITHOUT LOGIN
   ]
    [ WITH DEFAULT_SCHEMA = schema_name ]
Hope this will help you. If it doesn't work well please let me know. I will do more research on the Internet finding a way to solve your problem.
Thank you for your question.
Is it is possible in SQL
No, there is no other way to create user except "create user" command. Manay people say isql*plus can be used to create users without using "create user" command but actually isql*plus is just a GUI for sql commands so indirectly it is also using the command only.