basic mysql setup

2004-05-16 Thread bruce
hi... i'm running rh 8.0 with mysql on a test system. i'm relatively new to the admin functions of mysql. another person setup the mysql on the system. in reviewing the setup, it appears that mysql was setup with using root, and the root password. when i look at phpMyAdmin, it is also setup

Re: basic mysql setup

2004-05-16 Thread Scott Haneda
on 05/16/2004 12:52 AM, bruce at [EMAIL PROTECTED] wrote: i'm running rh 8.0 with mysql on a test system. i'm relatively new to the admin functions of mysql. another person setup the mysql on the system. in reviewing the setup, it appears that mysql was setup with using root, and the root

RE: basic mysql setup

2004-05-16 Thread bruce
scott... thanks..i'll take a look... but this brings to mind a question. is it possible to have multiple users accessing the phpMyAdmin app, with each having different access rights for different databases/tables...?? if this gets confusing, can i bring the questions back to this list..??? and

Re: basic mysql setup

2004-05-16 Thread Scott Haneda
on 05/16/2004 01:15 AM, bruce at [EMAIL PROTECTED] wrote: but this brings to mind a question. is it possible to have multiple users accessing the phpMyAdmin app, with each having different access rights for different databases/tables...?? Yes, that's exactly what it does, you basically assign

Re: optimizing inserts

2004-05-16 Thread Jigal van Hemert
data points. I don't want duplicate entries, mostly due to sections of the log accidentally being uploaded twice. I am currently doing a Ok, so it is EXACTLY the same data that might be inserted twice? - Make a UNIQUE index for the relevant column(s) that uniquely identify a record. - Use

Re: Automatically optimizing a table - how should I so this?

2004-05-16 Thread Per Andreas Buer
Joshua Beall [EMAIL PROTECTED] writes: Daniel Kasak [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is there any particular reason why you think the table will need optimizing, or do you just want everything to be super-optimized? Because when I pull up phpMyAdmin, and it says

Re: Automatically optimizing a table - how should I so this?

2004-05-16 Thread Joshua Beall
Per Andreas Buer [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Joshua Beall [EMAIL PROTECTED] writes: Daniel Kasak [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is there any particular reason why you think the table will need optimizing, or do you just want

Re: optimizing inserts

2004-05-16 Thread beacker
Ron Gilbert [EMAIL PROTECTED] writes: It currently takes 15 or 20 minutes to run though a 10K to 20K GPS track logs. This seems too long to me. I took out the INSERTS to just to make sure it wasn't my PHP scripts, and they run in a few seconds without the MySQL calls. Doing a lot of inserts

Re: optimizing inserts

2004-05-16 Thread Bill Allaire
On May 16, 2004, at 1:15 AM, Ron Gilbert wrote: I have a table that is: CREATE TABLE GPSData ( ID int(10) unsigned NOT NULL auto_increment, Lat decimal(9,5) default '0.0', Lon decimal(9,5) default '0.0', TDate datetime default NULL, PRIMARY KEY (ID), UNIQUE KEY ID (ID), KEY

User permissions error on CREATE TABLE

2004-05-16 Thread Randall Perry
I've got a user, joe, who has all privileges on database 'joe' except GRANT. I gave permissions to joe using this command: GRANT ALL ON joe TO [EMAIL PROTECTED] But if I'm logged in as joe to the joe db and try to create a table, I get the error: ERROR 1142: create command denied to user:

Re: User permissions error on CREATE TABLE

2004-05-16 Thread Randall Perry
Never mind. Didn't have 'localhost' in Db table 'Host' field for the database. I've got a user, joe, who has all privileges on database 'joe' except GRANT. I gave permissions to joe using this command: GRANT ALL ON joe TO [EMAIL PROTECTED] But if I'm logged in as joe to the joe db and

Select distinct year from unix timestamp

2004-05-16 Thread T. H. Grejc
Hello, I'm trying to select all distinct years from a unixtimestamp field in MySQL database (3.23.56). I have a query: SELECT DISTINCT YEAR(date_field) As theYear FROM table but PHP gives me an empty array. What am I doing wrong? TNX -- MySQL General Mailing List For list archives:

RE: Select distinct year from unix timestamp

2004-05-16 Thread Dathan Vance Pattishall
R u sure your printing out the correct array (hash) field? Did you connect to the db? Is mysql_error reporting an error? DVP Dathan Vance Pattishall http://www.friendster.com -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of T. H. Grejc Sent: Sunday, May

Tcp/ip connections fail

2004-05-16 Thread Randall Perry
In the Db table I've got an entry for Db = test, user = dummy, host = ''. In the Host table I've got several entries for Db = test with different Host entries, one of which is localhost. Another is an IP on the same server that's running mysqld. Another is a remote host. I've got skip-networking

Re: Select distinct year from unix timestamp

2004-05-16 Thread John Fawcett
From: T. H. Grejc Hello, I'm trying to select all distinct years from a unixtimestamp field in MySQL database (3.23.56). I have a query: SELECT DISTINCT YEAR(date_field) As theYear FROM table but PHP gives me an empty array. What am I doing wrong? TNX I think you need this

Converting to Percentages

2004-05-16 Thread David Blomstrom
Alright, I've finally got table joins figured out, and I'm now wrestling with a more advanced operation... Suppose you have a table with four columns. The first three colums each list a numeral, and the fourth column lists the sum of those numerals, like this: 3 | 3 | 4 | 10 10 | 10 | 5 | 25

4.0.18 vs 4.1.1

2004-05-16 Thread Ron Gilbert
I am going to upgrade from 3.23 and was wondering if 4.1.1 is stable enough? This is just for some personal websites, nothing mission critical, but on the other hand, I don't want to deal with endless problems. The reason that I'd like to go to 4.1.1 is for sub-selects, otherwise I'd stick

Re: 4.0.18 vs 4.1.1

2004-05-16 Thread Josh Trutwin
On Sun, 16 May 2004 13:51:29 -0700 Ron Gilbert [EMAIL PROTECTED] wrote: I am going to upgrade from 3.23 and was wondering if 4.1.1 is stable enough? This is just for some personal websites, nothing mission critical, but on the other hand, I don't want to deal with endless problems.

Re: Select distinct year from unix timestamp

2004-05-16 Thread Paul DuBois
At 22:27 +0200 5/16/04, John Fawcett wrote: From: T. H. Grejc Hello, I'm trying to select all distinct years from a unixtimestamp field in MySQL database (3.23.56). I have a query: SELECT DISTINCT YEAR(date_field) As theYear FROM table but PHP gives me an empty array. What am I doing wrong?

Re: Select distinct year from unix timestamp

2004-05-16 Thread T. H. Grejc
John Fawcett wrote: From: T. H. Grejc Hello, I'm trying to select all distinct years from a unixtimestamp field in MySQL database (3.23.56). I have a query: SELECT DISTINCT YEAR(date_field) As theYear FROM table but PHP gives me an empty array. What am I doing wrong? TNX I think you need this

Re: 4.0.18 vs 4.1.1

2004-05-16 Thread Paul DuBois
At 13:51 -0700 5/16/04, Ron Gilbert wrote: I am going to upgrade from 3.23 and was wondering if 4.1.1 is stable enough? This is just for some personal websites, nothing mission critical, but on the other hand, I don't want to deal with endless problems. The reason that I'd like to go to 4.1.1

Re: Select distinct year from unix timestamp

2004-05-16 Thread T. H. Grejc
Paul DuBois wrote: At 22:27 +0200 5/16/04, John Fawcett wrote: From: T. H. Grejc Hello, I'm trying to select all distinct years from a unixtimestamp field in MySQL database (3.23.56). I have a query: SELECT DISTINCT YEAR(date_field) As theYear FROM table but PHP gives me an empty array. What

Re: Select distinct year from unix timestamp

2004-05-16 Thread John Fawcett
From: T. H. Grejc How can I add more fields to query. If I write: SELECT DISTINCT FROM_UNIXTIME(created, '%Y %M'), other_field FROM table_name ORDER BY created DESC I loose distinction (all dates are displayed). TNX I don't think distinction is lost. All the rows should still be distinct

Re: [SPAM]Re: Select distinct year from unix timestamp

2004-05-16 Thread John Fawcett
From: Paul DuBois At 22:27 +0200 5/16/04, John Fawcett wrote: Year does not operate on a unix timestamp. Sure it does: mysql select t, year(t) from tsdemo1; ++-+ | t | year(t) | ++-+ | 20010822133241 |2001 | |

Re: Select distinct year from unix timestamp

2004-05-16 Thread T. H. Grejc
John Fawcett wrote: From: T. H. Grejc How can I add more fields to query. If I write: SELECT DISTINCT FROM_UNIXTIME(created, '%Y %M'), other_field FROM table_name ORDER BY created DESC I loose distinction (all dates are displayed). TNX I don't think distinction is lost. All the rows should still

Re: [SPAM]Re: Select distinct year from unix timestamp

2004-05-16 Thread Paul DuBois
At 0:25 +0200 5/17/04, John Fawcett wrote: From: Paul DuBois At 22:27 +0200 5/16/04, John Fawcett wrote: Year does not operate on a unix timestamp. Sure it does: mysql select t, year(t) from tsdemo1; ++-+ | t | year(t) | ++-+ |

Re: e: Select distinct year from unix timestamp

2004-05-16 Thread John Fawcett
From: Paul DuBois You're right. You'd have to apply YEAR() to FROM_UNIXTIME(UNIX_TIMESTAMP(arg)). and you can avoid YEAR() altogether by using a format string. in FROM_UNIXTIME() John -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Re: Select distinct year from unix timestamp

2004-05-16 Thread John Fawcett
From: T. H. Grejc I'm creating news archive and it should be sorted by months: January 2004 (news count is 56) February 2004 (48) ... So you need to use GROUP BY and COUNT. The format is like this: select monthandyear,count(othercolumn) from t group by monthandyear in your case

Re: e: Select distinct year from unix timestamp

2004-05-16 Thread Paul DuBois
At 0:38 +0200 5/17/04, John Fawcett wrote: From: Paul DuBois You're right. You'd have to apply YEAR() to FROM_UNIXTIME(UNIX_TIMESTAMP(arg)). and you can avoid YEAR() altogether by using a format string. in FROM_UNIXTIME() Right again. :-) -- Paul DuBois, MySQL Documentation Team Madison,

Re: Converting to Percentages

2004-05-16 Thread Roger Baklund
* David Blomstrom Suppose you have a table with four columns. The first three colums each list a numeral, and the fourth column lists the sum of those numerals, like this: 3 | 3 | 4 | 10 10 | 10 | 5 | 25 Now, suppose you wanted to also display those numerals as percentages: Reds | Blues

Re: 4.0.18 vs 4.1.1

2004-05-16 Thread Ron Gilbert
If I switch to 5.0, are there any issues with PHP? Will my 4.2.2 version of PHP work just fine with 5.0? I also have a Windows C++ program that talked to mysql over the Internet via the C API, will it still work after the 5.0 (or the 4.1.1) upgrade? I'm not doing anything fancy with it.

Counting multiple tables

2004-05-16 Thread Gustavo Andrade
I want to know if its possible to count the total records of multiple tables: Example: I have 3 tables. I want to know the total records of each table using only 1 query. Is that possible? _ Quer ter um fórum para seu clan de Starcraft/BroodWar,

Re: e: Select distinct year from unix timestamp

2004-05-16 Thread Paul DuBois
At 17:50 -0500 5/16/04, Paul DuBois wrote: At 0:38 +0200 5/17/04, John Fawcett wrote: From: Paul DuBois You're right. You'd have to apply YEAR() to FROM_UNIXTIME(UNIX_TIMESTAMP(arg)). and you can avoid YEAR() altogether by using a format string. in FROM_UNIXTIME() Right again. :-) I was curious

Re: 4.0.18 vs 4.1.1

2004-05-16 Thread Josh Trutwin
On Sun, 16 May 2004 16:02:06 -0700 Ron Gilbert [EMAIL PROTECTED] wrote: If I switch to 5.0, are there any issues with PHP? Will my 4.2.2 version of PHP work just fine with 5.0? I also have a Windows C++ program that talked to mysql over the Internet via the C API, will it still work after

Re: Converting to Percentages

2004-05-16 Thread David Blomstrom
--- Roger Baklund [EMAIL PROTECTED] wrote: use test; Yikes - you lost me on the second word! Are you talking about the sort of test that's described on this page?: http://dev.mysql.com/doc/mysql/en/running_mysqltest.html create table pct (red int,blue int,gray int); insert into pct values

Fw: Setup MySQL in RedHat ES 3

2004-05-16 Thread jschung
Is it really nobody has similar experience? - Forwarded by Joseph S CHUNG/ITSD/HKSARG on 2004-05-17 09:46 - [EMAIL PROTECTED]

RE: Counting multiple tables

2004-05-16 Thread Dathan Vance Pattishall
SHOW TABLE STATUS to get the count of each table, then your application adds the number in the Rows field from each of the tables returned. DVP Dathan Vance Pattishall http://www.friendster.com -Original Message- From: Gustavo Andrade [mailto:[EMAIL PROTECTED] Sent: Sunday,

[Setup language MySQL ??]

2004-05-16 Thread richard
Hi, Is it possible to setup MySQL in french ? For example, when I write and execute SELECT monthname(mydate) from mytable, it return the month name of mydate (march, april, may, ). I'd like it return mars, avril, mai,. = the month is french. So, is it possible ? How ? Thank for your

Re: Converting to Percentages

2004-05-16 Thread Michael Stassen
David Blomstrom wrote: --- Roger Baklund [EMAIL PROTECTED] wrote: use test; Yikes - you lost me on the second word! Are you talking about the sort of test that's described on this page?: http://dev.mysql.com/doc/mysql/en/running_mysqltest.html No. use test tells mysql to work in the test