My question is how can I use dplyr functions, such as tbl, on SQL Server tables that do not use the default \"dbo\" schema?
dplyr
tbl
For more contex
You can use dbplyr::in_schema.
In your case:
dplyr::tbl(con, dbplyr::in_schema("abc", "mytable1"))