I\'m using RPostgreSQL to read and write data. Reading from any schema works perfectly, but I\'m not able to write to non-public schemas. For example, the following code pla
In case a reader is using the newer package RPostgres to do this, the code to specify schemas is:
RPostgres
dbCreateTable(conn = con, name = Id(schema = "yourschema", table = "yourtable"), fields = yourRdataframe)