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
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
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
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
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
- 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
- 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,
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
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
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
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
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
> 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,
-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?
-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
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
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
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
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
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
> 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
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
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
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
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
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.
> >
.
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
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
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
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
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
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
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
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
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
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
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
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
> > >
> &
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
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
- 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
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
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 -
>
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
- 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
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,
- 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
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
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
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
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
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.
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
.
- 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
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
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?
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
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
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
-
> 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
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
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
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
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
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
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
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 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
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:
- 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
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
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
- 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
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
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
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
- 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
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.
> >>
> >
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
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
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
> >
> >
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
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
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
- 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
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
> 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
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
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.
>>
>>> ...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
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..)
> ...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
...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,
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
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
- 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 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
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
;
>
>
> 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
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 - 100 of 1384 matches
Mail list logo