I am trying to establihs connection with database server using
library(RODBC)
myconn <- odbvConnect(dsn="SERVER\NAME", uid="user", pwd="password")
Server name has "\". I've also tryed using
"SERVER\\NAME"
as suggested on this topic. But that doesn't work either because than boath slashes are written in and I get error that server couldn't be found.
So question: how do I need to type \ so R will understand it as single character?