RPostgreSQL パッケージを使用して Rに一時テーブルとして書き込む必要があるデータ フレームがあります。
例:
>data(USArrests)
#Assuming that we have already established a connection to the postgres db
#Let conn be the postgres connection object
>dbWriteTable(conn, "temp_table_data", USArrests, temp.table=TRUE)
これは動作しません。引数 temp.table は無視されているようです。
dbWriteTable を処理する方法がない場合、データ フレームを一時テーブルとして書き込む方法はありますか?