Re: syntax to create a user called starsky

2012-02-29 Thread Chris Tate-Davies

On 29/02/12 12:38, Brown, Charles wrote:

Hello,
Can someone give me syntax to create a user called starsky and password hutch 
with the following objectives:
- user the minimum to run back scripts
- user has the minimum to lock tables
- user has the minimum to do SELECT on tables

Thx


This message is intended only for the use of the Addressee and
may contain information that is PRIVILEGED and CONFIDENTIAL.

If you are not the intended recipient, you are hereby notified
that any dissemination of this communication is strictly prohibited.

If you have received this communication in error, please erase
all copies of the message and its attachments and notify us
immediately.

Thank you.




You should read these pages:

http://dev.mysql.com/doc/refman/5.1/en/create-user.html
http://dev.mysql.com/doc/refman/5.1/en/grant.html

CREATE USER 'starsky'@'domain/ipaddress' IDENTIFIED BY 'hutch';
GRANT SELECT,LOCK TABLES ON database.* TO 'starsky'@'domain/ipaddress';
FLUSH PRIVILEGES;

When you say run back scripts, what does that mean? What sort of scripts?

PS. IMO hutch is terrible choice of password for a user called starsky!


--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: mysql won't start with service, but starts with mysqld_safe

2012-02-06 Thread Chris Tate-Davies

Have you tried:

mysql --verbose -u username -ppassword

To output more information



On 05/02/12 00:57, Larry Martell wrote:

Just installed mysql on centos 6.2. When I try to start it with service I get:

#service mysqld start
MySQL Daemon failed to start.
Starting mysqld:   [FAILED]

Nothing at all is written to the error log.

But if I start it with mysqld_safe it comes up and works fine.

Anyone know what could be going on here?

-larry



--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: mysql won't start with service, but starts with mysqld_safe

2012-02-06 Thread Chris Tate-Davies

On 06/02/12 13:33, Larry Martell wrote:

On Mon, Feb 6, 2012 at 2:38 AM, Chris Tate-Davies
chris.tatedav...@inflightproductions.com  wrote:

Have you tried:

mysql --verbose -uusername  -ppassword

To output more information

When would I use that? If I try to start it with 'service mysqld
start' it fails to start.



From terminal command...

just try typing it, like this:

mysql --verbose -u username -ppassword


On 05/02/12 00:57, Larry Martell wrote:

Just installed mysql on centos 6.2. When I try to start it with service I
get:

#service mysqld start
MySQL Daemon failed to start.
Starting mysqld:   [FAILED]

Nothing at all is written to the error log.

But if I start it with mysqld_safe it comes up and works fine.

Anyone know what could be going on here?

-larry


--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com
mailto:chris.tatedav...@inflightproductions.com
*Web:*www.inflightproductions.comhttp://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original. Any other use of the email by you is prohibited. Please note that
the information provided in this e-mail is in any case not legally binding;
all committing statements require legally binding signatures.


http://www.inflightproductions.com



--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: mysql won't start with service, but starts with mysqld_safe

2012-02-06 Thread Chris Tate-Davies

On 06/02/12 14:34, Reindl Harald wrote:


Am 06.02.2012 15:28, schrieb Chris Tate-Davies:

On 06/02/12 13:33, Larry Martell wrote:

On Mon, Feb 6, 2012 at 2:38 AM, Chris Tate-Davies
chris.tatedav...@inflightproductions.com   wrote:

Have you tried:

mysql --verbose -uusername   -ppassword

To output more information

When would I use that? If I try to start it with 'service mysqld
start' it fails to start.


 From terminal command...

just try typing it, like this:

mysql --verbose -uusername  -ppassword

and how can this help if mysqld does not start?

I am hoping it will verbose any errors to the terminal.

--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: hide server-version at connect?

2012-01-10 Thread Chris Tate-Davies

On 10/01/12 15:41, Chris Tate-Davies wrote:

On 10/01/12 13:34, Johan De Meersman wrote:

- Original Message -

From: Johnny Withersjoh...@pixelated.net

Security through obscurity?
That sentence has been overused way too much. If you want to remove 
all obscurity from your security, just publish your passwords and 
private keys.



If none of your MySQL (or samba) servers are open to untrusted
networks, why do you need to hide this information.
Because even on a trusted network you can have untrusted agents. 
Think malcontent employees, viruses, et cetera. Security comes in 
layers, the more the better - although I do agree that this 
particular layer is not the first priority.




Indeed, have a read of http://en.wikipedia.org/wiki/Defence_in_depth 


Sorry, wrong link, this is the right one: 
http://en.wikipedia.org/wiki/Defense_in_depth_(computing) 
http://en.wikipedia.org/wiki/Defense_in_depth_%28computing%29




-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: hide server-version at connect?

2012-01-10 Thread Chris Tate-Davies

On 10/01/12 13:34, Johan De Meersman wrote:

- Original Message -

From: Johnny Withersjoh...@pixelated.net

Security through obscurity?

That sentence has been overused way too much. If you want to remove all 
obscurity from your security, just publish your passwords and private keys.


If none of your MySQL (or samba) servers are open to untrusted
networks, why do you need to hide this information.

Because even on a trusted network you can have untrusted agents. Think 
malcontent employees, viruses, et cetera. Security comes in layers, the more 
the better - although I do agree that this particular layer is not the first 
priority.




Indeed, have a read of http://en.wikipedia.org/wiki/Defence_in_depth


*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: Chinese characters not displaying in Workbench latest version

2011-11-21 Thread Chris Tate-Davies
What are you using to view the data?



On Mon, 2011-11-21 at 08:22 -0500, h...@tbbs.net wrote:
 ; 2011/11/20 20:27 +, Tompkins Neil 
 Does anyone know why Chinese characters are not displaying correctly in a
 replicated database on a slave machine ?  I'm just getting square boxes. 
 
 What displays them? it sounds to me as if the display lacks something, not so 
 much MySQL.
 
 

-- 
Chris Tate-Davies chris.tatedav...@inflightproductions.com



-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: In case you all missed it.

2011-11-11 Thread Chris Tate-Davies
On Fri, 2011-11-11 at 16:38 +, Mark Goodge wrote:
 On 11/11/2011 16:29, Curtis Maurand wrote:
 
 
  mysql  select date_format(now(),'%m-%d%-%y
  %h:%i:%s') AS time;
  +---+
  |
  time
  |
  +---+
  | 11-11-11 11:11:11 |
  +---+
  1 row in set (0.00 sec)
 
 Actually, it should be select date_format(now(),'%y-%m%-%d
 %h:%i:%s') :-)
 
 Mark
 -- 
   Sent from my Babbage Difference Engine
   http://mark.goodge.co.uk
   http://www.ratemysupermarket.com
 

*Actually*, it wouldn't make any difference what-so-ever which way round
the tokens are!!! (for this case anyway)



-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: Questions about Mysqldump

2011-09-15 Thread Chris Tate-Davies

Adarsh,

1)

When restoring a mysqldump you have the option of which database to restore.

mysql database1  backup.sql

2)

You might be able to use the --ignore-table command. I'm not sure if 
this would work


mysqldump --all-databases -q  --single-transaction 
--ignore-table=databasetoignore.* | gzip  
/media/disk-1/Server11_MysqlBackup_15September2011/mysql_15sep2011backup.sql.gz


3)

The docs are here for mysqldump, might be worth a read:

http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html


HTH, Chris



On 15/09/11 06:29, Adarsh Sharma wrote:

Dear all,

Today i backup my all databases (25) by using the below command :-

mysqldump --all-databases -q  --single-transaction | gzip  
/media/disk-1/Server11_MysqlBackup_15September2011/mysql_15sep2011backup.sql.gz


Now I have some doubts or problems that I need to handle in future :

1. Is there any option in restore command ( I use mysql  backup.sql 
)  to store only specific 1 or 2 databases out of this big backup file.
2. While taking mysqldump of all databases , is there any way to leave 
specific databases , I know there is --databases option , but we have 
to name other 23 databases then.
3. What are the settings that are need to changed in my.cnf to make 
backup  restore faster.



Thanks




--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: Triggers - Accessing all NEW data

2011-09-13 Thread Chris Tate-Davies

Thanks,

I kinda guessed that, but I'm not sure how to pass the OLD object to it 
as MySQL cannot handle a rowset datatype.


Has anyone had any experience with this? Not sure where to start or how 
to proceed.


Chris


On 13/09/11 07:40, Luis Motta Campos wrote:

On 8 Sep 2011, at 16:23, Chris Tate-Davies wrote:


Hello. I want to know if there is a special way I can access all the data in 
the NEW/OLD data?

I realise I can access it by referencing NEW.fieldname but I want to serialise 
the NEW object so I can save as a string. Is this possible or do I need to 
write a function?


Hi,

You'll have to write your own function for that.

Cheers
--
Luis Motta Campos
is a DBA, Foodie, and Photographer



--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Re: Triggers - Accessing all NEW data

2011-09-13 Thread Chris Tate-Davies


I could do that, but I was hoping I wouldn't have to specify the 
individual fields, and just pass the collection for parsing.


If I were to add any fields I would have to re-write the trigger which 
is something I was trying to avoid.



On 13/09/11 09:53, Claudio Nanni wrote:

Hi,
Just quick reading your email, forgive me if I'm mistaken
what about serializing using *concat(old.f1,'|||',old.f2,'|||',old.f3)
  ('|||' = any separator that works for you)*
and deserialize inside the function?

does this make any sense to you?

Cheers

Claudio

2011/9/13 Chris Tate-Davieschris.tatedav...@inflightproductions.com


Thanks,

I kinda guessed that, but I'm not sure how to pass the OLD object to it as
MySQL cannot handle a rowset datatype.

Has anyone had any experience with this? Not sure where to start or how to
proceed.

Chris



On 13/09/11 07:40, Luis Motta Campos wrote:


On 8 Sep 2011, at 16:23, Chris Tate-Davies wrote:

  Hello. I want to know if there is a special way I can access all the data

in the NEW/OLD data?

I realise I can access it by referencing NEW.fieldname but I want to
serialise the NEW object so I can save as a string. Is this possible or do I
need to write a function?


Hi,

You'll have to write your own function for that.

Cheers
--
Luis Motta Campos
is a DBA, Foodie, and Photographer



--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedavies@**inflightproductions.comchris.tatedav...@inflightproductions.commailto:
chris.tatedavies@**inflightproductions.comchris.tatedav...@inflightproductions.com
*Web:*www.inflightproductions.**comhttp://www.inflightproductions.com  
http://www.**inflightproductions.com/http://www.inflightproductions.com/




-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original. Any other use of the email by you is prohibited. Please note that
the information provided in this e-mail is in any case not legally binding;
all committing statements require legally binding signatures.


http://www.**inflightproductions.comhttp://www.inflightproductions.com






--

*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com



Triggers - Accessing all NEW data

2011-09-08 Thread Chris Tate-Davies
Hello. I want to know if there is a special way I can access all the 
data in the NEW/OLD data?


I realise I can access it by referencing NEW.fieldname but I want to 
serialise the NEW object so I can save as a string. Is this possible or 
do I need to write a function?


Thanks, Chris



*Chris Tate-Davies*

*Software Development*
Inflight Productions Ltd
Telephone: 01295 269 680
15 Stukeley Street | London | WC2B 5LT
*Email:*chris.tatedav...@inflightproductions.com 
mailto:chris.tatedav...@inflightproductions.com

*Web:*www.inflightproductions.com http://www.inflightproductions.com/





-


Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
Registered in England number 1421223

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited. Please note that the information 
provided in this e-mail is in any case not legally binding; all committing 
statements require legally binding signatures.


http://www.inflightproductions.com