R/Database.R
createCharacterizationTables.Rd
This function executes a large set of SQL statements to create tables that can store results
createCharacterizationTables(
connectionDetails,
resultSchema,
targetDialect = "postgresql",
deleteExistingTables = T,
createTables = T,
tablePrefix = "c_",
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema")
)
The connectionDetails to a database created by using the
function createConnectDetails
in the
DatabaseConnector
package.
The name of the database schema that the result tables will be created.
The database management system being used
If true any existing tables matching the Characterization result tables names will be deleted
If true the Characterization result tables will be created
A string appended to the Characterization result tables
The temp schema used when the database management system is oracle
Returns NULL but creates the required tables into the specified database schema.
This function can be used to create (or delete) Characterization result tables
Other Database:
createSqliteDatabase()
,
insertResultsToDatabase()