My purpose is to test my application particularly PHP, my database API (which is PostgreSQL and Postgres stored procedures), and the Postgres database backend. so the process employed is as follows:
From a PHP page
1. Get input parameters such as number of records to write and data to make my dummy records unique.
2. loop 100,000 times calling my WriteNewAccount() stored procedure to create 100,000 new account.
Problem...works with 10,000 but not 100,000.
From a bash shell script
1. Invoke psql and call a stored procedure designed to write X dummy account records.
Problem...works with 10,000 but not 100,000.
Thanks,
Jeff