10 seconds !?Unless that query is huge and without indexes, it should
run MUCH quicker.
> I'm using Oracle 8.0.5 and MySQL 4.1.1a
>
> I'm not optimizing Oracle nor MySQL, because I don't want future users
> messing with optimizations.
> I access through JDBC drivers. Oracle usually needs 10 se
OTECTED]
> Sent: Wednesday, June 16, 2004 8:12 AM
> To: [EMAIL PROTECTED]
> Subject: Re: MySQL vs Oracle
>
>
> I'm using Oracle 8.0.5 and MySQL 4.1.1a
>
> I'm not optimizing Oracle nor MySQL, because I don't want future users
> messing with optimizations
age -
From: "Weaver, Walt" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 16, 2004 4:00 PM
Subject: RE: MySQL vs Oracle
You didn't provide much information about your system.
What version of MySQL? Oracle?
With Oracle, which optimizer are you
You didn't provide much information about your system.
What version of MySQL? Oracle?
With Oracle, which optimizer are you using? Oracle, compared to MySQl,
is very tunable and it's easy to make it run badly.
We run customer databases on both MySQL and Oracle, using a product
developed on MySQ
Robert Fox wrote:
>Hi Frank-
>
>I'm new to the MySQL world, and I am also a DBA with an Oracle background.
>This was a surprise to me as well. However, the only solution that I know
>of is to encapsulate your SELECT elements in a Concat() function. So, your
>SQL statement would be:
>
>select c
At 20:46 26/09/2002 +0200, MySQL wrote:
>Hi all,
>
>I'm a DBA in the Oracle World.
>
>I want to make a sql query in mysql, with a concat (||) known i Oracle
>world.
>
>Like this.
>
>select numer ||','|| text from Table:
You need to specify the keyword CONCAT and enclose it in brackets,
like this:
Hi Frank-
I'm new to the MySQL world, and I am also a DBA with an Oracle background.
This was a surprise to me as well. However, the only solution that I know
of is to encapsulate your SELECT elements in a Concat() function. So, your
SQL statement would be:
select concat(numer, text)
from tab
You almost answered your own question. In mysql you use the concat()
command:
select concat(number,',',text) from Table
On Thursday, September 26, 2002, at 03:17 PM, MySQL wrote:
> Hi all,
>
> I'm a DBA in the Oracle World.
>
> I want to make a sql query in mysql, with a concat (||) known i Ora
From: MySQL <[EMAIL PROTECTED]>
> select numer ||','|| text from Table:
SELECT CONCAT(numer, '||', text) FROM Table;
---
Rodney Broom
President, R.Broom Consulting
http://www.rbroom.com/
-
Before posting, please check:
Concat and Concat_WS from the mysql web site
CONCAT(str1,str2,...)
Returns the string that results from concatenating the arguments.
Returns NULL if any argument is NULL. May have more than 2 arguments. A
numeric argument is converted to the equivalent string form:
mysql> SELECT CONCAT('My', '
Hi Frank,
You can use the concat() function:
select concat(numer, ',', text) from Table.
The online docs for MySQL contain a great reference for functions:
http://www.mysql.com/doc/en/Functions.html
--jeff
> Hi all,
>
> I'm a DBA in the Oracle World.
>
> I want to make a sql query in mysql,
:I want to make a sql query in mysql, with a concat (||) known i Oracle
:world.
:
:Like this.
:
:select numer ||','|| text from Table:
Instead, try the following:
SELECT CONCAT(number, ',', text) FROM Table;
-
Before
Hi,
You need to use :
Select concat(numer,',',test) from table;
See: http://www.mysql.com/doc/en/String_functions.html for more.
Cheers,
Andrew
-Original Message-
From: MySQL [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 26 September 2002 19:47
To: [EMAIL PROTECTED]
Subject: Mysql
Hi,
Well, why not trying... concat() :)
SELECT concat(numer,',',text) FROM Table;
http://www.mysql.com/doc/en/String_functions.html
Regards,
Jocelyn Fournier
- Original Message -
From: "MySQL" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 26, 2002 8:46 PM
Subj
I'd like to thank everyone for giving such helpful and detailed
responses;
it's the sort of thing that shows me how good the support here can be!
I did want to address some things that may not have been clear enough
in my original message. When I said "not speed" I didn't mean that speed
wasn't
Adam,
[ mysql, query ]
> However, you can do it manually (I think) by playing around with both
> the order of the where clause and the order of the join clause
Yes.
> Also, MySQL has a really wimpy default configuration (I can't figure out
> why). Here is my /etc/my.cnf (I don't know what th
t; Sent: Friday, August 16, 2002 10:21 AM
> To: Mary Stickney; Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
> Subject: Re: MySQL vs. Oracle (not speed)
>
>
> Hi,
>
> Which columns are indexed in your table ?
> What does EXPLAIN into MySQL return ?
>
> Regards,
>
ok fixed thoes every little bit helps... I hope.
-Original Message-
From: Jocelyn Fournier [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 1:00 PM
To: Mary Stickney; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
I also noticed the field where you make the
You can index fields with nulls. You can't make into a primary key, that's
all.
> -Original Message-
> From: Mary Stickney [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 12:38 PM
> To: Jocelyn Fournier; Mark Matthews; [EMAIL PROTECTED]
> Subject:
I'm sorry, but are you and I reading the same thread here? :)
> -Original Message-
> From: Serge Paquin [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 12:01 PM
> To: Mark Matthews
> Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: MySQL vs. Oracl
for reports only
-Original Message-
From: Gelu Gogancea [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 2:14 PM
To: Mary Stickney; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
...in this case...is very "sad".
You use this query t
- Original Message -
From: "Mary Stickney" <[EMAIL PROTECTED]>
To: "Gelu Gogancea" <[EMAIL PROTECTED]>; "Elizabeth Bogner"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 9:58 PM
Subject: RE: MySQL vs. Oracle (n
back.
-Original Message-
From: Gelu Gogancea [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 1:48 PM
To: Mary Stickney; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
Hi Mary,
My opinion:
MySQL forums are open to every one to said about him MySQL
pro
ight now
using alter table...
-Original Message-
From: Dan Nelson [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 1:08 PM
To: Mary Stickney
Cc: Jocelyn Fournier; Mark Matthews; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
In the last episode (Aug 16), Mary Stick
as MySQLAB strives for ANSI
compatibility like the other guys (PostgreSQL and Interbase).
-Original Message-
From: Kenneth Hylton [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 10:47 AM
To: [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
Our experience has been t
Hi Mary,
My opinion:
MySQL forums are open to every one to said about him MySQL
problems,experience... etc.From performance point of view(slow query), 90 %
from the people which was posted on this forums , has problem with Database
and Table design.Comparing RDBMS it's not quite fairly because ev
: MySQL vs. Oracle (not speed)
In the last episode (Aug 16), Mary Stickney said:
> looks to me like I can only make indexes on fields that are not
> null... this one is not , not null
Indexing of NULL columns went into Mysql 3.23.2 (Dec 16, 2000).
With tables this large, you might also want to
re not null...
> this one is not , not null
>
> -Original Message-
> From: Jocelyn Fournier [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 11:34 AM
> To: Mary Stickney; Mark Matthews; [EMAIL PROTECTED]
> Subject: Re: MySQL vs. Oracle (not speed)
>
&g
In the last episode (Aug 16), Mary Stickney said:
> looks to me like I can only make indexes on fields that are not
> null... this one is not , not null
Indexing of NULL columns went into Mysql 3.23.2 (Dec 16, 2000).
With tables this large, you might also want to raise some of the cache
paramete
his one is not , not null
>
> -Original Message-
> From: Jocelyn Fournier [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 11:34 AM
> To: Mary Stickney; Mark Matthews; [EMAIL PROTECTED]
> Subject: Re: MySQL vs. Oracle (not speed)
>
>
use the same field type.
- Original Message -
From: "Mary Stickney" <[EMAIL PROTECTED]>
To: "Jocelyn Fournier" <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 7:51 PM
Subject: RE: MySQL vs. Oracle (not speed)
>
> I hope this makes it faster , the pr
nbt a 5 year
> one and I am sure that will take 5 years to run... at this rate.
>
>
> -Original Message-
> From: Serge Paquin [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 11:01 AM
> To: Mark Matthews
> Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subjec
tickney [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 10:32 AM
To: Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
I am not for one or the other I just hate to wait
I need speed...
we already have a MS-SQL server , so no more money needs to
:53 AM
To: Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
I have been doing speed tests the same query ran on MYSQL took 45
minutes
on MS-SQL it took 11 minutes..
yes you do get what you pay for
-Original Message-
From: Francisco [mail
Hi!
- Original Message -
From: "Jocelyn Fournier" <[EMAIL PROTECTED]>
To: "Heikki Tuuri" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 7:16 PM
Subject: Re: MySQL vs. Oracle (not speed)
> Hi,
>
> Does the MySQL-4.1
MAIL PROTECTED]>; "Mark Matthews"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 6:38 PM
Subject: RE: MySQL vs. Oracle (not speed)
>
> looks to me like I can only make indexes on fields that are not null...
> this one is not , not null
D]>
To: "Mary Stickney" <[EMAIL PROTECTED]>; "Jocelyn Fournier"
<[EMAIL PROTECTED]>; "Mark Matthews" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 6:29 PM
Subject: RE: MySQL vs. Oracle (not speed)
>
> incidentaly...
ary Stickney" <[EMAIL PROTECTED]>; "Jocelyn Fournier"
<[EMAIL PROTECTED]>; "Mark Matthews" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 6:29 PM
Subject: RE: MySQL vs. Oracle (not speed)
>
> incidentaly... Primary keys c
:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 11:17 AM
To: Jocelyn Fournier; Mark Matthews; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
I am getting the taxid's I need from here so as not to try ane merge the
entire table..
and there are 833...
CREATE TABLE te
to run... at this rate.
-Original Message-
From: Serge Paquin [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 11:01 AM
To: Mark Matthews
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
I think this is a touch on the negative side. I'm
I did the first day I joined the list and again today
-Original Message-
From: John Griffin [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 10:09 AM
To: [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
Hi Mary,
It's not a question of approval. If you are h
Hi,
Does the MySQL-4.1 development tree publicly available (if so, on which port
??)
Regards,
Jocelyn
- Original Message -
From: "Heikki Tuuri" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 3:42 PM
Subject: Re: MySQL vs. Oracle (not
Mary Stickney; Mark Matthews; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
Could you please send also tempsap ?
Thanks and regards,
Jocelyn
- Original Message -
From: "Mary Stickney" <[EMAIL PROTECTED]>
To: "Mark Matthews" <[EMAIL PROTECTED]&
I think this is a touch on the negative side. I'm sure many people get soured on
MySQL when they to a post here and get yelled at for not trying hard enough. It
sounds like Mary is having a valid problem. Her query works fast in one database and
slow in the other. Because she did not come o
Could you please send also tempsap ?
Thanks and regards,
Jocelyn
- Original Message -
From: "Mary Stickney" <[EMAIL PROTECTED]>
To: "Mark Matthews" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 4:55 PM
Subject: RE: MySQ
yes I do
-Original Message-
From: Jocelyn Fournier [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 10:37 AM
To: Mary Stickney; Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
Do you have an index on AdminProducer.taxid and on
Mary Stickney wrote:
> no need to get defensive ...
>
> We did do a timed test.
>
> I am trying to sped up a program that currently take over 12 hours to run...
> I started running it yesterday morning and it is still going. and going and
> going...
Would it be possible for you to send the list
;[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 5:31 PM
Subject: RE: MySQL vs. Oracle (not speed)
>
> explian returns this
>
> ;table;type;possible_keys;key;key_len;ref;rows;Extra
> ;table;type;possible_keys;key;key_len;ref;rows;Extra
&g
;ProductIdIndex;15;AdminCoverage.ProductId;1
1;
;tempsap;ALL;10019;
-Original Message-
From: Jocelyn Fournier [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 10:21 AM
To: Mary Stickney; Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed
gt;; <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 4:31 PM
Subject: RE: MySQL vs. Oracle (not speed)
>
> I am not for one or the other I just hate to wait
> I need speed...
>
> we already have a MS-SQL server , so no more money needs to me spent...
>
> I
al Message-
From: Mary Stickney [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 10:28 AM
To: Mark Matthews; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
What exactly is Trolling
I find MYSQL to be slow , sorry if that doesn't met with your approval.
EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
Well, I meant this to be off-list (thus the next message) because I don't
want to start a round of M$ bashing, blah, blah...
But since I blew it already, I don't mean to sound harsh or defensive,
because, frankly, I don't ha
<= '20020430'
ORDER BY AdminHierarchy.WritingAgentSlot,AdminCoverage.CoverageId,
AdminCoverage.CoverageIdSbc,
AdminHierarchy.ProducerID
-Original Message-
From: Tom Gao [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 9:22 AM
To: [EMAIL PROTECTED]
Subject: Re: MySQL vs.
I did send in my query the day I joined this list and the table
structures.
I just did again...
-Original Message-
From: Mark Matthews [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 9:47 AM
To: Mary Stickney
Cc: [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed
),
KEY LobIdIndex (LOBID)
);
-Original Message-
From: Mark Matthews [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 9:15 AM
To: Mary Stickney; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not speed)
Mary Stickney wrote:
> I have been doing speed tests the same query ran
Mary Stickney wrote:
> What exactly is Trolling
>
>
> I find MYSQL to be slow , sorry if that doesn't met with your approval.
But you don't give examples.
I've found MS-SQL to be slow at times, especially when used from JDBC,
but I don't make crack comments about it newsgroups without bac
I did crash the MYSQL server the other day...
I am currently looping thru and getting the sales agent by agent.
I tried to do the query for all 804 agents at one time and after an hour and
a 1/2 and still not being done
decided against doing it that way.
next I decided I should have a table al
: Friday, August 16, 2002 10:36 AM
> To: [EMAIL PROTECTED]; Francisco; Elizabeth Bogner;
> [EMAIL PROTECTED]
> Subject: RE: MySQL vs. Oracle (not speed)
>
>
>
> no need to get defensive ...
>
> We did do a timed test.
>
> I am trying to sped up a program that currently
]]
Sent: Friday, August 16, 2002 9:25 AM
To: Mary Stickney; Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
Not to open a can of worms here, Mary, but I'd love to know exactly how you
got those results, since they basically contradict every known benchm
The "Open Source" argument went down well with my management. Of course,
both Oracle and MySQL have full support teams, and should fix any bugs in
their databases promptly - and, so far as I know, they do. However, we have
had problems with (other) large companies in the past when we find bugs in
L PROTECTED]]
Sent: Friday, August 16, 2002 9:21 AM
To: Mary Stickney; Elizabeth Bogner; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
Hi Mary,
I am not specially against or pro MySQL, Microsoft SQL
Server, Oracle or any other database. Teams make their
choices based on the projec
lto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 8:47 AM
> To: Mary Stickney; Elizabeth Bogner; [EMAIL PROTECTED]
> Subject: RE: MySQL vs. Oracle (not speed)
>
>
> Hi,
>
> I am beging using MySQL for quite a while and it is a
> very good choice if you don't r
What exactly is Trolling
I find MYSQL to be slow , sorry if that doesn't met with your approval.
-Original Message-
From: Mark Matthews [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 16, 2002 9:15 AM
To: Mary Stickney; [EMAIL PROTECTED]
Subject: Re: MySQL vs. Oracle (not
st 16, 2002 9:53 AM
> To: Francisco; Elizabeth Bogner; [EMAIL PROTECTED]
> Subject: RE: MySQL vs. Oracle (not speed)
>
>
>
> I have been doing speed tests the same query ran on MYSQL took 45
> minutes
> on MS-SQL it took 11 minutes..
>
> yes you do get what
what query was it may I ask ?
Tom
- Original Message -
From: "Mary Stickney" <[EMAIL PROTECTED]>
To: "Francisco" <[EMAIL PROTECTED]>; "Elizabeth Bogner"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 11:52 PM
; on MS-SQL it took 11 minutes..
>
> yes you do get what you pay for
>
> -Original Message-
> From: Francisco [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 16, 2002 8:47 AM
> To: Mary Stickney; Elizabeth Bogner;
> [EMAIL PROTECTED]
> Subject: RE: MySQL vs. O
Mary Stickney wrote:
> I have been doing speed tests the same query ran on MYSQL took 45
> minutes
> on MS-SQL it took 11 minutes..
>
> yes you do get what you pay for
Why not post the queries and the schemas here? My guess is you don't
have something indexed correctly, or are usi
; [EMAIL PROTECTED]
Subject: RE: MySQL vs. Oracle (not speed)
Hi,
I am beging using MySQL for quite a while and it is a
very good choice if you don't really need stored
procedures. MySQL provides a pretty good
implementation of a subset of MySQL-92, performance is
great, it is cross-pla
Hi,
I am beging using MySQL for quite a while and it is a
very good choice if you don't really need stored
procedures. MySQL provides a pretty good
implementation of a subset of MySQL-92, performance is
great, it is cross-platform, provides transactions,
and its price... well is free.
Hope it he
Let's see if I can convince your managers:
1. Support
Oracle offers support, this is true, but if you want pay for support, you can
buy it from MySQL AB. They have MySQL for free and they also have a licence
you can buy and ask for support. If you want to keep free, this list is a
good point f
Hi!
- Original Message -
From: ""John Griffin"" <[EMAIL PROTECTED]>
Newsgroups: mailing.database.mysql
Sent: Friday, August 16, 2002 3:29 PM
Subject: RE: MySQL vs. Oracle (not speed)
> Hi Elizabeth,
>
> The first question I would ask why don't yo
We've been using Oracle, Sybase, MS SQL, DB2 and even other databases in
our company, and we've decided to go with - mainly - MySQL. We didn't
really have a hard time convincing the management about this decision,
since we produced a whole "Open Source"-strategy at the same time,
giving some desi
It doesn't suport alot of differnt things
it dosent have store procedures , dosent have a complete SQL command set...
I am using it becasue I am being forced to...
-Original Message-
From: Elizabeth Bogner [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 15, 2002 9:25 PM
To: [EMA
Hi Elizabeth,
The first question I would ask why don't you want Oracle? If you can't come up with a
good business reason why your company shouldn't go with Oracle I would say you have
already lost the battle. The second question is who is making the purchasing decision?
If it's middle manageme
Price.
MySQL == Free
Oracle ==
On Thu, 2002-08-15 at 20:25, Elizabeth Bogner wrote:
>
> A company I work with is in the process of upgrading its databases from
> some
> motheaten system to something current. My impression is that they
> want to go with Oracle, and I'm not sure if this
A few things I can say from experience, Oracle support is quite expensive as
is their software and it is as much bloatware at M$ if not more.
Art
-Original Message-
From: Elizabeth Bogner [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 15, 2002 7:25 PM
To: [EMAIL PROTECTED]
Subject: M
I've used all three, Access, Oracle and MySQL. I have the least expertise
with Access.
My impressions are:
* Access is very limited in what it can do with respect to real database
manipulations, those contained in SQL. It does not handle large amounts of
data well. Access is really a very fan
Gene Gurevich wrote:
> them to Oracle. The developers are now considering
> switching from Access to MySQL and I'm trying to
> figure out what are the advantages of that move. I
Any DB is better than Access for a sizable table. Once access gets to about
100k records in a table it completely bom
OK
Well as you know MySQL has less bells and whistles vs oracle. This makes it
very fast.
The other thing with MySQL is that it is very reliable. The last thing is
that it can deal with very big databases.
So if you need a very fast DB but not all the stuff of oracle MySQL is you
database.
We use
Hi!
>On Wed, Jul 25, 2001 at 10:32:38PM -0600, Chris Bolt wrote:
>> > I am currently trying to examine the benefits of continuing to
>> > use MySQL over Oracle. I need to know what MySQL's features are
>> > vs. those of Oracle.
It is totaly useless to compare Oracle vs. MySQL.
Oracle is somethi
On Wed, Jul 25, 2001 at 10:32:38PM -0600, Chris Bolt wrote:
> > I am currently trying to examine the benefits of continuing to
> > use MySQL over Oracle. I need to know what MySQL's features are
> > vs. those of Oracle.
>
> http://www.mysql.com/information/crash-me.php
>
> > Also I am looking fo
> I am currently trying to examine the benefits of continuing to
> use MySQL over Oracle. I need to know what MySQL's features are
> vs. those of Oracle.
http://www.mysql.com/information/crash-me.php
> Also I am looking for performance data.
Oracle prohibits benchmarks, so good luck finding the
At 10:49 AM 1/22/2001 -0800, Ann Ricchiazzi quoth:
>Dear mySQL Users,
>
>I am trying to choose between mySQL and Oracle for a Linux server. My
>specific questions are:
>
>1) Will mySQL handle 3000 hits/day well?
Yes, over the last 219 hours one of my servers has been averaging 55.417
queries/sec
To: "Nathan Cook" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Monday, January 22, 2001 2:42 PM
Subject: Re: mySQL vs Oracle
>
> er, what?
> did i miss something? heh.
>
> -tcl.
>
>
> On Mon, 22 Jan 2001, Nathan Cook wrote:
>
> > Note: As of
Nathan Cook wrote:
>
> Note: As of version 3.2.3gamma Mysql Supports Sub-Selects.
See... I know I've been spending too much time at the computer when
I get email in my dreams :)
what version are you talking about anyway, that number isn't even
a valid version number..
-
ager - 208.387.9983 ]
>
> - Original Message -
> From: "Scott Gerhardt" <[EMAIL PROTECTED]>
> To: "Ann Ricchiazzi" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> Sent: Monday, January 22, 2001 12:10 PM
> Subject: RE: mySQL vs Oracle
>
&
> "AR" == Ann Ricchiazzi <[EMAIL PROTECTED]> writes:
AR> I am trying to choose between mySQL and Oracle for a Linux server. My
AR> specific questions are:
AR> 1) Will mySQL handle 3000 hits/day well?
You need to define what a "hit" is. Is it a simple select on the
primary key of a single t
To: "Ann Ricchiazzi" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Monday, January 22, 2001 12:10 PM
Subject: RE: mySQL vs Oracle
> Hello Ann,
>
> The answer to you question depends on how you plan to use the database
(i.e.
> financial trancactions, serving data
Hello Ann,
The answer to you question depends on how you plan to use the database (i.e.
financial trancactions, serving data on the web etc.) as well as financial
considerations. MySQL is free and Oracle is expensive.
Here are some questions you should answer:
1.) Do you need full Transaction
On Mon, 22 Jan 2001 10:49:28 -0800, Ann Ricchiazzi
([EMAIL PROTECTED]) wrote:
>Dear mySQL Users,
>
>I am trying to choose between mySQL and Oracle for a Linux server.
My
>specific questions are:
>
>1) Will mySQL handle 3000 hits/day well?
I'm on a site that does 90,000 database-heavy pages a day
Ann Ricchiazzi wrote:
>
> Dear mySQL Users,
>
> I am trying to choose between mySQL and Oracle for a Linux server. My
> specific questions are:
>
> 1) Will mySQL handle 3000 hits/day well?
> 2) Does mySQL handle multi-media file formats? For example, if I want to
> store audio clips, or Flash m
91 matches
Mail list logo