Re: Knowing how many records I just inserted
От | Claudio Lapidus |
---|---|
Тема | Re: Knowing how many records I just inserted |
Дата | |
Msg-id | BAY7-DAV53kzMcvsq9I00019c97@hotmail.com обсуждение исходный текст |
Ответ на | Knowing how many records I just inserted (Ron Johnson <ron.l.johnson@cox.net>) |
Список | pgsql-general |
> How can I get that back out to bash, if I'm doing psql scripting? > An env. variable wouldn't work, since it would go away when psql > terminates. Capture the stdout of the psql command and pipe it through cut in order to get only the third word of output. your_shell_variable=`psql -c 'insert into t1 select attrs from t2' | cut -d' ' -f3` hth, cl. > > TIA > -- > +-----------------------------------------------------------------+ > | Ron Johnson, Jr. Home: ron.l.johnson@cox.net | > | Jefferson, LA USA | > | | > | "I'm not a vegetarian because I love animals, I'm a vegetarian | > | because I hate vegetables!" | > | unknown | > +-----------------------------------------------------------------+ > > > > ---------------------------(end of broadcast)--------------------------- > TIP 2: you can get off all lists at once with the unregister command > (send "unregister YourEmailAddressHere" to majordomo@postgresql.org) >
В списке pgsql-general по дате отправления: