View Single Post
  #10  
Old 03-23-2004, 05:52 PM
xtestx
Sarnak
 
Join Date: Mar 2004
Posts: 50
Default

hmmm i did this...

start -> run -> cmd

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\Sean>mysql -u root mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 23 to server version: 4.0.18-nt

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> grant all privileges on *.* to lnlserver@localhost identified by 'my pw'
with grant option;
Query OK, 0 rows affected (0.00 sec)

mysql> create database eq;
ERROR 1007: Can't create database 'eq'. Database exists
mysql> use eq;
Database changed
mysql> source MW055_alpha02.sql;
ERROR:
Failed to open file 'MW055_alpha02.sql', error: 2
mysql>



notice Failed to open file 'MW055_alpha02.sql', error: 2

I have no idea why it isn't working, and yeah I put it in the bin folder


P.S. the reason why it said ERROR 1007: Can't create database 'eq'. Database exists cause I already created it on the passed 5 tries i've done
Reply With Quote