-2
Hello! I am currently recording/updating my tables in the database with the R language:
dbWriteTable(con, "tabela",tabela, row.names=FALSE, overwrite = TRUE)
This my script that updates the tables in R in a postgres database, is run automatically from time to time by a windows task. I need to know when this information is recorded or not, maybe in an on-screen alert format, or something that catches your attention.
BS.: I know that there is an "r. out", but it overwrites, does not warn when the problem, or anything like that.
What exactly do you search for? Keep a log file? A popup message on your desktop screen? Send an email with warning? A text message? Whenever write or only when error occurs? All this is possible.
– Carlos Eduardo Lagosta
A pop-up on the screen would be perfect!
– Theorp