Qual è il privilegio minimo necessario per modificare un vincolo di chiave esterna?


12

Qual è il privilegio minimo necessario per modificare un vincolo di chiave esterna?

Il mio script di migrazione ha smesso di funzionare dopo che MySQL 5.5.41 ha corretto questo errore:

  • InnoDB ha consentito la creazione di una chiave esterna che faceva riferimento a una tabella padre per la quale l'utente non disponeva di privilegi sufficienti. (Bug # 18790730)

Ottengo questo errore:

SQLSTATE [42000]: errore di sintassi o violazione di accesso: 1142 RIFERIMENTI comando negato all'utente 'pippo' @ 'localhost' per la tabella 'core.users' (SQL: alterare la tabella `user_baz` aggiungere vincolo user_baz_user_id_foreign chiave esterna (` user_id`) riferimenti `core``users` (` id`) su delete cascade su update cascade)

Ciò significa che devo correggere i privilegi. Qual è il privilegio minimo di cui ho bisogno?

Risposte:


15

Devi aggiungere il privilegio "RIFERIMENTI" al tuo ruolo.


1
Questo tipo di risposta "teorica" ​​porta solo a cercare su Google come aggiungere il privilegio in pratica. Vedi la risposta di @ Yuci, che fornisce tutti i dettagli necessari. Cioè,GRANT REFERENCES ON test.user_baz TO 'foo'@'localhost';
John Mayor,

8
GRANT [type of permission] ON [database name].[table name] TO '[username]'@'[host name or IP address]';

Per esempio:

GRANT REFERENCES ON test.user_baz TO 'foo'@'localhost';

1

In primo luogo, se tutto il resto fallisce, leggere la documentazione (sezione Note di utilizzo).

To use `ALTER TABLE`, you need `ALTER`, `CREATE` and `INSERT` privileges for the table. Note that the user (billy) granted these privileges cannot drop the table.

Di seguito è riportato un esempio.

mysql> select user();
+----------------+
| user()         |
+----------------+
| root@localhost |    <=== now root user
+----------------+
1 row in set (0.00 sec)

mysql> CREATE TABLE a(b VARCHAR(3) PRIMARY KEY); <=== Must be PK to be FK in another table.
Query OK, 0 rows affected (0.28 sec)

mysql> CREATE TABLE c(d VARCHAR(3), KEY c_ix (d));
Query OK, 0 rows affected (0.35 sec)

mysql> GRANT ALTER, CREATE, INSERT ON c TO billy;  <=== Privileges to billy
Query OK, 0 rows affected (0.00 sec)

mysql> exit;
Bye

logon as billy

[pol@localhost dbahelper-master]$ /mysql/5.7/inst/bin/mysql -S /mysql/5.7/inst/mysql.sock -u billy -pdba

mysql> use test;
Database changed
mysql> 
mysql> ALTER TABLE c ADD CONSTRAINT fk_c_a FOREIGN KEY (d) REFERENCES a(b);
Query OK, 0 rows affected (0.64 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> SHOW CREATE TABLE c;
| c     | CREATE TABLE `c` (
  `d` varchar(3) DEFAULT NULL,
  KEY `c_ix` (`d`),
  CONSTRAINT `fk_c_a` FOREIGN KEY (`d`) REFERENCES `a` (`b`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
mysql> 
mysql> drop table c;
ERROR 1142 (42000): DROP command denied to user 'billy'@'localhost' for table 'c'
mysql> 
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.