07/07/2004, 09:28
|
| | Fecha de Ingreso: julio-2004
Mensajes: 1
Antigüedad: 20 años, 4 meses Puntos: 0 | |
Problemas como usuario root... No me deja crear usuarios para otras bases de datos:
C:\mysql\bin>mysql.exe -h 192.168.0.194 -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.20a-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases;
+----------+
| Database |
+----------+
| mysql |
+----------+
1 row in set (0.00 sec)
mysql> create database prueba;
Query OK, 1 row affected (0.04 sec)
mysql> grant all on prueba.* to usuario@localhost identified by 'contrasenya';
ERROR 1044: Access denied for user: 'root@%' to database 'prueba'
mysql>
alguna idea?? |