Domande taggate «user-management»

2
mysql crea utente se non esiste
Ho una domanda per controllare l'elenco degli utenti di mysql per creare un nuovo utente. IF (SELECT EXISTS(SELECT 1 FROM `mysql`.`user` WHERE `user` = '{{ title }}')) = 0 THEN CREATE USER '{{ title }}'@'localhost' IDENTIFIED BY '{{ password }}' END IF; Ma ottengo questo errore: ERROR 1064 (42000) at …

4
Come verificare se esiste un utente postgres?
createuserconsente la creazione di un utente (ROLE) in PostgreSQL. C'è un modo semplice per verificare se quell'utente (nome) esiste già? Altrimenti createuser restituisce un errore: createuser: creation of new role failed: ERROR: role "USR_NAME" already exists AGGIORNAMENTO: La soluzione dovrebbe essere eseguibile preferibilmente dalla shell, in modo che sia più …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.