> On Jun 19, 2018, at 10:14 PM, Ravi Krishna <srkrishna@xxxxxxxxx> wrote: > >> >> If performance is relevant then your app should probably be using COPY protocol, not line by line inserts. It's >> supported by most postgresql access libraries. If your app does that then using "\copy" from psql would be >> an appropriate benchmark. > > Actually the reluctance to not use COPY is to make the benchmark same across two different RDBMS in > two diff env. That's something I'd only do if I intended to rig a benchmark between a RDBMS with good bulk import and one without. If that's not your goal, your approach doesn't seem to make sense and is unlikely to provide performance metrics that are useful or related to your app performance, unless you intend to hamstring your app in exactly the same way you're running the benchmark. Maybe use your app, or write ten minutes worth of code that'll interact with the database in much the same way as your app will? Cheers, Steve