Hi,
I have also found that the master bin log file changing its name from
myhostname-bin. to mysql.XXX and to other different names.
I am running mysql Ver 11.12 Distrib 3.23.33, for hp-hpux11.00 (hppa2.0w).
When I did sar -v 5 I found that inod-sz is on maximum:
14:39:05 text-sz ov
Hi MySQLeers,
How can I setup multiple daemons, One daemon for one database? So that
they can act independenly. What might be the pitfalls over here?
In what situation one can opt for multiple daemons?
What about maximum_connections. Is it for all the server instances?
Thanks
DEVI. G
-
Hm. Running on 4.1.21 seems to have a 'feature' where SHOW SLAVE
STATUS blocks when the disk is full. Thoughts?
Kevin
--
Founder/CEO Tailrank.com
Location: San Francisco, CA
AIM/YIM: sfburtonator
Skype: burtonator
Blog: feedblog.org
Cell: 415-637-8078
--
MySQL General Mailing List
For list
I thought about it I was actually going to use merge tables AND
partitions to split the underlying MyISAM tables across two disks and
then partition on top.
It's POSSIBLE to use partitioning the way I want it but I'm going to
have to grok it for a bit more.
Thanks though.
Kevin
On 2/12
Kevin Burton wrote:
I want to use a merge table so that I can direct all new INSERTs to a
new merge table and migrate old data off the system by having a
continually sliding window of underlying MyISAM tables.
The problem is that of I do INSERT ... ON DUPLCATE KEY UPDATE and
that value isn't in
2 way replication, also referred to as dual master replication, has been
available for quite some time. However implementation can be tricky. Look
for the "Dual master" section in chapter 7 of the High Performance MySQL
book:
http://dev.mysql.com/books/hpmysql-excerpts/ch07.html
If you nee
I want to use a merge table so that I can direct all new INSERTs to a
new merge table and migrate old data off the system by having a
continually sliding window of underlying MyISAM tables.
The problem is that of I do INSERT ... ON DUPLCATE KEY UPDATE and
that value isn't in the leading table wh
Simon,
send in the schema for the table in question, that should show
something. The only condition I can think of off the top of my head
which might do that is if you have another unique key in your
structure and that is the one this error is complaining about.
On 2/12/07, Simon Giddings <[
Rich,
>How can I select primary key from a table?
To retrieve PKs for db.tbl in MySQL 5 ...
SELECT k.column_name
FROM information_schema.table_constraints t
JOIN information_schema.key_column_usage k
USING(constraint_name,table_schema,table_name)
WHERE t.constraint_type='PRIMARY KEY'
AND t.tab
Hi Js,
js wrote:
Is there any easy way to implement 'NOT EMPTY' constraint?
There currently is no support for CHECK Constraints in MySQL, at least
to my knowing. So you'd have to go with a trigger.
regards
Nils
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To
Try this:
mysql> insert into t (a) values (if(char_length("sbd"), "sbd", NULL));
Query OK, 1 row affected (0.47 sec)
mysql> insert into t (a) values (if(char_length(""), "sbd", NULL));
ERROR 1048 (23000): Column 'a' cannot be null
Regards,
Jerry Schwartz
Global Information Incorporated
195 Farm
Jonathan Mangin wrote:
File downloads are enabled in IE but refuse to work.
Does anyone know where I can FTP the latest version
of mod_auth_mysql
While this particular apache module does deal with mysql, the question
you are asking is more oriented to the module working with apache than
help
File downloads are enabled in IE but refuse to work.
Does anyone know where I can FTP the latest version
of mod_auth_mysql?
Thanks,
Jon
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Thanks for reply and sorry for lack of information.
What I want to know is not how to query,
but how to prevent emtpy data from being inserted in tables.
Let's say I'd like to have a table that doesn't contains any NULL value.
I'd create the table like below.
##
Thank you Guys, your answer helpful to me.
Question.
I have two tables donation_test, and max_donation. The
max donation table is a summary table, used to keep
the max donation for each contact_id, by listing its
donation_id. We have decided to use database level
triggers to keep the summary table (max_donation)
table up to date. I have bee
Have a look at the HAVING clause ...
- Original Message -
From: "js " <[EMAIL PROTECTED]>
To:
Sent: Monday, February 12, 2007 2:48 PM
Subject: NOT EMPTY, like NOT NULL
Hi list,
A silly question.
Is it possible to prevent empty value('') from appearing in a field?
I can solve this
Use the IF function or the the IFNULL function like this:
SELECT IF(;
SELECT IFNULL(;
If the fieldname column contains either Strings, Empty Strings or Nulls do this
SELECT IF(IFNULL(fieldname,'BLAHBLAHBLAH')='BLAHBLAHBLAH','Null Value of Your
Choice',
IF(fieldname='','Empty Value of Your Choic
select * from table1 order by field1 limit 10,1
Dusan
balaraju mandala napsal(a):
Hi All,
I need a select query, with which i can reach to a particular row
directly.
I mean if a table have 100 rows inserted,
we can use select * from table1 limit 10;
with this query i will have 10 rows, but
Hi list,
A silly question.
Is it possible to prevent empty value('') from appearing in a field?
I can solve this by using subquery or trigger,
but it's a little bit painful.
The simpler the better :)
Thanks.
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsub
Hi All,
I need a select query, with which i can reach to a particular row directly.
I mean if a table have 100 rows inserted,
we can use select * from table1 limit 10;
with this query i will have 10 rows, but my requirement is only 10th
row only should come as a result. If u have any solution f
Thank you very much Jorn. Your suggestion helped me.
Hi MySQLeers,
How can I setup multiple daemons, One daemon for one database? So that they
can act independenly. What might be the pitfalls over here?
In what situation one can opt for multiple daemons?
What about maximum_connections. Is it for all the server instances?
Thanks
DEVI. G
- Original Message -
From: "Devi" <[EMAIL PROTECTED]>
To:
Sent: Monday, February 12, 2007 5:34 PM
Subject: Re: Update failing with error 1062
Hi MySQLeers,
How can I setup multiple daemons, One daemon for one database? So that
they can act independenly. What might be the pitfall
Hello All,
I am running 4 different databases each has different functionality in Linux
box. If i combine all four databases into one (moving the tables into anyone of
the database), will it increase the performance? will it be give any
advantages?. MySQL version i am using is 4.1.1 standard. E
Good morning,
I issue an update statement containing a where clause on the primary
index, so as to update a single record. Howerver this is failing with
"Duplicate entry '6' for key 1" -
update clients.calendarentry set Subject = 'presentation' where
idCalendarEntry = 6;
In the table, the fi
Hi folks. How can I select primary key from a table? I can't find
any syntax out of show fields from tablename, and the 'key' field =
"PRI". Just seems to be a bit much.
Any takers?
Cheers
Rich in Toronto (cold)
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/
27 matches
Mail list logo