Hello.


What error have you got? Send us compete command that you issued and

the error message.

>Could any one of you help me in creating two users like First user with

>all dba privileges as root and the Second user with only dml operations.



For root user use:

 grant all privileges on *.* to 'vasja'@'vasinhost' identified by 'vasinpass' 
with grant option;



For dml user use something like this:

   grant select,insert,update,delete on test.* to 'dml'@'localhost' identified 
by 'v';

See:

  http://dev.mysql.com/doc/mysql/en/GRANT.html





>And in loading data using LOAD DATA INFILE, if I use the file full path,

>I am getting error. And if I put the file in mysql\bin it is executing.

>How to load a dta in a file which is located in some other directories.



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.NET http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Gleb Paharenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.NET
       <___/   www.mysql.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to