| dbRemoveTable,DatabaseConnectorConnection,ANY-method {DatabaseConnector} | R Documentation |
Remove a table from the database
Description
Remove a remote table (e.g., created by dbWriteTable())
from the database.
Usage
## S4 method for signature 'DatabaseConnectorConnection,ANY'
dbRemoveTable(
conn,
name,
databaseSchema = NULL,
oracleTempSchema = NULL,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
...
)
Arguments
conn |
A DBIConnection object, as returned by
|
name |
The table name, passed on to
|
databaseSchema |
The name of the database schema. See details for platform-specific details. |
oracleTempSchema |
DEPRECATED: use |
tempEmulationSchema |
Some database platforms like Oracle and Impala do not truly support temp tables. To emulate temp tables, provide a schema with write privileges where temp tables can be created. |
... |
Other parameters passed on to methods. |
Details
The databaseSchema argument is interpreted differently according to the different platforms:
SQL Server and PDW: The databaseSchema schema should specify both the database and the schema, e.g.
'my_database.dbo'. Impala: the databaseSchema should specify the database. Oracle:
The databaseSchema should specify the Oracle 'user'. All other : The databaseSchema should
specify the schema.
Value
dbRemoveTable() returns TRUE, invisibly.
See Also
Other DBIConnection generics:
DBIConnection-class,
dbAppendTable(),
dbCreateTable(),
dbDataType(),
dbDisconnect(),
dbExecute(),
dbExistsTable(),
dbGetException(),
dbGetInfo(),
dbGetQuery(),
dbIsReadOnly(),
dbIsValid(),
dbListFields(),
dbListObjects(),
dbListResults(),
dbListTables(),
dbReadTable(),
dbSendQuery(),
dbSendStatement(),
dbWriteTable()