[ANN] QxOrm 1.4.3 and QxEntityEditor 1.2.1 released : the Qt ORM supports CMake and provides a new QxEntityEditor documentation

2016-12-14 Thread QxOrm contact
Hello, QxOrm library 1.4.3 and QxEntityEditor application 1.2.1 just released : http://www.qxorm.com/ The Qt ORM library now supports CMake and provides a new QxEntityEditor documentation : http://www.qxorm.com/qxorm_en/manual_qxee.html QxOrm library 1.4.3 changes log : - Support CMake : new

Re: Start mysqld 5.7.7 with new disk

2015-12-23 Thread Jørn Dahl-Stamnes
On Wednesday, December 23, 2015, Jørn Dahl-Stamnes wrote: > Hello > > I had to replace the datadisk where mysql had its innodb files. > > But after I had added a new disk I'm not able to initialize mysql files any > more: > > # mysqld --initialize --user=mysql &g

Re: Start mysqld 5.7.7 with new disk

2015-12-23 Thread Reindl Harald
Am 23.12.2015 um 14:11 schrieb Jørn Dahl-Stamnes: I had to replace the datadisk where mysql had its innodb files. But after I had added a new disk I'm not able to initialize mysql files any more: # mysqld --initialize --user=mysql 2015-12-23T13:07:08.216472Z 0 [ERROR] Plugin 'In

Start mysqld 5.7.7 with new disk

2015-12-23 Thread Jørn Dahl-Stamnes
Hello I had to replace the datadisk where mysql had its innodb files. But after I had added a new disk I'm not able to initialize mysql files any more: # mysqld --initialize --user=mysql 2015-12-23T13:07:08.216472Z 0 [ERROR] Plugin 'InnoDB' init function returned error. 2

QxOrm 1.4.1 released : new documentation (user guide), and boost::serialization becomes optional

2015-12-03 Thread QxOrm contact
Hello, *QxOrm 1.4.1 just released !* <http://www.qxorm.com/> Changes in version QxOrm 1.4.1 : *!!! IMPORTANT NOTE ABOUT THIS VERSION !!!* : it is strongly recommended to read the QxOrm.pri configuration file <http://www.qxorm.com/qxorm_en/manual.html#manual_220> of this new version

Re: When to create a new database

2015-10-14 Thread Johan De Meersman
- Original Message - > From: "Reindl Harald" > Subject: Re: When to create a new database > > it makes zero sense since you can use different users for the same > database down to table and even column permissions No, it does make some sense in the case whe

Re: When to create a new database

2015-10-14 Thread Johan De Meersman
- Original Message - > From: "Ron Piggott" > Subject: Re: When to create a new database > > I would lean towards keeping it all together because of the speed > decrease between connecting to different databases. Heh, that consideration is a matter of semantics,

Re: When to create a new database

2015-10-12 Thread shawn l.green
f tables in separate databases organized by sport. One DB for baseball, one for football, one for basketball, etc. That would make it easier for you to move just one shard of your entire data set to a new bigger server if the need arises. The problem with that design is that if you wanted to see a co

Re: When to create a new database

2015-10-10 Thread Mogens Melander
When I read the OP I was thinking: This is one for Reindl. And here we go. When dealing with data of this specific kind, you most definitely would want a date reference. A very small computer will be able to handle mane years of all kinds of weird sports statistics. You need to define the goa

Re: When to create a new database

2015-10-10 Thread Ron Piggott
I would lean towards keeping it all together because of the speed decrease between connecting to different databases. What I would tend to do is put some type of prefix that would keep the sets of tables together --- like lib_sports lib_rules lib_statistical lib_definitions data_players da

Re: When to create a new database

2015-10-10 Thread Reindl Harald
Am 10.10.2015 um 16:28 schrieb Richard Reina: If I were keeping tract of high school sports statistics and thus designed the following tables: sports, rules, statistical definitions and players, teams, games Would it be a good or bad idea to put the first set of tables in a separate database

When to create a new database

2015-10-10 Thread Richard Reina
If I were keeping tract of high school sports statistics and thus designed the following tables: sports, rules, statistical definitions and players, teams, games Would it be a good or bad idea to put the first set of tables in a separate database called "library" since they are used for referen

Re: When to create a new user?

2015-08-23 Thread Jan Steinman
> From: Richard Reina > > I am writing a web application... As new users sign up for > the application should each get their own MySQL username and password or is > okay to execute their queries with the same (one generic) MySQL username > and password? As others have said,

Re: When to create a new user?

2015-08-19 Thread James Moe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/19/2015 05:29 AM, Richard Reina wrote: > As new users sign up for the application should each get their own > MySQL username and password or is okay to execute their queries > with the same (one generic) MySQL username and password?

Re: When to create a new user?

2015-08-19 Thread James Moe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/19/2015 10:06 AM, Richard Reina wrote: > Data stored for each user would be a list of places visited that > and details relating to those trips. The type of queries they would > be able to perform be able to read, update and create ne

Re: When to create a new user?

2015-08-19 Thread Jim
a perl module that will manage the connections (issue database handles ). As new users sign up for the application should each get their own MySQL username and password or is okay to execute their queries with the same (one generic) MySQL username and password? one generic for the application

Re: When to create a new user?

2015-08-19 Thread Reindl Harald
connections (issue database handles ). As new users sign up for the application should each get their own MySQL username and password or is okay to execute their queries with the same (one generic) MySQL username and password? one generic for the application since you normally never ever should connect

Re: When to create a new user?

2015-08-19 Thread Jim
On 8/19/2015 8:40 AM, Reindl Harald wrote: Am 19.08.2015 um 14:29 schrieb Richard Reina: I am writing a web application in perl that will create, edit, update and delete data from a MySQL database. I have written a perl module that will manage the connections (issue database handles ). As new

Re: When to create a new user?

2015-08-19 Thread Reindl Harald
Am 19.08.2015 um 14:29 schrieb Richard Reina: I am writing a web application in perl that will create, edit, update and delete data from a MySQL database. I have written a perl module that will manage the connections (issue database handles ). As new users sign up for the application should

When to create a new user?

2015-08-19 Thread Richard Reina
I am writing a web application in perl that will create, edit, update and delete data from a MySQL database. I have written a perl module that will manage the connections (issue database handles ). As new users sign up for the application should each get their own MySQL username and password or is

Re: store search result as new table in memory

2015-04-12 Thread Jan Steinman
> From: Lucio Chiappetti > > On Tue, 7 Apr 2015, shawn l.green wrote: > >> The advantage to using temporary tables is that they can have indexes on >> them. You can create the indexes when you create the table or you can ALTER >> the table later to add them. > > if they are big, using proper

Re: store search result as new table in memory

2015-04-09 Thread Lucio Chiappetti
On Tue, 7 Apr 2015, shawn l.green wrote: Temporary tables are going to become your very good friends. yes I do use temporary tables a lot The advantage to using temporary tables is that they can have indexes on them. You can create the indexes when you create the table or you can ALTER the

Re: store search result as new table in memory

2015-04-07 Thread shawn l.green
On 4/7/2015 4:12 PM, Rajeev Prasad wrote: hello Masters, I am a novice, and I am wanting to know how to achieve this: 1million plus row in a table. user runs a search, gets some results. I want to store this result in memory in a way, so that user can fire more SQL searches on this result. How

Re: store search result as new table in memory

2015-04-07 Thread Emil Oppeln-Bronikowski
W dniu 07.04.2015 o 22:12, Rajeev Prasad pisze: 1million plus row in a table. user runs a search, gets some results. MySQL comes with query-cache, once you run your SELECT statement the results are kept in memory. Try it by running big query and then rerun it, the second time it will take m

store search result as new table in memory

2015-04-07 Thread Rajeev Prasad
hello Masters, I am a novice, and I am wanting to know how to achieve this: 1million plus row in a table. user runs a search, gets some results. I want to store this result in memory in a way, so that user can fire more SQL searches on this result. How is this done? I want this to go atleast upto

Re: New to MySQL

2014-03-11 Thread Asma rabe
ore > Cc: Reindl Harald; mysql@lists.mysql.com > Subject: Re: New to MySQL > > How to do that? > Thank you > > > On Wed, Mar 5, 2014 at 8:03 PM, Andrew Moore wrote: > > > Next action is to review the MySQL error log for the reason that it > > failed. > >

RE: New to MySQL

2014-03-05 Thread Brian Van der Westhuizen [DATACOM]
. Regards Brian vd Westhuizen -Original Message- From: Asma rabe [mailto:asma.r...@gmail.com] Sent: Thursday, 6 March 2014 12:08 a.m. To: Andrew Moore Cc: Reindl Harald; mysql@lists.mysql.com Subject: Re: New to MySQL How to do that? Thank you On Wed, Mar 5, 2014 at 8:03 PM, Andrew Moore

Re: New to MySQL

2014-03-05 Thread Reindl Harald
Am 05.03.2014 12:07, schrieb Asma rabe: > How to do that? > Thank you besides that the reply was wrong - see my last one it is respectless acting like you do asking every single piece and not read any manual or search http://www.catb.org/esr/faqs/smart-questions.html Google exists https://www.g

Re: New to MySQL

2014-03-05 Thread Andrew Moore
enable *isa not* start - :D This is true. The mailing list is not an interactive article on the basics of installing and starting MySQL. There are 1000s of blog articles, documentation and guides on doing this. Perhaps looking here; http://www.rackspace.com/knowledge_center/article/installing-my

Re: New to MySQL

2014-03-05 Thread Asma rabe
How to do that? Thank you On Wed, Mar 5, 2014 at 8:03 PM, Andrew Moore wrote: > Next action is to review the MySQL error log for the reason that it > failed. > > A > > > On Wed, Mar 5, 2014 at 10:55 AM, Asma rabe wrote: > >> Hi All, >> >> Thank you very much. >> >> I checked if mysql installed

Re: New to MySQL

2014-03-05 Thread Reindl Harald
Am 05.03.2014 12:03, schrieb Andrew Moore: > Next action is to review the MySQL error log for the reason that it failed. oh no - don't reply with no clue chkconfig comes long before mysqld is invoked even if he would have spelled the service name correctly enable *isa not* start see my last ans

Re: New to MySQL

2014-03-05 Thread Reindl Harald
Am 05.03.2014 11:55, schrieb Asma rabe: > I checked if mysql installed > rpm -qa | grep mysql post outputs - it's respectless seek for help and hold back infos because as you said you are new you likely not understand really the output > and found it is installed, so n

Re: New to MySQL

2014-03-05 Thread Andrew Moore
Next action is to review the MySQL error log for the reason that it failed. A On Wed, Mar 5, 2014 at 10:55 AM, Asma rabe wrote: > Hi All, > > Thank you very much. > > I checked if mysql installed > rpm -qa | grep mysql > > and found it is installed, so no need for yum installation. when i trie

Re: New to MySQL

2014-03-05 Thread Asma rabe
Hi All, Thank you very much. I checked if mysql installed rpm -qa | grep mysql and found it is installed, so no need for yum installation. when i tried to start the service chkconfig mysql on error reading information on service mysql: No such file or directory sorry to disturb you. Regards, R

Re: New to MySQL

2014-03-04 Thread Andrew Moore
014 1:21 a.m. > To: geetanjali mehra > Cc: Johan De Meersman; mysql@lists.mysql.com > Subject: Re: New to MySQL > > Thank you very much for responding. > I have checked before installation if mysql is installed using which mysql > ,i found no mysql is installed. > next i did r

RE: New to MySQL

2014-03-04 Thread Brian Van der Westhuizen [DATACOM]
an De Meersman; mysql@lists.mysql.com Subject: Re: New to MySQL Thank you very much for responding. I have checked before installation if mysql is installed using which mysql ,i found no mysql is installed. next i did rpm installation and got the errors rpm -i MySQL-server-5.6.16-1.el6.x86_64.rpm

Re: New to MySQL

2014-03-04 Thread Reindl Harald
Am 04.03.2014 13:20, schrieb Asma rabe: > I have checked before installation if mysql is installed using which mysql > i found no mysql is installed. which is pointless rpm -qa | grep mysql > next i did rpm installation and got the errors > rpm -i MySQL-server-5.6.16-1.el6.x86_64.rpm > > I got

Re: New to MySQL

2014-03-04 Thread Asma rabe
by default and not needed here. So, this command is very safe. > > > On Mon, Mar 3, 2014 at 7:49 PM, Johan De Meersman >wrote: > > > - Original Message - > > > From: "geetanjali mehra" > > > Subject: Re: New to MySQL > > > > &

Re: New to MySQL

2014-03-03 Thread geetanjali mehra
this command is very safe. On Mon, Mar 3, 2014 at 7:49 PM, Johan De Meersman wrote: > - Original Message - > > From: "geetanjali mehra" > > Subject: Re: New to MySQL > > > > use > > rpm -i --replacefiles MySQL-server*.rpm > > While that w

Re: New to MySQL

2014-03-03 Thread Morgan Tocker
preciated . > > > > Best Regards, > Rabe > > > On Fri, Feb 28, 2014 at 1:36 AM, Johan De Meersman wrote: > >> - Original Message - >>> From: "Asma rabe" >>> Subject: Re: New to MySQL >>> >>> so,Is

Re: New to MySQL

2014-03-03 Thread Johan De Meersman
- Original Message - > From: "geetanjali mehra" > Subject: Re: New to MySQL > > use > rpm -i --replacefiles MySQL-server*.rpm While that will work, it really shouldn't happen. I'm a Debian man myself, so I don't know wether it's a problem

NEW Server Joins Tables from Multiple Servers with Unprecedented Speed

2014-03-03 Thread Hiromichi Watari
Parallel Universe* now features Parallel Network Query (Distributed Query) which joins tables from multiple servers in the network with unprecedented speed. Parallel Network Query may also be used to speed up slow server by distributing tables of the query to multiple servers for processing which

Re: New to MySQL

2014-03-03 Thread geetanjali mehra
t > > bin/mysqlshow > -bash: bin/mysqlshow: No such file or directory > > > Any help is appreciated . > > > > Best Regards, > Rabe > > > On Fri, Feb 28, 2014 at 1:36 AM, Johan De Meersman >wrote: > > > - Original Message - >

Re: New to MySQL

2014-03-02 Thread Asma rabe
quot;Asma rabe" > > Subject: Re: New to MySQL > > > > so,Is it recommended to install RPM bundle which has compatlibs, MySQL > > serveretc rather than installing the server only? > > The Server should suffice; the Bundle is merely a convenient way to > downlo

Re: New to MySQL

2014-02-27 Thread Johan De Meersman
- Original Message - > From: "Asma rabe" > Subject: Re: New to MySQL > > so,Is it recommended to install RPM bundle which has compatlibs, MySQL > serveretc rather than installing the server only? The Server should suffice; the Bundle is merely a convenient

Re: New to MySQL

2014-02-27 Thread Asma rabe
28, 2014 at 12:50 AM, Iqbal Aroussi wrote: > Hi Asma, > > If you are new to MySQL and/or Linux. > > Start with Ubuntu + MySQL. > > > Best Regards > > Iqbal Aroussi > 514 451-9122 > > > On Thu, Feb 27, 2014 at 10:43 AM, Asma rabe wrote: > >> Hi,

Re: New to MySQL

2014-02-27 Thread Johan De Meersman
- Original Message - > From: "Iqbal Aroussi" > Subject: Re: New to MySQL > > If you are new to MySQL and/or Linux. > Start with Ubuntu + MySQL. Iqbal, Please don't start distro wars on this list. Everyone chooses the platform he or she wants. Rabe, T

New to MySQL

2014-02-27 Thread Asma rabe
Hi, I would like t install MySQL server on Linux and MYSQL client and GUI may be workbench on client machine. For server installation, I found several options for download, I would appreciate if anyone can tell me which is better to install *Red Hat Enterprise Linux 6 / Oracle Linux 6 (x86, 64-b

Re: New to MySQL

2014-02-27 Thread Iqbal Aroussi
Hi Asma, If you are new to MySQL and/or Linux. Start with Ubuntu + MySQL. Best Regards Iqbal Aroussi 514 451-9122 On Thu, Feb 27, 2014 at 10:43 AM, Asma rabe wrote: > Hi, > > I would like t install MySQL server on Linux and MYSQL client and GUI may > be workbench on cl

Slow inserts after moving to new system

2013-11-25 Thread Michael Stroh
I recently moved to a new web server (running 5.5.32) on one of my production systems. The new server has more RAM, faster CPU, etc so we see queried results a lot quicker. However, with basically the default my.cnf config file on each system, we see simple inserts taking about 10x longer than

Oracle Launches New MySQL 5.6 Certifications

2013-09-12 Thread misiaq
Older MySQL Exams to Retire https://blogs.oracle.com/certification/entry/0875_01 regards, m -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/mysql

Re: Master not creating new binary log.

2013-07-04 Thread spameden
issue on the slave: SHOW SLAVE STATUS\G and post here most likely after you reset the master your slave can't synch anymore, because its missing next sequence of replication file. why don't you backup your master with mysqldump and re-issue it ont he new setup (i.e. on MySQL 5.

RE: Master not creating new binary log.

2013-07-04 Thread Rick James
pire_logs_days. 5.0 -- I don't think anything relevant has changed during 4.0 thru 5.6. > -Original Message- > From: Machiel Richards - Gmail [mailto:machiel.richa...@gmail.com] > Sent: Wednesday, July 03, 2013 3:20 AM > To: mysql list > Subject: Master not creating n

Re: Master not creating new binary log.

2013-07-04 Thread Machiel Richards - Gmail
. - setting that was changed is : log_bin = - old binary logs were moved to the new directory after shutting down the database - database started up and continued as normal, however stopped at the last binary log when it filled up and complained about a corrupted binary log

Master not creating new binary log.

2013-07-03 Thread Machiel Richards - Gmail
be done the replication needs to be up and running. The problem we have currently however is that the binary logs on the master was moved to a seperate partition due to disc space restrictions. A new binlog file called mysql-bin.1 was created and everything seemed to work fine

Re: Adding new disk (space) to mysql box

2013-04-09 Thread Reindl Harald
Am 09.04.2013 08:36, schrieb a bv: > What is the best way and steps to add new disk or SAN to a LVM setuped > mysql/linux box?. > > If there are slots is it better to add a physical one or a SAN space? How > would add that at linux /lvm. What to do at the current mysql database?

Adding new disk (space) to mysql box

2013-04-09 Thread a bv
Hi, What is the best way and steps to add new disk or SAN to a LVM setuped mysql/linux box?. If there are slots is it better to add a physical one or a SAN space? How would add that at linux /lvm. What to do at the current mysql database? Kernel is 2.6.x.x , any storage size restriction for

New Fast Server Now Available at GoGrid.com

2012-09-24 Thread Hiromichi Watari
Parallel Universe* is now available as part of Linux OS images at www.GoGrid.com. GoGrid.com is a dedicated/cloud server hosing site. -- *Parallel Universe is a new extension to

Re: New Fast MySQL Compatible Server Released under the GPL License

2012-08-23 Thread Hiromichi Watari
Hello Gael, The technology is brand new and you'll need to ask them the question. Parallel Universe has no hardware dependencies (it'll need multi core/CPU server only if you enable parallel processing). Hope this helps, Hiromichi - Original Message - From: Daevid Vincent

RE: New Fast MySQL Compatible Server Released under the GPL License

2012-08-22 Thread Daevid Vincent
- > From: Gael Martinez [mailto:gael.marti...@gmail.com] > Sent: Wednesday, August 22, 2012 10:13 AM > To: Hiromichi Watari > Cc: mysql@lists.mysql.com > Subject: Re: New Fast MySQL Compatible Server Released under the GPL License > > On Wed, Aug 22, 2012 at 11:4

Re: New Fast MySQL Compatible Server Released under the GPL License

2012-08-22 Thread Gael Martinez
On Wed, Aug 22, 2012 at 11:43 AM, Hiromichi Watari < hiromichiwat...@yahoo.com> wrote: > [..] > > Available at www.paralleluniverse-inc.com Hello Pardon my question on that one, but why wasn't the concept detailed in that white paper implemented into the core version of mysql or the percona vers

New Fast MySQL Compatible Server Released under the GPL License

2012-08-22 Thread Hiromichi Watari
Parallel Universe is an extension of MySQL server architecture, created to provide fast parallel query capability. Speed is achieved by processing tables in parallel, utilizing multi core/CPU of server hardware. Parallel Universe is released under the GPL license and fully compatible with MySQ

RE: New guy

2012-06-23 Thread Martin Gainty
ets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Thu, 21 Jun 2012 21:39:34 +0100 > Subject: Re: New guy > From: eroomy...@gmail.com > To: radan...@osullivan-quebec.qc.ca > CC: mysql@lists.mysql.com > > Welcome Raymond, hope you e

Re: New guy

2012-06-21 Thread Andrew Moore
Welcome Raymond, hope you enjoy your stay :) On Thu, Jun 21, 2012 at 8:47 PM, Raymond D'Anjou < radan...@osullivan-quebec.qc.ca> wrote: > I don't know if new members usually introduce themselves here... > ...but if not, why not? > > I was very active on the SQL Server

New guy

2012-06-21 Thread Raymond D'Anjou
I don't know if new members usually introduce themselves here... ...but if not, why not? I was very active on the SQL Server news group a few years back but this MYSQL stuff is new to me. Seems I'll be muddling around for at least a little while so I might have a few questions i

New releases of Percona Toolkit, Percona Monitoring Plugins

2012-06-19 Thread Baron Schwartz
Hi all, I'm happy to announce updates to two of Percona's suites of free (GPL) tools for MySQL. Percona Toolkit versions 2.0.5 and 2.1.2 are released. These are bug-fix releases in the 2.0 and 2.1 series, respectively. These releases fix many dozens of bugs, and we suggest that users upgrade to t

Re: i am new to innobackupex and getting some errors..can anyone hellp?

2012-06-03 Thread Tom Sztur
after untaring (or aftering runing the backing) you need to run the apply-log option: http://www.percona.com/doc/percona-xtrabackup/howtos/recipes_ibkx_local.html On Sun, Jun 3, 2012 at 4:19 PM, Joey L wrote: > I am running debian with mysql 5.1 > I am running the backup command like this : >

i am new to innobackupex and getting some errors..can anyone hellp?

2012-06-03 Thread Joey L
I am running debian with mysql 5.1 I am running the backup command like this : innobackupex --user=root --password=pass --stream=tar .^C| bzip2 - > ./xtra/052912backup.tar.bz2 and doing the restore command like this in the /var/lib/mysql directory: tar -xvif ./xtra/052912backup.tar.bz2 and then i

Re: New Fast MySQL Compatible Server (Take 2)

2012-05-15 Thread Hiromichi Watari
Hi, Hope the following link helps. Hiromichi http://corp.sec.state.ma.us/corp/corpsearch/CorpSearchSummary.asp?ReadFromDB=True&UpdateAllowed=&FEIN=001067137 - Original Message - From: Giles Coochey To: mysql@lists.mysql.com Cc: Sent: Friday, May 11, 2012 6:47 AM Subject: Re:

Re: New Fast MySQL Compatible Server (Take 2)

2012-05-14 Thread Johan De Meersman
- Original Message - > From: "Hiromichi Watari" > > I uploaded the technology whitepaper to the website. Hmm, interesting idea, to allocate a thread per table - I can imagine it's going to be pretty heavy on the thread cache, though :-) How does it respond to self-joins, subselects and

Re: New Fast MySQL Compatible Server (Take 2)

2012-05-12 Thread Hiromichi Watari
Hi, I uploaded the technology whitepaper to the website. Hope this helps. Hiromichi - Original Message - From: Johan De Meersman To: Hiromichi Watari Cc: mysql@lists.mysql.com Sent: Friday, May 11, 2012 2:57 AM Subject: Re: New Fast MySQL Compatible Server (Take 2) - Original

Re: New Fast MySQL Compatible Server (Take 2)

2012-05-11 Thread Giles Coochey
On 11/05/2012 07:57, Johan De Meersman wrote: - Original Message - From: "Hiromichi Watari" I created Parallel Universe which is a MySQL 5.5 compatible server with fast query execution. Speed is achieved by the new patent pending technology which utilizes multi core/CPU

Re: New Fast MySQL Compatible Server (Take 2)

2012-05-10 Thread Johan De Meersman
- Original Message - > From: "Hiromichi Watari" > > I created Parallel Universe which is a MySQL 5.5 compatible server > with fast query execution. > Speed is achieved by the new patent pending technology which utilizes > multi core/CPU of server hardware. Ju

Re: New Fast MySQL Compatible Server (Take 2)

2012-05-10 Thread Reindl Harald
Am 10.05.2012 21:16, schrieb Hiromichi Watari: > Hi, > > I created Parallel Universe which is a MySQL 5.5 compatible server with fast > query execution. > > Speed is achieved by the new patent pending technology which > utilizes multi core/CPU of server hardware afte

New Fast MySQL Compatible Server (Take 2)

2012-05-10 Thread Hiromichi Watari
Hi, I created Parallel Universe which is a MySQL 5.5 compatible server with fast query execution. Speed is achieved by the new patent pending technology which utilizes multi core/CPU of server hardware. Pre-release field evaluation is being conducted and MySQL users are solicited to try out

Re: New Fast MySQL Compatible Server

2012-04-03 Thread Daniel Brown
On Tue, Apr 3, 2012 at 04:10, Johan De Meersman wrote: > - Original Message - >> From: "Singer X.J. Wang" >> >> Perhaps something called a VM can be use? > > Perhaps something called documentation can be provided? > > I also notice that the original poster seems to have vanished again, wh

Re: New Fast MySQL Compatible Server

2012-04-03 Thread Johan De Meersman
- Original Message - > From: "Singer X.J. Wang" > > Perhaps something called a VM can be use? Perhaps something called documentation can be provided? I also notice that the original poster seems to have vanished again, which makes the whole thing even more shady. -- Bier met grenady

Re: New Fast MySQL Compatible Server

2012-04-02 Thread Singer X.J. Wang
Hiromichi Watari > > wrote: > >> Hi, > >> > >> I created Parallel Universe which is a MySQL 5.5 compatible server with > fast query execution. > Speed is achieved by processing tables in parallel utilizing multi > core/CPU server hardware. > >> > >

Re: New Fast MySQL Compatible Server

2012-03-27 Thread Mogens Melander
is achieved by processing tables in parallel utilizing multi core/CPU server hardware. >> >> Pre-release field evaluation is being conducted and MySQL users are >> solicited to try out the new server for feedback. >> >> Please go to www.paralleluniverse-inc.com to dow

Re: New Fast MySQL Compatible Server

2012-03-27 Thread Rick James
izing multi core/CPU server hardware. Pre-release field evaluation is being conducted and MySQL users are solicited to try out the new server for feedback. Please go to www.paralleluniverse-inc.com to download. Thank you, Hiromichi -- Rick James - MySQL Geek -- MySQL General Mailing List For

Re: New Fast MySQL Compatible Server

2012-03-27 Thread Singer X.J. Wang
t; > > > Pre-release field evaluation is being conducted and MySQL users are > solicited to try out the new server for feedback. > > > > Please go to www.paralleluniverse-inc.com to download. > > > > Thank you, > > Hiromichi > > > >

Re: New Fast MySQL Compatible Server

2012-03-27 Thread Baron Schwartz
t; > I created Parallel Universe which is a MySQL 5.5 compatible server with fast > query execution. > Speed is achieved by processing tables in parallel utilizing multi core/CPU > server hardware. > > Pre-release field evaluation is being conducted and MySQL users are solicit

New Fast MySQL Compatible Server

2012-03-27 Thread Hiromichi Watari
Hi, I created Parallel Universe which is a MySQL 5.5 compatible server with fast query execution. Speed is achieved by processing tables in parallel utilizing multi core/CPU server hardware. Pre-release field evaluation is being conducted and MySQL users are solicited to try out the new

Re: logrotate script doesn't create a new log file

2012-02-23 Thread Honza Horak
On 02/22/2012 07:58 PM, Johan De Meersman wrote: Having this line commented, we have to rely on logrotate.conf to have something similar defined and we see an error when using mysql-rotate Then something else is wrong. Does your MySQL daemon happen to run as a user who can normally not create

Re: logrotate script doesn't create a new log file

2012-02-22 Thread Johan De Meersman
- Original Message - > From: "Honza Horak" > > particular reason why the line is not used by default? Can't be bothered to go look at the script, but it should be doing a "flush logs" somewhere. The line is commented by default because MySQL will recreate it's logfiles automatically, a

logrotate script doesn't create a new log file

2012-02-22 Thread Honza Horak
Hi all, I'm thinking of logrotate script, that is shipped in mysql tar ball (e.g. mysql-5.5.20/support-files/mysql-log-rotate.sh). There is a commented line "# create 600 mysql mysql", that should originally ensure logrotate utility creates a new log file after rotatin

Re: Inserting a new row

2011-11-14 Thread Govinda
> Hi, > > I'm a novice to MySQL and am currently facing the following difficulty. > I'm trying to update a table with a row of data the primary key of which is > an ID which I believe is an auto incrementing serial number. My first > question is how to check if this is the case. Hi Toni from t

Inserting a new row

2011-11-13 Thread drive view
Hi, I'm a novice to MySQL and am currently facing the following difficulty. I'm trying to update a table with a row of data the primary key of which is an ID which I believe is an auto incrementing serial number. My first question is how to check if this is the case. Secondly while trying to ins

Re: New-be: problem installing on Mac SO10.6

2011-11-05 Thread Govinda
Roger, 2 mins. of Google turned up these (just f.y.i.): http://www.cyberciti.biz/faq/mysql-change-root-password/ http://www.cyberciti.biz/tips/recover-mysql-root-password.html -G -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.

Re: New-be: problem installing on Mac SO10.6

2011-11-05 Thread Govinda
>> >>> ...as Brandon said.. from terminal you have to type something to get into >>> mysql, and if you are like me, then that is: >>> >>> /usr/local/mysql/bin/mysql >> >> Oh, I forgot to add - but you might need to be super user first. >> >> su >> (input pass..) > > why in the world should s

Re: New-be: problem installing on Mac SO10.6

2011-11-05 Thread Reindl Harald
Am 06.11.2011 02:00, schrieb Govinda: > >> ...as Brandon said.. from terminal you have to type something to get into >> mysql, and if you are like me, then that is: >> >> /usr/local/mysql/bin/mysql > > Oh, I forgot to add - but you might need to be super user first. > > su > (input pass..)

Re: New-be: problem installing on Mac SO10.6

2011-11-05 Thread Govinda
> ...as Brandon said.. from terminal you have to type something to get into > mysql, and if you are like me, then that is: > > /usr/local/mysql/bin/mysql Oh, I forgot to add - but you might need to be super user first. su (input pass..) > > -Govinda > >> I installed Mysql using the .dmg pa

Re: New-be: problem installing on Mac SO10.6

2011-11-05 Thread Govinda
...as Brandon said.. from terminal you have to type something to get into mysql, and if you are like me, then that is: /usr/local/mysql/bin/mysql -Govinda > I installed Mysql using the .dmg package. I can use System Preferences to > start and stop the program. When I open a terminal window,

Re: New-be: problem installing on Mac SO10.6

2011-11-05 Thread Brandon Phelps
On 11/5/2011 12:32 PM, Roger CPL wrote: I installed Mysql using the .dmg package. I can use System Preferences to start and stop the program. When I open a terminal window, I think this is the way to us the program, any Mysql command I inter is not recognized. Thanks Roger You will need to

New-be: problem installing on Mac SO10.6

2011-11-05 Thread Roger CPL
I installed Mysql using the .dmg package. I can use System Preferences to start and stop the program. When I open a terminal window, I think this is the way to us the program, any Mysql command I inter is not recognized. Thanks Roger -- MySQL General Mailing List For list archives: http://list

Re: auto_increment value increased from 20 to 32 when I inserted a new row.

2011-09-19 Thread Johan De Meersman
- Original Message - > From: "crocket" > > I had 19 rows in series table. And when I tried inserting the 20th > row, the auto_increment value suddenly increased from 20 to 32, and > the new row has 20 as series_id. The first thing that comes to mind, is tran

auto_increment value increased from 20 to 32 when I inserted a new row.

2011-09-19 Thread crocket
auto_increment value suddenly increased from 20 to 32, and the new row has 20 as series_id. This leap seems to happen on every table. What is the cause of the leap in auto_increment? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com

Re: Triggers - Accessing all NEW data

2011-09-13 Thread Chris Tate-Davies
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

Re: Triggers - Accessing all NEW data

2011-09-13 Thread Claudio Nanni
; > > > 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

Re: Triggers - Accessing all NEW data

2011-09-13 Thread Chris Tate-Davies
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?

  1   2   3   4   5   6   7   8   9   10   >