473,569 Members | 2,490 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

RDBMS server engines - an overview?

Has anybody seen one? Or care to offer (a brief) one? Yes, I've done some
searching of the archives. Anybody who's read my posts over the past couple
of years (and there must be at least one or two of you!) will know my only
real experience is with Access/Jet. But it's becoming clear to me that for
career's sake I've got to expand my skill set. MS SQL Server is first on the
list, not because it's necessarily the best/most cost effective or whatever,
but because people use it, and I like the look of ADPs. But if I'm
reccomending client(prob Access)/server solutions to customers, what are the
opinions on:

PostGreSQL

MySQL

Oracle

MS SQL Server

DB2

etc.

That's a bit of a broad question, sorry. I'm just after general comparisons
really. And I respect the opinions of the people here.

TIA, Mike MacSween
Nov 12 '05 #1
12 2785
An interesting technical characteristic of Oracle, is that it offers the
following four things simultaneously:
o a consistent view of the data returned by each SELECT,
o regardless of how long the SELECT takes to execute,
o even if other processes are comitting updates to the selected records
at the same time, and
o without holding any locks!!

This can be important when:
o there is a very high data entry/update load,
o there are concurrent queries for reports etc.,
o it is essential for those reports to present a consistent view of the
data at one single point in time, and
o it is not acceptable to achive that using data locks (thereby slowing
or suspending other processes).

Oracle also has the full complement of heavy-duty transaction processing &
point-in-time recovery. (As you are doubtless aware, Jet transactions are
not transactions at all. They *do not* guarantee that all the data in the
transaction is saved, or not saved, & the database is left in one of those
two states.)

HTH,
TC
"Mike MacSween" <mi************ ******@btintern et.com> wrote in message
news:3f******** *************@p ubnews.gradwell .net...
Has anybody seen one? Or care to offer (a brief) one? Yes, I've done some
searching of the archives. Anybody who's read my posts over the past couple of years (and there must be at least one or two of you!) will know my only
real experience is with Access/Jet. But it's becoming clear to me that for
career's sake I've got to expand my skill set. MS SQL Server is first on the list, not because it's necessarily the best/most cost effective or whatever, but because people use it, and I like the look of ADPs. But if I'm
reccomending client(prob Access)/server solutions to customers, what are the opinions on:

PostGreSQL
MySQL
Oracle
MS SQL Server
DB2
etc.

That's a bit of a broad question, sorry. I'm just after general comparisons really. And I respect the opinions of the people here.

TIA, Mike MacSween

Nov 12 '05 #2
TC
So - Oracle it is, Mike!

TC
"Mike MacSween" <mi************ ******@btintern et.com> wrote in message
news:3f******** *************@p ubnews.gradwell .net...
Has anybody seen one? (snip)


Nov 12 '05 #3
"TC" <a@b.c.d> wrote in message news:1064117934 .400231@teuthos ...
So - Oracle it is, Mike!


Yup, looks like the one. My £20,000 cheque is in the post now <g>

Mike
Nov 12 '05 #4
On Sun, 21 Sep 2003 07:21:05 +0100 in comp.databases, "Mike MacSween"
<mi************ ******@btintern et.com> wrote:
"TC" <a@b.c.d> wrote in message news:1064117934 .400231@teuthos ...
So - Oracle it is, Mike!


Yup, looks like the one. My £20,000 cheque is in the post now <g>


IIRC you can get a personal/developer edition free (not sure about
Windows anymore by certainly on Linux), then just leave it to your
clients to hand over the big cheques :-)

Out of interest, as an Access developer of many years, would you still
consider Access as a front end or go with something else? (given that
Access can still be bandwidth hungry with linked tables).

--
A)bort, R)etry, I)nfluence with large hammer.
Nov 12 '05 #5
"Trevor Best" <bouncer@localh ost> wrote in message
news:m1******** *************** *********@4ax.c om...
On Sun, 21 Sep 2003 07:21:05 +0100 in comp.databases, "Mike MacSween"
<mi************ ******@btintern et.com> wrote:
"TC" <a@b.c.d> wrote in message news:1064117934 .400231@teuthos ...
So - Oracle it is, Mike!
Yup, looks like the one. My £20,000 cheque is in the post now <g>


IIRC you can get a personal/developer edition free (not sure about
Windows anymore by certainly on Linux), then just leave it to your
clients to hand over the big cheques :-)


It seems to be about £250 as far as I can tell. But yes, there's certainly a
development version that's a lot cheaper than the one a client would need.
Out of interest, as an Access developer of many years, would you still
consider Access as a front end or go with something else? (given that
Access can still be bandwidth hungry with linked tables).


Not too much experience of any other front end to tell the truth. But I
don't see why not. I think Access is a superb RAD tool. And combined with a
true server backend should be good.

Yours, Mike
Nov 12 '05 #6
"Trevor Best" <bouncer@localh ost> wrote in message
news:m1******** *************** *********@4ax.c om...
On Sun, 21 Sep 2003 07:21:05 +0100 in comp.databases, "Mike MacSween"
<mi************ ******@btintern et.com> wrote:
"TC" <a@b.c.d> wrote in message news:1064117934 .400231@teuthos ...
So - Oracle it is, Mike!
Yup, looks like the one. My £20,000 cheque is in the post now <g>


IIRC you can get a personal/developer edition free (not sure about
Windows anymore by certainly on Linux), then just leave it to your
clients to hand over the big cheques :-)


Yes the personal edition for windows is still available for free.
Out of interest, as an Access developer of many years, would you still
consider Access as a front end or go with something else? (given that
Access can still be bandwidth hungry with linked tables).

--
A)bort, R)etry, I)nfluence with large hammer.

Nov 12 '05 #7
TC

Harald Fuchs <no****@sap.com > wrote in message
news:pu******** ****@srv.protec ting.net...
In article <1064065832.367 431@teuthos>,
"cafe" <a@b.c.d> writes:
An interesting technical characteristic of Oracle, is that it offers the
following four things simultaneously:
o a consistent view of the data returned by each SELECT,
o regardless of how long the SELECT takes to execute,
o even if other processes are comitting updates to the selected records at the same time, and
o without holding any locks!!

This can be important when:
o there is a very high data entry/update load,
o there are concurrent queries for reports etc.,
o it is essential for those reports to present a consistent view of the data at one single point in time, and
o it is not acceptable to achive that using data locks (thereby slowing or suspending other processes).


What's the difference to PostgreSQL (except of the price)?

Sorry, I don't know anything about PostgreSQL.

TC

Nov 12 '05 #8
"Dana" <da************ **@gci.net> wrote in message news:<vm******* *****@corp.supe rnews.com>...

Yes the personal edition for windows is still available for free.


I'm interested in looking into this too. I'm just a student though,
and I'm looking to expand my horizons.

How can one get a hold of this? Are there any recommended resources
to check out to get started? Is it a major departure from Access /
Jet?
Nov 12 '05 #9
You can download it from the web site. But about 2gb of files! So you need a
high speed connection.

Mike

"Andante.in.Blu e" <05********@sne akemail.com> wrote in message
news:bc******** *************** ***@posting.goo gle.com...
"Dana" <da************ **@gci.net> wrote in message

news:<vm******* *****@corp.supe rnews.com>...

Yes the personal edition for windows is still available for free.


I'm interested in looking into this too. I'm just a student though,
and I'm looking to expand my horizons.

How can one get a hold of this? Are there any recommended resources
to check out to get started? Is it a major departure from Access /
Jet?

Nov 12 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2103
by: Matt O'Toole | last post by:
I'm looking for a website backend. I can use PHP and other scripting languages, but I don't have access to an RDBMS. So I'm looking for an RDBMS substitute -- maybe something that reads/writes plain text or XML files sitting on the web server. Any ideas? Matt O.
0
4126
by: R. Rajesh Jeba Anbiah | last post by:
Q: Is PHP search engine friendly? Q: Will search engine spiders crawl my PHP pages? A: Spiders should crawl anything provided they're accessible. Since, nowadays most of the websites are been developed with PHP, you are not supposed to doubt that. As a proof that PHP pages could be crawled and indexed, refer this Google search
1
1812
by: Marek Kotowski | last post by:
I'm preparing short dictionary and this is the question: are 'RDBMS' and 'database server' synonyms? If not, what are the differences? Thanx in advance. Regards Marek Kotowski Warsaw
125
14597
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from software giant such as Microsoft SQL Server, Oracle, and Sybase? Is PostgreSQL reliable enough to be used for high-end commercial application? Thanks
4
3715
by: Patrick Masson | last post by:
Hello, Our configuration : Apache 2.0.53 PHP 5.0.4 PC Windows 2000 MATLAB 6.1 We work on a consulting project in France which involves MATLAB Web server,
3
1631
by: Michael Lueck | last post by:
Considering a project which will target DB2 UDB on Linux as the primary / suggested platform, but also support MySQL and/or PostgreSQL as our project is GPL so it would be "slightly" rude then to require a licensed database to even "kick the tires"... but then DB2 does rock! Anyway, considering that focus, the database class we develop will...
43
2869
by: sinister | last post by:
Is MS Access a true RDBMS?
2
1480
by: Steven | last post by:
A dump question: for project using access as front-end and RDBMS server (such as sqlsvr) as backend, do we create db in backend first before linking front-end with, or vice versa? Any comment is appreciated.
0
12875
Coldfire
by: Coldfire | last post by:
Since i cannot show the differences in a two-column like table. I am first putting MS SQL Server 2005 and then MySQL 5.x. MS SQL Server 2005 Brief Overview - SQL Server is a full-fledged database system developed specifically for large enterprise databases. All advanced features of a relational database are fully implemented. - Once...
0
7703
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7618
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7926
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8132
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7678
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
1
5514
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5222
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3644
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
944
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.