Обсуждение: General Database Design Text

Поиск
Список
Период
Сортировка

General Database Design Text

От
John Burski
Дата:
I'm looking for a good college-level text that covers general database
design and implementation.  I've copies of all the PostgreSQL
documentation and they are fine when it comes to answering questions
about PostgreSQL usage.  However, I'm interested in something more
general that covers the "how" and "why" of database design,
implementation, and usage.

Any suggestions?

Thanks.

--
John Burski
Chief IT Cook and Bottlewasher
911 Emergency Products, St. Cloud, MN
(320) 656 0076       www.911ep.com

++++++++++++++++++++++++++++++++++
+ How's your cheese holding out? +
++++++++++++++++++++++++++++++++++




Re: General Database Design Text

От
Francisco Reyes
Дата:
On Tue, 6 Feb 2001, John Burski wrote:

> I'm looking for a good college-level text that covers general database
> design and implementation.

Don't know of a good book, but in the mean time.
Search the web for "normal form".
Understanding normalization is probably one of the basic things which
would help you in your designs. I am not saying you should normalize every
time you design, but if you have an understanding of what that is all
about you will be able to do better designs.

You may also want to subscribe/read some database newsgroups. I believe
there is one called comp.database.theory. That may be a good place to ask
for books too.


Re: General Database Design Text

От
info@i-developit.com
Дата:
There are also some descent articles on some of the
PHP sites that talk about database normalization. I
look at it like if anything is repetitive it should
probably have it's own table. Not always in every
scenario, but keep in mind that when you move towards
database normalization your queries will most likely
become more complicated also. When I used to store
information in a single table in a database I now find
my self breaking things out quite a bit more, not only
is this faster, especially when you can link things with
integers, but much easier to upgrade and much faster for
programming on many occassions.

Check out www.phpbuilder.com for some basic information
about DB's and such.  There are also great articles related
to php.  The other thing is sit down and read the pgsql
book located on the postgres site. And when in doubt just
stop by your nearest chat room and ask questions. Most
people are willing to answer.

Hope this helps.
Andy Holman
I-Developit.Com Inc.,


Francisco Reyes wrote:
>
> On Tue, 6 Feb 2001, John Burski wrote:
>
> > I'm looking for a good college-level text that covers general database
> > design and implementation.
>
> Don't know of a good book, but in the mean time.
> Search the web for "normal form".
> Understanding normalization is probably one of the basic things which
> would help you in your designs. I am not saying you should normalize every
> time you design, but if you have an understanding of what that is all
> about you will be able to do better designs.
>
> You may also want to subscribe/read some database newsgroups. I believe
> there is one called comp.database.theory. That may be a good place to ask
> for books too.

Re: General Database Design Text

От
Jacques Williams
Дата:
An Introduction to Database Systems, by C.J. Date (Addison-Wesley, 1995, ISBN
# 0-201-54329-X). It's heavy on theory, but it will give you a good foundation.

You might also want to take a look at The Practical SQL Handbook, by Judith
S. Bowman, Sandra L. Emerson, and Marcy Darnovsky (Addison-Wesley, 1998,
ISBN # 0-201-44787-8).

HTH,

Jacques Williams

On Tue, Feb 06, 2001 at 09:26:24AM -0600, John Burski wrote:
> I'm looking for a good college-level text that covers general database
> design and implementation.  I've copies of all the PostgreSQL
> documentation and they are fine when it comes to answering questions
> about PostgreSQL usage.  However, I'm interested in something more
> general that covers the "how" and "why" of database design,
> implementation, and usage.
>
> Any suggestions?
>
> Thanks.
>
> --
> John Burski
> Chief IT Cook and Bottlewasher
> 911 Emergency Products, St. Cloud, MN
> (320) 656 0076       www.911ep.com
>
> ++++++++++++++++++++++++++++++++++
> + How's your cheese holding out? +
> ++++++++++++++++++++++++++++++++++
>
>
>