I populate a postgresql database from a file.
I get a lot of:
INSERT 0 1
statements.
Is there a way to not display these commands at all? They scroll away earlier output on my shell right now and do not yield a lot of useful information (what does INSERT 0 1 mean? is that like saying "yo dude the insert command was a success"?).
It seems I get one INSERT 0 1
line for every INSERT
statement in that .sql
file I read from and this is a massive file.