26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
|
% Generated by roxygen2: do not edit by hand
|
||
|
% Please edit documentation in R/writeDDL.R
|
||
|
\name{writeDDL}
|
||
|
\alias{writeDDL}
|
||
|
\title{Write DDL script}
|
||
|
\usage{
|
||
|
writeDDL(targetdialect, cdmVersion, cdmDatabaseSchema, sqlFilename,
|
||
|
cleanUpScript = F)
|
||
|
}
|
||
|
\arguments{
|
||
|
\item{targetdialect}{The dialect of the target database. Choices are "oracle", "postgresql", "pdw", "redshift", "impala", "netezza", "bigquery", "sql server"}
|
||
|
|
||
|
\item{cdmVersion}{The version of the CDM for which you are creating the DDL.}
|
||
|
|
||
|
\item{cdmDatabaseSchema}{The schema of the CDM instance where the DDL will be run. For example, this would be "ohdsi.dbo" when testing on sql server. After testing
|
||
|
this can be changed to "@cdmDatabaseSchema"}
|
||
|
|
||
|
\item{sqlFilename}{The name of the sql file with the current ddl specifications to be translated and rendered}
|
||
|
|
||
|
\item{cleanUpScript}{Set to T if the clean up script should be created. This is for testing purposes and will create a sql script that drops all CDM tables.
|
||
|
By default set to F. Set to F for Oracle as well as the sql render translation does not work well.}
|
||
|
}
|
||
|
\description{
|
||
|
Write DDL script
|
||
|
}
|