In postgresql, I had taken backup. That file didn't have any insert queries instead it used Some copy statments like
COPY user_customers (userid, customerlist) FROM stdin;
anil customer1:customer2
babu customer1:customer4
srikakulapu customer1:customer2
\.
But i want insert statements of that table....
How could I get the insert statements of table data in backup file?
Besides that I couldn't execute pg_dump
command....
I am generating backup file by right clicking on a table by chosing backup option..
Kindly help me out... Otherwise I have to rewrite all the insert queries manually for documentation....
waiting for your help.........