POV-Ray : Newsgroups : povray.off-topic : Database Engine Server Time
30 Jul 2024 04:23:14 EDT (-0400)
  Database Engine (Message 1 to 10 of 13)  
Goto Latest 10 Messages Next 3 Messages >>>
From: Tom Austin
Subject: Database Engine
Date: 14 Mar 2011 09:57:27
Message: <4d7e1ec7$1@news.povray.org>
I am looking for information and recommendations for a database engine.

We are setting up a relational database system that may reside on a 
database server in the future.

Linux based solution preferred

Something that is easy to set up and back up and restore.
   even a sql sump is ok

I will be using relationships (pk/fk) to keep data straight.

Triggers and stored procedures are a big plus.

The possibility of using GIS functionality int he future will be taken 
into consideration.


What are your thoughts on a good system to use?


Post a reply to this message

From: Le Forgeron
Subject: Re: Database Engine
Date: 14 Mar 2011 10:49:46
Message: <4d7e2b0a$1@news.povray.org>
Le 14/03/2011 14:57, Tom Austin a écrit :
> I am looking for information and recommendations for a database engine.
> 
> We are setting up a relational database system that may reside on a
> database server in the future.
> 
> Linux based solution preferred

Two main candidates (at least for me)
 - mysql
 - postgresql

Please note that MySQL AB is now owned by Oracle.
Opensource derivative to mysql is mariaDB.

> 
> Something that is easy to set up and back up and restore.
>   even a sql sump is ok

Both can be administered via a web interface for the common usage
(phpmyadmin & phppgadmin)

> 
> I will be using relationships (pk/fk) to keep data straight.
> 
> Triggers and stored procedures are a big plus.

Both have triggers.
Both have stored procedures.

> 
> The possibility of using GIS functionality int he future will be taken
> into consideration.

Both have support for spatial/geometry pieces of information.
Nevertheless, support

> 
> 
> What are your thoughts on a good system to use?

Check for yourself:
> http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems

(search for indexes & spatial)
Looks like you might want postgis

Unless you are ready for an oracle DB ?

-- 
Software is like dirt - it costs time and money to change it and move it
around.

Just because you can't see it, it doesn't weigh anything,
and you can't drill a hole in it and stick a rivet into it doesn't mean
it's free.


Post a reply to this message

From: Aydan
Subject: Re: Database Engine
Date: 14 Mar 2011 11:00:01
Message: <web.4d7e2aec810a6e603771cd8e0@news.povray.org>
Tom Austin <voi### [at] devnull> wrote:
> I am looking for information and recommendations for a database engine.
>
> We are setting up a relational database system that may reside on a
> database server in the future.
>
> Linux based solution preferred
>
> Something that is easy to set up and back up and restore.
>    even a sql sump is ok
>
> I will be using relationships (pk/fk) to keep data straight.
>
> Triggers and stored procedures are a big plus.
>
> The possibility of using GIS functionality int he future will be taken
> into consideration.
>
>
> What are your thoughts on a good system to use?

Hi Tom,

in my last project i've used MySQL and InnoDB engine.
I'm using multi column PKs and FKs and triggers.

Regards
Aydan


Post a reply to this message

From: Darren New
Subject: Re: Database Engine
Date: 14 Mar 2011 13:11:26
Message: <4d7e4c3e$1@news.povray.org>
Le_Forgeron wrote:
> Both can be administered via a web interface for the common usage
> (phpmyadmin & phppgadmin)

Be aware that you *will* get script kiddies every day or two trying to break 
in via phpmyadmin. Make sure it's behind a firewall, good password, etc. 
When I was running Linux servers, that and trying to break into drupal were 
the only frequent 404's I was issuing.

-- 
Darren New, San Diego CA, USA (PST)
  "How did he die?"   "He got shot in the hand."
     "That was fatal?"
          "He was holding a live grenade at the time."


Post a reply to this message

From: Tom Austin
Subject: Re: Database Engine
Date: 14 Mar 2011 13:16:42
Message: <4d7e4d7a$1@news.povray.org>
On 3/14/2011 1:11 PM, Darren New wrote:
> Le_Forgeron wrote:
>> Both can be administered via a web interface for the common usage
>> (phpmyadmin & phppgadmin)
>
> Be aware that you *will* get script kiddies every day or two trying to
> break in via phpmyadmin. Make sure it's behind a firewall, good
> password, etc. When I was running Linux servers, that and trying to
> break into drupal were the only frequent 404's I was issuing.
>

Completely off topic, but....

I am looking into implementing a drupal site - is there much to look out 
for as far as vulnerabilities?

Thanks


Post a reply to this message

From: nemesis
Subject: Re: Database Engine
Date: 14 Mar 2011 13:40:01
Message: <web.4d7e5220810a6e60773c9a3e0@news.povray.org>
Tom Austin <voi### [at] devnull> wrote:
> I am looking for information and recommendations for a database engine.
>
> We are setting up a relational database system that may reside on a
> database server in the future.
>
> Linux based solution preferred
>
> Something that is easy to set up and back up and restore.
>    even a sql sump is ok
>
> I will be using relationships (pk/fk) to keep data straight.
>
> Triggers and stored procedures are a big plus.
>
> The possibility of using GIS functionality int he future will be taken
> into consideration.
>
>
> What are your thoughts on a good system to use?

you are very obviously asking for Postgresql:

http://www.postgresql.org/

besides being the most robust open-source DBMS out there, one of the very first
features I noticed was this strange thing called GIS.  This was back then, today
I learned Postgresql comes with no GIS on its own, instead users are directed to
use it together with PostGIS:

http://www.postgis.org/


Post a reply to this message

From: Darren New
Subject: Re: Database Engine
Date: 14 Mar 2011 13:44:28
Message: <4d7e53fc$1@news.povray.org>
On 3/14/2011 10:16, Tom Austin wrote:
> I am looking into implementing a drupal site - is there much to look out for
> as far as vulnerabilities?

I didn't do drupal. We just had people attacking our non-existant drupal 
install. :-)

-- 
Darren New, San Diego CA, USA (PST)
  "How did he die?"   "He got shot in the hand."
     "That was fatal?"
          "He was holding a live grenade at the time."


Post a reply to this message

From: Tom Austin
Subject: Re: Database Engine
Date: 14 Mar 2011 14:23:03
Message: <4d7e5d07$1@news.povray.org>
On 3/14/2011 1:44 PM, Darren New wrote:
> On 3/14/2011 10:16, Tom Austin wrote:
>> I am looking into implementing a drupal site - is there much to look
>> out for
>> as far as vulnerabilities?
>
> I didn't do drupal. We just had people attacking our non-existant drupal
> install. :-)
>

Reminds me of seeing malformed URL requests to hack a windows based web 
server - but the server was on Linux ;-)

I'll have to check out drupal vulnerabilities as I move forward.


Thanks


Post a reply to this message

From: Darren New
Subject: Re: Database Engine
Date: 14 Mar 2011 18:38:17
Message: <4d7e98d9$1@news.povray.org>
On 3/14/2011 11:23, Tom Austin wrote:
> I'll have to check out drupal vulnerabilities as I move forward.

The best thing to do is keep a log of 404's (or any 400/500 error really) 
that you *actually* look at relatively frequently. If you don't get many 
404's, mail a summary to your inbox each day and look at it.

-- 
Darren New, San Diego CA, USA (PST)
  "How did he die?"   "He got shot in the hand."
     "That was fatal?"
          "He was holding a live grenade at the time."


Post a reply to this message

From: Invisible
Subject: Re: Database Engine
Date: 15 Mar 2011 05:04:26
Message: <4d7f2b9a$1@news.povray.org>
> Reminds me of seeing malformed URL requests to hack a windows based web
> server - but the server was on Linux ;-)

Yeah, I had this also, back when I was running Apache on my laptop. Kind 
of amusing...


Post a reply to this message

Goto Latest 10 Messages Next 3 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.