Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Reindl Harald
Am 28.03.2013 19:43, schrieb Rick James: > I have never traced a performance issue in InnoDB to the need for OPTIMIZE. but with files_per_table you can get back GIGABTYES of disk-space depending on your backups this may be relevant > The Query Cache is irrelevant to this discussion it is NOT b

RE: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Rick James
he need for OPTIMIZE. The Query Cache is irrelevant to this discussion. > -Original Message- > From: Bheemsen Aitha [mailto:pgb...@motorola.com] > Sent: Thursday, March 28, 2013 8:59 AM > To: Reindl Harald > Cc: mysql@lists.mysql.com > Subject: Re: Defragmentation of

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Reindl Harald
optimizeall() is simply called from a cron script the mysql-wrapper does not exist in public but you get the table overhead with "SHOW TABLE STATUS" as you can see below Am 28.03.2013 16:59, schrieb Bheemsen Aitha: > I would like to implement your strategy of optimizing tables. Can you please >

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Bheemsen Aitha
Hi Reindl, I would like to implement your strategy of optimizing tables. Can you please share how are running these scripts? Where does the mysql-wrapper-class exist? And what parameters need to be passed? Thanks Bheem Aitha MySQL and Oracle DBA On Mar 28, 2013 4:43 AM, "Reindl Harald" wrote: >

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Manuel Arostegui
Hello Antonio, As Reindl said, it is recommended but it shouldnt be done just everyday if your tables are quite big and you use query cache. If you do have lot of writes and deletes (depending on what you consider a lot), your table will indeed have lot of 'blank rows' which eat disk space. Opti

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Antonio Fernández Pérez
Hello Manuel, Exactly. My objective doing performance MySQL it isn't to free disk space (it isn't the problem). I would like to get a good performance using cache and setting good values to configuration variables. I will defrag tables once per month. Best regards, Antonio.

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Antonio Fernández Pérez
Ok. Thank you very much. Best regards, Antonio.

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Reindl Harald
Am 28.03.2013 12:28, schrieb Antonio Fernández Pérez: > So, is it not necessary (not recommended) to defragment tables if I have a > lot of write operations (writing or deleting)? it is recommended but not permanently and not blindly i use a daily cronjob which runs optimize table on tables wit

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Antonio Fernández Pérez
Hi Reindl, Thanks for your reply. So, is it not necessary (not recommended) to defragment tables if I have a lot of write operations (writing or deleting)? Best regards, Antonio.

Re: Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Reindl Harald
Am 28.03.2013 12:09, schrieb Antonio Fernández Pérez: > Hi everybody, > > Once I have done the defragmentation of MySQL tables, mysql-tunner.pl suggests > me do it again. Is this correct? I think that the idea is that in the > result of the script there are not fragmented tables ... > > Any ide

Defragmentation of MySQL tables, how many times have I to do it?

2013-03-28 Thread Antonio Fernández Pérez
Hi everybody, Once I have done the defragmentation of MySQL tables, mysql-tunner.pl suggests me do it again. Is this correct? I think that the idea is that in the result of the script there are not fragmented tables ... Any ideas? Thank you very much. Best regards, Antonio.

Re: How many pager command within mysql command line client?

2010-08-25 Thread Dan Nelson
In the last episode (Aug 25), Moon's Father said: > Hi. >For example, entering mysql command line client, >mysql> pager more ( or pager md5sum and so on.) > >I want to know how many command the 'pager' follows? Any reply will > be big appreciated.

Re: How many pager command within mysql command line client?

2010-08-24 Thread Moon's Father
I know, all the shell command can do this. Thanks. 2010/8/25 Moon's Father > Hi. >For example, entering mysql command line client, >mysql> pager more ( or pager md5sum and so on.) > >I want to know how many command the 'pager' follows? Any reply will be > big appreciated. >

How many pager command within mysql command line client?

2010-08-24 Thread Moon's Father
Hi. For example, entering mysql command line client, mysql> pager more ( or pager md5sum and so on.) I want to know how many command the 'pager' follows? Any reply will be big appreciated.

Re: How many users access MySQL

2008-12-22 Thread Andy Shellam
Hi If you don't mind keeping the general log, you can periodically parse it. I read that MySQL 5.1 (or some later version) will have an option to keep the general log in a table - that will be very handy. Be careful if you use this option (logging to a table) - while it's an extremely att

Re: How many users access MySQL

2008-12-21 Thread Chandru
008, you wrote: > > Hi, >> >> Is there any way to figure out how many, if any, people are accessing and >> using our MySQL server? >> >> I am aware of the SHOW PROCESSLIST command, but this one only shows how >> many processes are currently running. I would

Re: How many users access MySQL

2008-12-21 Thread Jim Lyons
there any way to figure out how many, if any, people are accessing and > using our MySQL server? > > I am aware of the SHOW PROCESSLIST command, but this one only shows how > many processes are currently running. I would like to register this > information, and be able to analy

Re: How many users access MySQL

2008-12-21 Thread mos
At 02:32 PM 12/21/2008, you wrote: Hi, Is there any way to figure out how many, if any, people are accessing and using our MySQL server? I am aware of the SHOW PROCESSLIST command, but this one only shows how many processes are currently running. I would like to register this information

How many users access MySQL

2008-12-21 Thread Avraham, Shuly
Hi, Is there any way to figure out how many, if any, people are accessing and using our MySQL server? I am aware of the SHOW PROCESSLIST command, but this one only shows how many processes are currently running. I would like to register this information, and be able to analyze it later

Re: How many key buffer size should be allocate?

2008-09-08 Thread David Ashley
On Mon, Sep 8, 2008 at 12:47 AM, Dan Nelson <[EMAIL PROTECTED]> wrote: > In the last episode (Sep 08), Yi Wang said: > > According to the mysql manual, I changed key_buffer_size from 8M to > > 512M. But In mysql administrator, key buffer hitrate seems stay > > unchanged. And key buffer usage alway

Re: How many key buffer size should be allocate?

2008-09-07 Thread Yi Wang
On Mon, Sep 8, 2008 at 12:47 PM, Dan Nelson <[EMAIL PROTECTED]> wrote: > In the last episode (Sep 08), Yi Wang said: >> According to the mysql manual, I changed key_buffer_size from 8M to >> 512M. But In mysql administrator, key buffer hitrate seems stay >> unchanged. And key buffer usage always be

Re: How many key buffer size should be allocate?

2008-09-07 Thread Dan Nelson
In the last episode (Sep 08), Yi Wang said: > According to the mysql manual, I changed key_buffer_size from 8M to > 512M. But In mysql administrator, key buffer hitrate seems stay > unchanged. And key buffer usage always below 4M. > > The total db size is about 200M. And the system's load is sligh

How many key buffer size should be allocate?

2008-09-07 Thread Yi Wang
| 357751 | | Key_blocks_used| 3820| | Key_read_requests | 2170473 | | Key_reads | 11343 | | Key_write_requests | 6339| | Key_writes | 1693| ++-+ 7 rows in set (0.00 sec) My question is: In a light load system, how many key bu

how: many-to-many with LEFT JOIN

2008-03-10 Thread dr_pompeii
Hello guys before to a last doom requeriment, i used to work with this type of relation ArticuloNoAuto (english ArticleNoCar like MotorCycle or Motor) and CabeceraComprobanteVenta (like a header of Receipt of some sell "SalesReceiptHeader") so 1 CabeceraComprobanteVenta can [b]sell/contain one

Re: How many records in table?

2006-12-06 Thread Jake Peavy
On 12/6/06, Mikhail Berman <[EMAIL PROTECTED]> wrote: -Original Message- > From: Dotan Cohen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 06, 2006 3:37 PM > To: MySQL General > Subject: How many records in table? > > What's a quick query to deter

Re: How many records in table?

2006-12-06 Thread Dotan Cohen
On 06/12/06, Mikhail Berman <[EMAIL PROTECTED]> wrote: Use SELECT in with count(*) SELECT count(*) from YOUR_TABLE Mikhail Berman Thanks, Mikhail. Will do. Dotan Cohen http://what-is-what.com/what_is/xss.html http://english-lyrics.com/ -- MySQL General Mailing List For list archives: htt

RE: How many records in table?

2006-12-06 Thread Mikhail Berman
Use SELECT in with count(*) SELECT count(*) from YOUR_TABLE Mikhail Berman -Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 06, 2006 3:37 PM To: MySQL General Subject: How many records in table? What's a quick query to determine how

How many records in table?

2006-12-06 Thread Dotan Cohen
What's a quick query to determine how many records a given table contains? I don't think that a SELECT query is appropriate, as I don't intend on doing anything with the data selected. Note that I'm interfacing with MySQL via php, if that matters. Thanks. Dotan Cohen htt

Re: How many colums should a index contain?

2006-11-04 Thread John . H
indexes on a table to optimise all of your queries. Sometimes this makes the indexes much larger than the data itself. Hope this helps, Andy > -Original Message- > From: Brent Baisley [mailto:[EMAIL PROTECTED] > Sent: 03 November 2006 16:04 > To: John.H; mysql > Subj

RE: How many colums should a index contain?

2006-11-03 Thread Andy Eastham
much larger than the data itself. Hope this helps, Andy > -Original Message- > From: Brent Baisley [mailto:[EMAIL PROTECTED] > Sent: 03 November 2006 16:04 > To: John.H; mysql > Subject: Re: How many colums should a index contain? > > I think you want to create separate

Re: How many colums should a index contain?

2006-11-03 Thread Brent Baisley
it would still have to search half the database, might as well search the whole thing. Create separate indexes on the fields you mostly search on. - Original Message - From: "John.H" <[EMAIL PROTECTED]> To: "mysql" Sent: Thursday, November 02, 2006 3:25

Re: How many colums should a index contain?

2006-11-02 Thread Chris
John.H wrote: but why when I do a query with 'explain' ,it shows that the 'possible_keys' is null or primary rather than the index I just create Please always CC the list - you will get much faster responses and others will be able to offer their input as well. Post the query, the explain

Re: How many colums should a index contain?

2006-11-02 Thread Chris
John.H wrote: I have two tables and I must do : select `id`,`bid`,`title`,`link`,`bname` from table1 where `bid` in ( ...this is a subquery in table2 ) should I create a index (`id`,`bid`,`title`,`link`,`bname`) so that my query will take less time or should a index contain so many colums? I

How many colums should a index contain?

2006-11-02 Thread John . H
I have two tables and I must do : select `id`,`bid`,`title`,`link`,`bname` from table1 where `bid` in ( ...this is a subquery in table2 ) should I create a index (`id`,`bid`,`title`,`link`,`bname`) so that my query will take less time or should a index contain so many colums?

Re: How many databases does MySQL 5 support?

2006-10-18 Thread Philip Mather
Dan, Cheers for doing the translating, I'm one of those beardy types they keep locked in a dark room writing search engines so my English isn't spectacular ;^) As Rolando points out your file system may place a limit on the number of files or directories, but to my knowledge XFS has no su

Re: Re: How many databases does MySQL 5 support?

2006-10-18 Thread Dan Buettner
e info, but my question is how many databases, not so much how many rows per table or how big the database can be... I mean, how many "create database ABC" can I do before MySQL says "sorry, you can't have more than X databases". Say I create 1000 empty MySQL databas

Re: How many databases does MySQL 5 support?

2006-10-18 Thread Rolando Edwards
Each Schema is a Subfolder under the datadir of the MySQL Instance However many folders an operating system permits is how many schemas can be created - Original Message - From: Dominik Klein <[EMAIL PROTECTED]> To: mysql@lists.mysql.com Sent: Wednesday, October 18, 2006 10:05:17

Re: How many databases does MySQL 5 support?

2006-10-18 Thread Dominik Klein
John M.Brown schrieb: Thanks for the info, but my question is how many databases, not so much how many rows per table or how big the database can be... I mean, how many "create database ABC" can I do before MySQL says "sorry, you can't have more than X databases".

Re: How many databases does MySQL 5 support?

2006-10-18 Thread John M . Brown
Thanks for the info, but my question is how many databases, not so much how many rows per table or how big the database can be... I mean, how many "create database ABC" can I do before MySQL says "sorry, you can't have more than X databases". Say I create 1000 empty

Re: How many databases does MySQL 5 support?

2006-10-18 Thread Philip Mather
John, How many databases does a single instance of MySQL Server 5.x support? I suspect you'll get a bit of a , with a 64bit machine there's a limit of 4.2 billion rows per table and with an XFS file system 8EB per table, there's a join limit specified somewhere but I don'

How many databases does MySQL 5 support?

2006-10-18 Thread John M . Brown
I've looked as many places as I can think of and can't find a direct answer to my question: How many databases does a single instance of MySQL Server 5.x support? Is this because there is no logical limit? -- MySQL General Mailing List For list archives: http://lists.mysql.co

Re: How many columns??

2006-08-03 Thread Miles Thompson
At 06:32 AM 8/3/2006, Ratheesh K J wrote: Hello all, Just wanted to know how many columns are preferable in table. At present we are having nearly 50 - 60 columns in some of the tables. Is this ok or should we be splitting the tables for normalization. If we really need to split then how

How many columns??

2006-08-03 Thread Ratheesh K J
Hello all, Just wanted to know how many columns are preferable in table. At present we are having nearly 50 - 60 columns in some of the tables. Is this ok or should we be splitting the tables for normalization. If we really need to split then how better would it be in terms of performance

Second call: How many innodb_log_file and how many groups

2005-04-19 Thread Duhaime Johanne
Hello I have sent this e-mail 2 weeks ago and did not get any answers. Please allow me to give a second try. I have Mysql 4.1.7 on Solaris / innodb tables I have 2 innodb_log_files of 100M each. A group of statements (19000 insert) does that both logfiles are stamped with the same time. It might

How many innodb_log_file and how many groups

2005-04-11 Thread Duhaime Johanne
Hello I have Mysql 4.1.7 on Solaris / innodb tables I have 2 innodb_log_files of 100M each. A group of statements (19000 insert) does that both logfiles are stamped with the same time. It might be because one has just finished filled and the other start or it might be because they both rotated

Re: How to determine how many ibdata files are needed?

2005-03-14 Thread Gleb Paharenko
Hello. > Is there any advantages to having one single ibdata file, or is it better to > have several, and if so, how many? As said at: http://dev.mysql.com/doc/mysql/en/innodb-configuration.html You may get some performance improving if you put the files on the different di

How to determine how many ibdata files are needed?

2005-03-11 Thread Alfredo Cole
, and if so, how many? If you could point me to a url where I can read about this, I would greatly appreciate it. Thank you and regards. -- Alfredo J. Cole Grupo ACyC www.acyc.com - www.clshonduras.com - SolCom - www.acycdomains.com -- MySQL General Mailing List For list archives: http

Re: How many rows?

2004-11-15 Thread Gleb Paharenko
from sale where user_id = 1 GROUP BY id; > > I need to know how many rows or how many entries this query returns. I > tried to use "count" and "sum". But the result is wrong. > > I want to be able to make select and know how many rows this query > re

Re: How many rows?

2004-11-14 Thread Michael Stassen
Your sample query doesn't really make sense, but perhaps you are looking for SQL_CALC_FOUND_ROWS. From the manual, "SQL_CALC_FOUND_ROWS (available in MySQL 4.0.0 and up) tells MySQL to calculate how many rows there would be in the result set, disregarding any LIMIT clause. The numb

Re: How many rows?

2004-11-14 Thread Michael Satterwhite
On Saturday 13 November 2004 06:40 am, Jerry Swanson wrote: > This is my query > select id, status from sale where user_id = 1 GROUP BY id; > > I need to know how many rows or how many entries this query returns. I > tried to use "count" and "sum". But the res

How many rows?

2004-11-13 Thread Jerry Swanson
This is my query select id, status from sale where user_id = 1 GROUP BY id; I need to know how many rows or how many entries this query returns. I tried to use "count" and "sum". But the result is wrong. I want to be able to make select and know how many rows this query

Re: How many UNIQUE Columns per table

2004-09-16 Thread Rhino
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 16, 2004 10:11 AM Subject: How many UNIQUE Columns per table Hi all, I have a query , Please can someone just tell me the details of restrictions on how many maximum no of UNIQUE Columns can be there per table and how many

How many UNIQUE Columns per table

2004-09-16 Thread Mulley, Nikhil
Hi all, I have a query , Please can someone just tell me the details of restrictions on how many maximum no of UNIQUE Columns can be there per table and how many maximum PRIMARY KEY Columns,HOW many maximumum AUTO_INCREMENT Columns can be there per table

Re: Need to know how many current connections

2004-05-02 Thread Dan Nelson
In the last episode (May 02), Mailing List Receiver said: > We weekly rotate the mysqld log. I need to find a way to query the > server to see how many current connections with clients there are, > so I can wait to restart the server when the number of connections > is zero. mysqla

Need to know how many current connections

2004-05-02 Thread Mailing List Receiver
We weekly rotate the mysqld log. I need to find a way to query the server to see how many current connections with clients there are, so I can wait to restart the server when the number of connections is zero. mysqladmin doesn't seem to have this capability. Is there any other way?

How many clients connected to mysql ?

2004-01-18 Thread Timotius Alfa
Hi Ron, how many clients can be connected to mysql ? Is there any setup for client connections ? where can I find it ? Timotius Alfa - Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes

Re: How many records can a single MySql Table Hold.

2003-08-26 Thread Vinay
Apart from "my.cnf" MySQL also provide you with my-huge.cnf, my-large.cnf, my-medium.cnf and my-small.cnf. Files whih are used for diferrent sizes of datadases. Check them out it can help. if you find the conf you r looking for in one of the cnf file you just have to rename it to my.cnf. Vinay

Re: How many records can a single MySql Table Hold.

2003-08-25 Thread Antony Dovgal
On Mon, 25 Aug 2003 10:05:32 +0530 (IST) "Rupak Banerjee" <[EMAIL PROTECTED]> wrote: > > Hi, > I have a mysql database running on Mysql version 3.23.53 on a Red Hat > Linux 7.2. In the database there is a single table with over 150,000 > records. Unfortunately, the performance of that table is

How many records can a single MySql Table Hold.

2003-08-25 Thread Rupak Banerjee
Hi, I have a mysql database running on Mysql version 3.23.53 on a Red Hat Linux 7.2. In the database there is a single table with over 150,000 records. Unfortunately, the performance of that table is very poor, comparing to other tables in the same database. Can somebody help me out. Thanks, R

Re: How many records can a single MySql Table Hold.

2003-08-25 Thread Rupak Banerjee
Hi Jeremy, Thankx for the solution..but can you please tell me how to increase the key buffer fo mysql ?? Its urgent...we are facing a lot of problems. Thankx once again for the solution. > On Fri, Aug 22, 2003 at 10:55:49AM +0530, Rupak Banerjee wrote: >> Hi, >> >> We are using MySql ve

AutoReply: Re: How many records can a single MySql Table Hold.

2003-08-22 Thread educredit
Thank you for the Email. I will contact you within 24 hours. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: How many records can a single MySql Table Hold.

2003-08-22 Thread Jeremy Zawodny
On Fri, Aug 22, 2003 at 10:55:49AM +0530, Rupak Banerjee wrote: > Hi, > > We are using MySql version 3.27.53 on a Red Hat Linux platform version > 7.2. For the past couple of months we are noticing that the performance > of the server has gone down very badly. Every, single insertion is > taking

Re: How many records can a single MySql Table Hold.

2003-08-22 Thread Egor Egorov
"Rupak Banerjee" <[EMAIL PROTECTED]> wrote: > Hi, > We are using MySql version 3.27.53 on a Red Hat Linux platform version > 7.2. For the past couple of months we are noticing that the performance > of the server has gone down very badly. Every, single insertion is > taking a hell lot of time.The

Re: How many records can a single MySql Table Hold.

2003-08-22 Thread Jose Miguel Pérez
Hi Rupak! > We are using MySql version 3.27.53 on a Red Hat Linux platform version > 7.2. For the past couple of months we are noticing that the performance > of the server has gone down very badly. Every, single insertion is > taking a hell lot of time.The particular table has only 150,000 reco

How many records can a single MySql Table Hold.

2003-08-21 Thread Rupak Banerjee
Hi, We are using MySql version 3.27.53 on a Red Hat Linux platform version 7.2. For the past couple of months we are noticing that the performance of the server has gone down very badly. Every, single insertion is taking a hell lot of time.The particular table has only 150,000 records. Is there

AW: How many join do I need for a query on 3 table?

2003-08-16 Thread B. Fongo
a lot Roger! Babale -Ursprüngliche Nachricht- Von: Roger Baklund [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 16. August 2003 14:32 An: [EMAIL PROTECTED] Cc: B. Fongo Betreff: Re: How many join do I need for a query on 3 table? * B. Fongo > I was able to extra the information from the

Re: How many join do I need for a query on 3 table?

2003-08-16 Thread Roger Baklund
* B. Fongo > I was able to extra the information from the first 2 tables yesterday > using following query: > > SELECT Customers.Name, Customers.City, Orders.Product, > Order.Price FROM Customers inner join Orders USING (cust_id) WHERE > customers.cust_id = "2" > > -

How many join do I need for a query on 3 table?

2003-08-16 Thread B. Fongo
Hello again! I was able to extra the information from the first 2 tables yesterday using following query: SELECT Customers.Name, Customers.City, Orders.Product, Order.Price FROM Customers inner join Orders USING (cust_id) WHERE customers.cust_id = "2" --

Re: 2-way replication..how many slaves?

2003-06-23 Thread Jeremy Zawodny
On Mon, Jun 23, 2003 at 03:19:05AM -0400, M Lists wrote: > > I'm researching a specific network design and have some questions that may > involve 2-way replication. Ok... > I have one master mysql server doing 1 way replication to a large > number of remotely located slaves. Each slave serves a

2-way replication..how many slaves?

2003-06-23 Thread M Lists
I'm researching a specific network design and have some questions that may involve 2-way replication. I have one master mysql server doing 1 way replication to a large number of remotely located slaves. Each slave serves a number of proprietary software clients running inside a private network.

Re: How Many

2003-04-02 Thread Eric Calvert
On Wed, 02 Apr 2003 11:10:04 -0600 gerald_clark <[EMAIL PROTECTED]> wrote: > AChecks for empty > B Checks for empty > AUpdates > AReads ( and owns record ) > BUpdates > BReads ( and owns record ) > Reality says to do it more like this A Write lock on table B Tries to

Re: How Many

2003-04-02 Thread Cal Evans
<[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 11:59 AM Subject: RE: How Many > Just noticed this thread. > > Here is another method, still using the 'userid' method, but slightly > differently; it claims a job immediately. You then have to run a select by >

RE: How Many

2003-04-02 Thread GERST, MICHAEL (SBCSI)
ike get_last_update or mysql_affected_rows to gather information on what the UPDATE affected rather than another select. This was just quick and generic. -Mike -Original Message- From: Cal Evans [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 11:12 AM To: gerald_clark C

Re: How Many

2003-04-02 Thread gerald_clark
<[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 11:10 AM Subject: Re: How Many AChecks for empty B Checks for empty AUpdates AReads ( and owns record ) BUpdates BReads ( and owns record ) Now What? Cal Evans wrote: No. You check for empty. update, check

Re: How Many

2003-04-02 Thread Cal Evans
last man wins. - Original Message - From: "gerald_clark" <[EMAIL PROTECTED]> To: "Cal Evans" <[EMAIL PROTECTED]> Cc: "MySQL" <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 11:10 AM Subject: Re: How Many > AChecks for empty &

Re: How Many

2003-04-02 Thread gerald_clark
lt;[EMAIL PROTECTED]>; "MySQL" <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 9:22 AM Subject: Re: How Many Cal Evans wrote: Ed, 1: It depends on your hardware. I don't think MySQL imposes a restriction. 2: It doesn't work that way. It's not like V

Re: How Many

2003-04-02 Thread Cal Evans
- From: "gerald_clark" <[EMAIL PROTECTED]> To: "Cal Evans" <[EMAIL PROTECTED]> Cc: "Ed Kiefer" <[EMAIL PROTECTED]>; "MySQL" <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 9:22 AM Subject: Re: How Many > > > Cal Evans w

Re: How Many

2003-04-02 Thread gerald_clark
-- Original Message - From: "Ed Kiefer" <[EMAIL PROTECTED]> To: "MySQL" <[EMAIL PROTECTED]> Sent: Tuesday, April 01, 2003 7:40 AM Subject: How Many How many people can be accessing the same mysql database at the same time? Can several people work on the

Re: How Many

2003-04-01 Thread Cal Evans
nutes, 2 hours, 3 days, etc) old, I invalidate the lock by going to step 2 anyhow. Clear as mud? =C= - Original Message - From: "Ed Kiefer" <[EMAIL PROTECTED]> To: "MySQL" <[EMAIL PROTECTED]> Sent: Tuesday, April 01, 2003 7:40 AM Subject: How Many > How

How Many

2003-04-01 Thread Ed Kiefer
How many people can be accessing the same mysql database at the same time? Can several people work on the same record at the same time? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: How many columns does MySQL Support?

2002-10-16 Thread Jan Steinman
>From: "Andrew Kuebler" <[EMAIL PROTECTED]> > >2) Is it just as fast with Mysql to access 10 fields in a table with 10 >columns as it would be to access those same 10 fields among let's say 90 >other fields in a 100 column table? Are you certain that performance should be your primary concern her

Re: How many columns does MySQL Support?

2002-10-16 Thread Brent Baisley
I'm not sure what the limit is. MySQL limits tend to be dictated by the OS that is being used. The more columns you have the larger the database file will be. You should try to avoid having many empty columns in a database design, even if you are using varchar instead of char. Try to think ahe

How many columns does MySQL Support?

2002-10-15 Thread Andrew Kuebler
Two questions: 1) How many columns does MySQL support per table? 2) Is it just as fast with Mysql to access 10 fields in a table with 10 columns as it would be to access those same 10 fields among let's say 90 other fields in a 100 column table? Would speed only be reduced if I pulled a

Re: How many days out...

2002-10-01 Thread Paul DuBois
At 15:41 -0400 10/1/02, Chuck Payne wrote: >Hi, > >I am having problems get how many days out an invoice is from mysql. I have >try this. > >SELECT NOW()-summitted_date FROM table; > >But it not working as usually. So please guys a little help. What do you mean "not

How many days out...

2002-10-01 Thread Chuck Payne
Hi, I am having problems get how many days out an invoice is from mysql. I have try this. SELECT NOW()-summitted_date FROM table; But it not working as usually. So please guys a little help. So If an invoice was summitted on 9-26-02 then I should be able to see that 5 days. Chuck Payne Magi

InnoDB datafiles - how many is the limit?

2002-09-24 Thread Jason Baker
The subject pretty much says it all... is there a limit to the number of datafiles you can specify with the innodb_data_file_path parameter, and if so, what is it? I looked through the docs, didn't find anything, but with my boss looking over my shoulder I may have missed it. ;) (filterbait

Re: How Many Fields

2002-09-03 Thread Brent Baisley
I can't think of any reason to have that many fields. It really starts to make the databases structure unmanageable, or at least difficult and time consuming to manage. It also can make it very difficult to create a good, flexible search interface. Filemaker might be an exception because of the

How Many Fields

2002-09-03 Thread Brian Leyland
What is the limit on amount of fields in a MYSQL table. Access / lotus will only do 255, whereas Filemaker will do over Hopefully someone will tell me it is more than 459 (that is what I need in mine). Thanks Brian Leyland -

Re: How many MySQL tables can we open paralel

2002-06-08 Thread Dan Nelson
In the last episode (Jun 08), Shoshi & Iphtach Cohen said: > Hi experts, > > I appreciate if you could tell me how many MySQL tables we can open in > parallel. >From a client's point of view? Unlimited. Internally, mysql will only open "table_cache" number of

Re: How many MySQL tables can we open paralel

2002-06-08 Thread Bhavin Vyas
Message - From: "Shoshi & Iphtach Cohen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 08, 2002 2:00 PM Subject: How many MySQL tables can we open paralel > Hi experts, > > I appreciate if you could tell me how many MySQL tables we

How many MySQL tables can we open paralel

2002-06-08 Thread Shoshi & Iphtach Cohen
Hi experts, I appreciate if you could tell me how many MySQL tables we can open in parallel. In our application (BuildaGate Suite Technology) which is based on PHP & MySQL, there are strange situations of data loss, and we are looking for information on what are the limitations of an M

RE: how many tables can I create with one created MySql database?

2002-04-18 Thread Roger Baklund
; the directory. When table is created, MySQL creates file(s) on the > disk. So, the maximum number of tables is defined by OS > characteristics: how many files (subdirs) OS can handle for the > directory. > > This does not apply to InnoDB tables as they use different > storage

Re: RE: how many tables can I create with one created MySql database?

2002-04-18 Thread Egor Egorov
MySQL creates file(s) on the disk. So, the maximum number of tables is defined by OS characteristics: how many files (subdirs) OS can handle for the directory. This does not apply to InnoDB tables as they use different storage scheme. RB> Roger -- For technical support contracts, goto

Re: beginner question: how many queries via PHP are...

2002-02-17 Thread BD
At 08:33 PM 2/16/2002 , you wrote: >Hello > >I am new to the subject. I am experimenting in mysql via PHP with a nice >book (PHP and MySQL >Web development). My question is how many queries to mysql, made via PHP, >should considered >ok for efficiency. I know it has much t

Re: beginner question: how many queries via PHP are...

2002-02-16 Thread Craig Vincent
> I am new to the subject. I am experimenting in mysql via PHP with a nice > book (PHP and MySQL > Web development). My question is how many queries to mysql, made via > PHP, should considered > ok for efficiency. I know it has much to do with the size of databases, > but I wo

beginner question: how many queries via PHP are...

2002-02-16 Thread Nikolas
Hello I am new to the subject. I am experimenting in mysql via PHP with a nice book (PHP and MySQL Web development). My question is how many queries to mysql, made via PHP, should considered ok for efficiency. I know it has much to do with the size of databases, but I would like to get an

Re: TEXT field: How many characters does it hold

2001-12-31 Thread Steve Rapaport
http://www.mysql.com/doc/n/o/node_365.html > Can anyone tell me how many characters a MySQL TEXT field can hold? What's > the limit? -- Steve Rapaport World Citizen - Before posting, please check: http://ww

TEXT field: How many characters does it hold

2001-12-31 Thread Carlos Fernando Scheidecker Antunes
Hello All! Can anyone tell me how many characters a MySQL TEXT field can hold? What's the limit? Thank you, Carlos Fernando. Linux User #207984 - Before posting, please check: http://www.mysql.com/manual.php (the m

Re: How many tables?

2001-12-24 Thread Rosyna
You'd probably want to make sure the tables are at least in 3rd normal form. 1st: each column contains only ONE attribute. The means you can't have a list of people for "members" or the such. And each row must have a primary key. No two rows can be identical in a table. 2nd: no column is parti

Re: How many tables?

2001-12-24 Thread Dennis Salguero
- Original Message - From: "John Mayson" <[EMAIL PROTECTED]> To: "MySQL List" <[EMAIL PROTECTED]> Sent: Monday, December 24, 2001 4:40 PM Subject: How many tables? > How far should I go with this? Right now when I look at my frequency table, it'

  1   2   >