Forum: MySQL Oct 27th, 2009 |
| Replies: 2 Views: 413 If you checked box in installation to set path for MySQL you need to only call mysql -u USERNAME -p followed by password after system request. In case you didn't do it, you need to navigate command... |
Forum: MySQL Jul 22nd, 2009 |
| Replies: 2 Views: 258 Have look here (http://websec.wordpress.com/2007/11/17/mysql-table-and-column-names/) seems to be full of info |
Forum: MySQL Jun 7th, 2009 |
| Replies: 3 Views: 483 That is option too, but it is not necessary to do as the above suggestion worked for me just few weeks ago and also not everyone is keen to re-install if you ask them:D |
Forum: MySQL Jun 6th, 2009 |
| Replies: 3 Views: 483 Try to re-run MySQL Server Instance Config Wizard (Start >> All Programs >> MySQL >> MySQL Server 5.1 >>MySQL Server Instance Config Wizard) as sometimes configuration may collide with other... |
Forum: MySQL Feb 25th, 2009 |
| Replies: 7 Views: 1,164 Depending on what you using to read from browser/GUI application and which language you using Java/C#/PHP... |
Forum: MySQL Feb 19th, 2009 |
| Replies: 9 Views: 2,943 Check this out it should be helpful http://www.debianadmin.com/mysql-database-server-installation-and-configuration-in-debian.html |
Forum: MySQL Jan 13th, 2009 |
| Replies: 5 Views: 3,351 "Mark as Solved" bellow last post... |
Forum: MySQL Nov 7th, 2008 |
| Replies: 2 Views: 1,587 For the database import, before you attempt to import the "flat" file data in, you need go to your local DB (MySQL) and create new database
create database DATABASE_NAME;
After that you can import. |
Forum: MySQL Sep 8th, 2008 |
| Replies: 1 Views: 549 This seems to be handy tutorial (http://paul.ecommerce.hct.ac.ae/tutorials/dwmx-php/dwmxphp.htm), plus more from google search... |
Forum: MySQL Aug 7th, 2008 |
| Replies: 10 Views: 5,617 Yes there is import option for text file that you can use for SQL file import. Please see attached image. Sometimes it may kick off with error message about different type of DB used but that can be... |
Forum: MySQL Aug 7th, 2008 |
| Replies: 10 Views: 5,617 Yeah you right, only console. Stupid of me...
If you able to log in yahoos' phpMyAdmin there is somewhere option to import or create table out of existing sql file. I gone check on my hosting, give... |
Forum: MySQL Aug 7th, 2008 |
| Replies: 10 Views: 5,617 I think your command is in wrong order. Following works for me
mysql -u username DB_NAME < mysql_fix_privilege_tables.sql -p
Once I execute command I'm asked for password which I type in and job... |
Forum: MySQL Jun 14th, 2008 |
| Replies: 3 Views: 1,290 The form have to be done in something like PHP/ASP.NET/JSP to validate data submited by user, authenticate and then send email back (often known as server side programming or scripting). MySQL is... |
Forum: MySQL May 14th, 2008 |
| Replies: 9 Views: 9,036 That problem description is very inacurate, you better provide full description of your problem... |
Forum: MySQL May 3rd, 2008 |
| Replies: 15 Views: 5,629 What is point to bump post started 2 years ago, with last respond some 18 months back? |
Forum: MySQL Mar 22nd, 2008 |
| Replies: 3 Views: 653 Here (http://dev.mysql.com/doc/refman/5.0/en/counting-rows.html) is your MySQL tutorial |
Forum: MySQL Feb 15th, 2007 |
| Replies: 4 Views: 2,665 I never heard that something like that happens, as long you designed your database properly it will never ocure. The primary key is unique for only one user or item |
Forum: MySQL Feb 15th, 2007 |
| Replies: 4 Views: 2,665 select max(table1_id) from table1 |