Re: Error creating database

2004-02-08 Thread Michael Stassen
Marty, I've copied the list on this reply. I hope you don't mind. It's a good idea to keep the discussion on the list. There are a lot of experts there, so the speed and quality of your answers is improved when you send to the list rather than to an individual. Plus, others may benefit

RE: Error creating database

2004-02-07 Thread Mike Mapsnac
Make sure that you have persmission to create database. Check MySQL manual: http://www.mysql.com/doc/en/index.html From: mysql [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Error creating database Date: Sat, 7 Feb 2004 19:00:54 -0500 HI everyone: I am using a dual 800 MHz power mac G4 in

Re: Error creating database

2004-02-07 Thread Michael Stassen
mysql wrote: HI everyone: I am using a dual 800 MHz power mac G4 in which I have installed MySQL. When ever I try to create a new database in MySQL, I receive the following error mysql create database dogs; ERROR 1044 (42000): Access denied for user: ''@'localhost' to database 'dogs' You are

Re: error creating database

2003-08-14 Thread Victoria Reznichenko
Paulo Fonseca Jr. [EMAIL PROTECTED] wrote: I was received a error when I was trying to create a new database on freebsd 5.1, mysql 4.0.14. The test database is working well. COMMAND: mysqladmin create desenv or mysql create database desenv; ERROR: mysqladmin: CREATE DATABASE

Re: error creating database

2003-08-14 Thread daniel
lol mysqladmin -u root -p create database desenv ?? Hi, I was received a error when I was trying to create a new database on freebsd 5.1, mysql 4.0.14. The test database is working well. COMMAND: mysqladmin create desenv or mysql create database desenv; ERROR: mysqladmin: CREATE

RE: Error creating database

2003-07-22 Thread Peter Lovatt
Hi when you log in to MySQL use mysql -u root you will then be asked to enter a password. On a new instalation the password may be blank - nothing After that you should be able to create databases. You might find information about privilages and GRANT usefull

Re: Error creating database

2001-05-16 Thread David Simmons - EliteUKServe.Net
dont you mean: create database gnudip2; create table table1 (id int(10),some_colum varchar(255)); - Original Message - From: [EMAIL PROTECTED] To: Ana Elisa Martinez [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, May 15, 2001 10:57 PM Subject: Re: Error creating database I

Re: Error creating database

2001-05-15 Thread Siomara Pantarotto
try: mysqlCREATE DATABASE gnudip2; From: Ana Elisa Martinez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Error creating database Date: Tue, 15 May 2001 16:09:09 -0400 When i try to create a database with the command : mysql create gnudip2; Told me an error : ERROR 1064: You have an

Re: Error creating database

2001-05-15 Thread David Simmons - EliteUKServe.Net
create database gnudip2; make sure you have the right permissions as well! - Original Message - From: Ana Elisa Martinez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 15, 2001 9:09 PM Subject: Error creating database When i try to create a database with the command :

Re: Error creating database

2001-05-15 Thread dwilkers
I also get somthing like that, much mor productive to do somthing like create database gnudip2(id int(10),some_colum varchar(255)); Trying to show that you add columns with the same command. Darrell On Tue, 15 May 2001, Ana Elisa Martinez wrote: When i try to create a database with the