Re: Get MySQL server IP address in SQL

2011-03-02 Thread Reindl Harald
Am 03.03.2011 00:31, schrieb Claudio Nanni: > Anyone knows how to get the server* IP address* thru SQL? no, because it is nonsense and has nothing to do with a db-server if you connect via tcp you know the ip and even if not - what should give you mysqld if the host has more than one ip? sig

Get MySQL server IP address in SQL

2011-03-02 Thread Claudio Nanni
Anyone knows how to get the server* IP address* thru SQL? -- Claudio *mysql> select * from GLOBAL_variables where variable_name like 'hostname';* *+---++* *| VARIABLE_NAME | VARIABLE_VALUE |* *+---++* *| HOSTNAME | haarlemeer |* *

RE: Query help

2011-03-02 Thread Jerry Schwartz
If you want one row for each combination, you'll need either a temporary table or a sub-query. Try this: SELECT ip_address, login_id FROM basic_table JOIN (SELECT ip_address FROM basic_table GROUP BY ip_address HAVING COUNT(*) > 1) AS x

Re: Two Identical Values on Primary Key Column

2011-03-02 Thread Rodrigo Ferreira
Hi Johan, It seems InnoDB doesn't support disable/enable keys. mysql> alter table faqsessions enable keys; Query OK, 0 rows affected, 1 warning (0.14 sec) mysql> show warnings; +---+--+-+ | Level | Code | Message  

Re: Query help

2011-03-02 Thread Tompkins Neil
Thanks for the response. This is what I was after. Although, I am looking to find out the email addresses used to login from the same IP ? On Wed, Mar 2, 2011 at 2:49 PM, Jerry Schwartz wrote: > > >-Original Message- > >From: Tompkins Neil [mailto:neil.tompk...@googlemail.com] > >Sent:

RE: Query help

2011-03-02 Thread Jerry Schwartz
>-Original Message- >From: Tompkins Neil [mailto:neil.tompk...@googlemail.com] >Sent: Wednesday, March 02, 2011 6:00 AM >To: [MySQL] >Subject: Query help > >Hi > >I've the following basic table > >login_id >email_address >ip_address > >I want to extract all records from this table in which

Re: Two Identical Values on Primary Key Column

2011-03-02 Thread Johan De Meersman
Is it possible that someone did an alter table disable keys at some point, maybe for a bulk load, and forgot to re-enable them ? - Original Message - > From: "Rodrigo Ferreira" > To: mysql@lists.mysql.com > Sent: Wednesday, 2 March, 2011 3:04:31 PM > Subject: Two Identical Values on Pr

Two Identical Values on Primary Key Column

2011-03-02 Thread Rodrigo Ferreira
Hi all, I have just experienced a strange problem with mysql production database. The table faqsessions have a primary key on column `Code` and the above select return 2 rows! mysql> mysql> mysql> show create table faqsessions; +-+

Re: Query help

2011-03-02 Thread Claudio Nanni
Hi Neil, select login_id, ip_address from basic_table group by login_id,ip_address having count(login_id,ip_address)>1 this should work in case you want to see also the list of emails add: group_concat(email_address,',') as list_of_used_emails to the select fields. Claudio

Query help

2011-03-02 Thread Tompkins Neil
Hi I've the following basic table login_id email_address ip_address I want to extract all records from this table in which a user has used the same IP address but different email address to login ? Thanks, Neil