Very long SQL strings - Mailing list pgsql-performance

From Steven Flatt
Subject Very long SQL strings
Date
Msg-id 357fa7590706211133u2ae43d09id1653ca63d7a7838@mail.gmail.com
Whole thread Raw
Responses Re: Very long SQL strings
Re: Very long SQL strings
Re: Very long SQL strings
List pgsql-performance
I can't seem to find a definitive answer to this.
 
It looks like Postgres does not enforce a limit on the length of an SQL string.  Great.  However is there some point at which a query string becomes ridiculously too long and affects performance?  Here's my particular case: consider an INSERT statement where you're using the new multi-row VALUES clause or SELECT ... UNION ALL to group together tuples.  Is it always better to group as many together as possible?
 
For example, on a toy table with two columns, I noticed about a 20% increase when bulking together 1000 tuples in one INSERT statement as opposed to doing 1000 individual INSERTS.  Would this be the same for 10000? 100000?  Does it depend on the width of the tuples or the data types?
 
Are there any values A and B such that grouping together A tuples and B tuples separately and running two statements, will be faster than grouping A+B tuples in one statement?
 
Steve
 

pgsql-performance by date:

Previous
From: Rainer Bauer
Date:
Subject: Re: Data transfer very slow when connected via DSL
Next
From: Heikki Linnakangas
Date:
Subject: Re: Database-wide VACUUM ANALYZE