Grokbase
x

Richard Broersma Jr (rabro...@yahoo.com)

Profile | Posts (677)

User Information

Display Name:Richard Broersma Jr
Partial Email Address:rabro...@yahoo.com
Posts:
677 total
37 in PostgreSQL - Admin
2 in PostgreSQL - Advocacy
3 in PostgreSQL - Docs
249 in PostgreSQL - General
5 in PostgreSQL - JDBC
213 in PostgreSQL - Novice
27 in PostgreSQL - ODBC
12 in PostgreSQL - Performance
140 in PostgreSQL - SQL

5 Most Recent

All Posts
1) Richard Broersma Jr Re: [GENERAL] Is PostGreSql's Data storage mechanism "inferior"?
| +1 vote
" ... might slow down ..." I guess they didn't check to know one way or ther other whether It does...
PostgreSQL - General
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
--- On Wed, 1/30/08, Swaminathan Saikumar <swami@giveexam.com> wrote:

> The cons of PostgreSql Hosting
> * Performance considerations: Inserts and Updates into the
> PostgreSql database is much slower compared to MySql. PostgreSql
> hosting thus might slow down the display of the web page online.

" ... might slow down ..." I guess they didn't check to know one way or ther other whether It does slow down a web page. The real answer depends upon your they kind of uses you have.

> * BSD license issues: Since PostgreSql comes under the
> Berkeley license scheme, this is again considered to be too open.

What does "too open" mean?  Is too open a bad thing?

> * Availability of inferior Data Storage mechanism:
> PostgreSql uses Postgres storage system, which is not considered to be transaction sae during PostgreSql hosting.

It seems they misspelled "safe". But in either case they also seemed to have confused MySQL with PostgreSQL on this point. Being transactionally "safe" is one of PostgreSQL's strongest points.

> * Its not far-flung: While MySql hosting and MSSql hosting have deeply
> penetrated into the market, PostgreSql hosting still remains to be passive in the database hosting market.

My gut says that this is probably true. But there are very good hosting sites that provide PostgreSQL.


> * Non-availability of required assistance for PostgreSQL hosting: Assistance is being provided via mailing lists. However there is no guarantee that the issue faced during PostgreSQL hosting would be resolved.

If you have a highly critical application that requires guaranteed assistance you are more than able to purchase it from some top notch consultant companies that support PostgreSQL. Just check out the PostgreSQL home page. So I don't this this point is correct either.

If you don't get too much feed back on this subject, just remember that topics like this come up frequently to the point of list member exhaustion. You can find such discussions if you search the list archive.

Regards,
Richard Broersma Jr.


---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend
2) Richard Broersma Jr Re: [GENERAL] referencing to "computed columns" in where clause
| +1 vote
SELECT ( a-b ) as pippo FROM Yourtable WHERE ( a-b ) = 7 UNION ALL SELECT ( a*b ) as pippo FROM...
PostgreSQL - General
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
--- On Tue, 1/29/08, Ivan Sergio Borgonovo <mail@webthatworks.it> wrote:

>> other than defining a function such that I can write:

   SELECT ( a-b ) as pippo
     FROM Yourtable
    WHERE ( a-b ) = 7
UNION ALL
   SELECT ( a*b ) as pippo
     FROM Yourtable
    WHERE ( a*b ) < 12
      AND a > 3
UNION ALL
   SELECT ( a+b ) as pippo
     FROM Yourtable
    WHERE ( a+b ) < 12
      AND a < 3;


---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend
3) Richard Broersma Jr Re: [GENERAL] altering foreign keys
| +1 vote
ALTER TABLE your_table DROP CONSTRAINT your_column_fkey_constraint, ADD CONSTRAINT...
PostgreSQL - General
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
--- On Tue, 1/22/08, Adam Rich <adam.r@sbcglobal.net> wrote:

> Is there a way to alter the
> existing keys? (it didn't jump out at me in the manual)

    ALTER TABLE your_table
DROP CONSTRAINT your_column_fkey_constraint,
ADD CONSTRAINT your_column_fkey_constraint
    FOREIGN KEY your_column
     REFERENCES parent_table( primary_column )
      ON UPDATE CASCADE;

Regards,
Richard Broersma Jr.

---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org/
4) Richard Broersma Jr Re: [GENERAL] many to one of many modeling question
| +1 vote
Actually, I think if you notice the example I posted previously, I made both the Unique ID column...
PostgreSQL - General
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
--- On Fri, 1/11/08, David Fetter <david@fetter.org> wrote:

> > One method
> > that has been proposed is to have a third table which
> stores to what object
> > type a comment belongs, but I don't like this
> because the foreign key
> > relationships then wouldn't be maintained by the
> database. The only way
> > that I'm able to think of at the moment is
> multiple columns.

Actually, I think if you notice the example I posted previously, I made both the Unique ID column and object type column a composite primary key.

The other tables referenced this composite primary key as foreign keys using referential integrity ON UPDATE CASCADE. This means that they database ~would~ maintain/enforce the object-type portion of the foreign key automatically for you.

Regards,
Richard Broersma Jr.

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [email protected: majo...@postgresql.org] so that your
message can get through to the mailing list cleanly
5) Richard Broersma Jr Re: [GENERAL] Announcing PostgreSQL RPM Buildfarm
| +1 vote
Maybe a Freudian slip? ;) ---------------------------(end of broadcast)---------------------------...
PostgreSQL - General
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
--- On Mon, 1/7/08, Devrim GÜNDÜZ <devrim@CommandPrompt.com> wrote:

> wrote:
> > what is a botherboard?
>
> Brotherboard -- motherboard is a bit old.

Maybe a Freudian slip? ;)

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

spacer
Profile | Posts (677)
Home > People > Richard Broersma Jr