I am trying to apply dtplyr to a SQL Server database.
I succeeded in applying dplyr as shown below, but I don't know how to apply dtplyr
How can I do this?
library(odbc)
library(DBI)
library(tidyverse)
library(dtplyr)
library(dbplyr)
con <- DBI::dbConnect(odbc::odbc(),
Driver = "SQL Server",
Server = "address",
Database = "dbname",
UID = "ID",
PWD = "password")
dplyr::tbl(con, dbplyr::in_schema("dbo", "table1"))
The comments by @Waldi capture the essence of the matter. You can not use dtplyr with SQL Server as it only translates commands to
data.table
objects.The official dtplyr documentation states:
The official dbplyr documentation states:
Both dbplyr and dtplyr translate dplyr commands. Which one you use depends on whether you are working with
data.table
type objects (in R memory) or remote SQL databases (whichever flavor of SQL you prefer).