View Single Post
  #3  
Old 12-17-2003, 06:35 PM
Bearik's Avatar
Bearik
Hill Giant
 
Join Date: Nov 2003
Location: Washington
Posts: 104
Default

Quote:
Originally Posted by omper
do this..

cmd prompt

cd \mysql\bin
mysql -u root mysql
drop database eq;
create database eq;
use eq;
source DB.sql;
\q
end
exit
done.....

Omper
cmd prompt

cd \mysql\bin
mysql -u root mysql
drop database eq;
grant all privileges on *.* to username@localhost identified by 'password' with grant option;
create database eq;
use eq;
source DB.sql;
\q
end
exit
done.....

If hes getting authorization errors it might be a good idea to get the right privileges
Reply With Quote