Hello. You can use loadercli to execute sql statements and see results on the screen, but maybe you'll get some problems with unicode. So try it.
loadercli -d <db> -u <user,password> -b <script.sql> -oa <comamnds.log> > <stdout.log> --------------------- begin script.sql ------------------------ SET COMPRESSED '/|//' // SET NULL '' // DATAEXTRACT * FROM <tablename> OUTFILE 'stdout' ucs2 // --------------------- end script.sql ------------------------ You can use much more complicated sql statements instead of * from <tablename> with "where"s, "groupby"s and so on. Alexey. -- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
