Re: [PERFORM] Compared MS SQL 2000 to Postgresql 9.0 on Windows

2010-12-17 Thread Richard Broersma
large chunks of data, then PostgreSQL will not perform as well as SQL server. SQL server can divide processing load of complicated queries across several processor, while PostgreSQL cannot. So, I guess it depends upon your workload. -- Regards, Richard Broersma Jr. -- Sent via pgsql

Re: [PERFORM] Compared MS SQL 2000 to Postgresql 9.0 on Windows

2010-12-07 Thread Richard Broersma
a transaction to begin with. -- Regards, Richard Broersma Jr. -- Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance

Re: [PERFORM] Clarification, please

2010-12-01 Thread Richard Broersma
like the check isn't preformed until COMMIT. -- Regards, Richard Broersma Jr. -- Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance

Re: [PERFORM] Slow Query- Simple taking

2010-10-28 Thread Richard Broersma
On Thu, Oct 28, 2010 at 7:51 AM, Mladen Gogala mladen.gog...@vmsinfo.com wrote: Yyesss! Any time frame on that? Can you make it into 9.0.2? Maybe 9.1.0 or 9.2.0 :) 9.0's features are already frozen. -- Regards, Richard Broersma Jr. Visit the Los Angeles PostgreSQL Users Group (LAPUG) http

[PERFORM] Re: 回复:Re: [PERFORM] the jokes for pg concurre ncy write performance

2010-02-02 Thread Richard Broersma
conflict, what aspect of it did you want to talk about? Also, so that others (having much more experience that I do) can participate in this discussion please reply-all to the email. This will ensure that the pgsql-performance@postgresql.org mailing is included. -- Regards, Richard Broersma Jr

Re: [PERFORM] the jokes for pg concurrency write performance

2010-02-01 Thread Richard Broersma
On Feb 1, 2010, at 8:57 PM, wyx6...@sina.com wrote: i found a joke ,maybe this joke concurrency strategy is the designer's pround idea, but i think it is a joke , next let me describe the problems: I would suggest that the behavior that you dislike so much is really not idea of the

Re: [PERFORM] New server to improve performance on our large and busy DB - advice? (v2)

2010-01-15 Thread Richard Broersma
-bait-ish. -- Regards, Richard Broersma Jr. Visit the Los Angeles PostgreSQL Users Group (LAPUG) http://pugs.postgresql.org/lapug -- Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql

Re: [PERFORM] noob inheritance question

2010-01-06 Thread Richard Broersma
especially), I'd be most grateful. PostgreSQL inheritance is just a sugar coated form of horizontal table partitioning. So it suffers from all of the problems associated with selection on UNION ALL queries. -- Regards, Richard Broersma Jr. Visit the Los Angeles PostgreSQL Users Group (LAPUG

Re: [PERFORM] query planner and scanning methods

2008-09-24 Thread Richard Broersma
On Tue, Sep 23, 2008 at 3:57 PM, Richard Broersma [EMAIL PROTECTED] wrote: SELECT A.dimension_book.call, SUM( B.dimension_book.call ) AS OrderedRowNbr FROM ( your_above_query_without_the_limits ) AS A INNER JOIN ( your_above_query_without_the_limits ) AS B ON A.dimension_book.call

Re: [PERFORM] query planner and scanning methods

2008-09-23 Thread Richard Broersma
guarantee a faster index scan if you recall the last 10th value from the previous query. Then remove the offset predicate and replace it with the following WHERE clause: WHERE ... AND dimension_book.call _last_queried_10th_row-dimension_book_call, ... LIMIT 10; -- Regards, Richard Broersma Jr

Re: [PERFORM] query planner and scanning methods

2008-09-23 Thread Richard Broersma
; -- Regards, Richard Broersma Jr. Visit the Los Angeles PostgreSQL Users Group (LAPUG) http://pugs.postgresql.org/lapug -- Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance

Re: [PERFORM] What constitutes a complex query

2008-05-06 Thread Richard Broersma
and produce an ordered list displaying the ranking for each team according to their average time. -- Regards, Richard Broersma Jr. Visit the Los Angles PostgreSQL Users Group (LAPUG) http://pugs.postgresql.org/lapug -- Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org) To make

Re: [PERFORM] EXPLAIN detail

2008-04-09 Thread Richard Broersma
-friendly. Another option would be to create a functional index on date_trunc( 'day', cdr.calldate) then using a where condition like: date_trunc(a.calldate) = '2008-04-09' would definitely use an index. -- Regards, Richard Broersma Jr. -- Sent via pgsql-performance mailing list (pgsql

Re: [PERFORM] query plan worse after analyze

2007-10-07 Thread Richard Broersma Jr
--- Stephen Frost [EMAIL PROTECTED] wrote: (perhaps a pastebin like http://pgsql.privatepaste.com) instead of or in addition to sending it in the email. It this new? I don't remember seeing this used before. Regards, Richard Broersma Jr. ---(end of broadcast

Re: [PERFORM] [ADMIN] ADO -PostgreSQL OLE DB Provider

2007-09-06 Thread Richard Broersma Jr
will not change soon since the OLE DB driver is not actively supported. Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do

Re: [PERFORM] Vacum Analyze problem

2007-09-04 Thread Richard Broersma Jr
/docs/8.2/static/sql-analyze.html http://www.postgresql.org/docs/8.2/static/routine-vacuuming.html Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq

Re: [PERFORM] specific query (not all) on Pg8 MUCH slower than Pg7

2007-05-08 Thread Richard Broersma Jr
is ^ ^ -- lowest AND highest expected value Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get

Re: [PERFORM] [GENERAL] Need Help

2006-12-27 Thread Richard Broersma Jr
-admin.html#FUNCTIONS-ADMIN-DBSIZE Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 7: You can help support the PostgreSQL project by donating at http://www.postgresql.org/about/donate

Re: [PERFORM] Postgres server crash

2006-11-19 Thread Richard Broersma Jr
boil down to experiences based on trial and error. Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq

Re: [PERFORM] Hints proposal

2006-10-12 Thread Richard Broersma Jr
-run-time tune-able. In regards to query planning, I wonder if there is way to model a controller that could adjust/alter query plans based on a comparison of expected and actual query execution times. Regards, Richard Broersma Jr. ---(end of broadcast

Re: [NOVICE] [PERFORM] 7.3.2 pg_restore very slow

2006-08-07 Thread Richard Broersma Jr
on this machine is 512MB. I am not sure how to set these parameters SHMMAX and SHMMIN. Any help/advice would be greatly appreciated. http://www.postgresql.org/docs/8.1/interactive/kernel-resources.html This will help you to set the kernel parameters. Regards, Richard Broersma Jr

Re: [NOVICE] [PERFORM] 7.3.2 pg_restore very slow

2006-08-07 Thread Richard Broersma Jr
and at the same time allow for harmonious sharing between various programs/services. Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org

Re: [PERFORM] [Fwd: Delivery Status Notification (Failure)]

2006-07-12 Thread Richard Broersma Jr
. Should the [EMAIL PROTECTED] be getting these and discarding them? Thanks, Craig Does the message come from postgresql.org or is the bounced email coming from these specific users when you include them in reply-all? Regards, Richard Broersma jr. ---(end

Re: [PERFORM] [Fwd: Delivery Status Notification (Failure)]

2006-07-12 Thread Richard Broersma Jr
This is an automatically generated Delivery Status Notification. Delivery to the following recipients failed. [EMAIL PROTECTED] yes, I got the same thing that you did here. only i got when I replied all to your email. Are you sure this individual wasn't listed in any of your

Re: [PERFORM] Is postgresql ca do the job for software deployed in ASP ou SaaS mode?

2006-07-03 Thread Richard Broersma Jr
would be interested in knowing about them and adding them to the http://www.postgresql.org/about/ we be helpful also. Regards, Richard Broersma Jr. ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http

Re: [PERFORM] how to partition disks

2006-06-14 Thread Richard Broersma Jr
raid 10 is of course not questionable. but are you sure that it will work faster than for example: 2 discs (raid 1) for xlog 6 discs (raid 10) for tables 6 discs (raid 10) for indices? This depends on your application. Do you have a lot of disc reads? Anyhow, I would put the xlog

Re: [PERFORM] GROUP BY Vs. Sub SELECT

2006-04-24 Thread Richard Broersma Jr
I'd like to get more info on EXPLAIN ANALYZE output... where can I read more about it? I believe this link has what you are looking for: http://www.postgresql.org/docs/8.1/interactive/performance-tips.html Regards, Richard Broersma Jr. ---(end of broadcast