About 5,010,000 results
Open links in new tab
  1. Difference between User.objects.create_user () vs …

    Jul 23, 2020 · User.objects.create_user() is a helper function that provides helpful utilities to create a user that otherwise you would have to do yourself. As per the documentation: …

  2. sql - Create a Superuser in postgres - Stack Overflow

    Sep 17, 2019 · You can now run commands as the PostgreSQL superuser.To create a user, type the following command: createuser --interactive --pwprompt At the Enter name of role to add: …

  3. python - How to create a user in Django? - Stack Overflow

    May 14, 2016 · 273 The correct way to create a user in Django is to use the create_user function. This will handle the hashing of the password, etc..

  4. Oracle - How to create a readonly user - Stack Overflow

    Sep 21, 2011 · It's possible create a readonly database user at an Oracle Database? How?

  5. Create PostgreSQL ROLE (user) if it doesn't exist

    Nov 11, 2011 · The current script simply has: CREATE ROLE my_user LOGIN PASSWORD 'my_password'; This fails if the user already exists. I'd like something like: IF NOT EXISTS …

  6. How can I create a user in SQL Server Express database I added to …

    How can I create a SQL user in a SQL Server Express database that I added to my project? I need to create a user to use in a connection string that doesn't use Integrated Security.

  7. postgresql - How to create a user for Postgres from the command …

    For future reference. When running the command, postgres needs a user from which to execute the query. To set a user different than the logged user (in this case khophi), you should use …

  8. Create a user with all privileges in Oracle - Stack Overflow

    Mar 14, 2014 · 3) Here in this step if you want create a new user then you can create otherwise give all the privileges to existing user. for creating new user SQL> create user abc identified by …

  9. Create new user in MySQL and give it full access to one database

    Oct 21, 2023 · I want to create a new user in MySQL and give it full access only to one database, say dbTest that I create with a command like create database dbTest;. What would be the …

  10. ERROR 1396 (HY000): Operation CREATE USER failed for …

    Apr 5, 2011 · I seem to be unable to re-create a simple user I've deleted, even as root in MySQL. My case: user 'jack' existed before, but I deleted it from mysql.user in order to recreate it. I see …