Questions tagged [mysqladmin]

Client for administering a MySQL server.

mysqladmin is a client for performing administrative operations on a database. You can use it to check the server's configuration and current status, to create and drop databases, and more.

Useful Links

79 questions
-1
votes
1 answer

Combining database query request in a single statement

I have been told that my web server only allows 75,000 database queries request per hour. I'm wondering if combining query request would lessen the amount of queries or if it doesn't matter. It kind of feel like common sense, but I just want to make…
jessica
  • 1,667
  • 1
  • 17
  • 35
-1
votes
2 answers

Cant login to phpMyAdmin

phpMyAdmin will not accept any passwords. It just gives the error "Cannot log in to MySql Server". I can access MySQL from the terminal using mysql -u root -p. It asks for the password I enter it and I am in. I get the mysql> prompt. I have…
Argyle Ghost
  • 141
  • 5
  • 14
-2
votes
2 answers

Unknown column 'userpass' in 'field list'

I'm working on the following project: http://lpmj.net/20.php I've made several entries into phpMyadmin and am getting used to making the mySQL and php correspond, but with this error i have no idea what the code is asking for. This is the error i'm…
expiredninja
  • 1,397
  • 4
  • 25
  • 45
-3
votes
1 answer

Why Is MySQL Bridge Table Not Working?

I currently have the following tables: Category, Product, Payment, User. The following is MySQL script for bridge table: CREATE TABLE Order ( FOREIGN KEY UID MEDIUMINT REFERENCES User (UID), FOREIGN KEY PID MEDIUMINT REFERENCES Product(PID), …
J.S. Orris
  • 4,653
  • 12
  • 49
  • 89
1 2 3 4 5
6