MINI MINI MANI MO

Path : /opt/oracle/product/18c/dbhomeXE/R/library/OREbase/doc/man/en/
File Upload :
Current File : //opt/oracle/product/18c/dbhomeXE/R/library/OREbase/doc/man/en/ore.rm.Rd

%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. 
%
\name{ore.rm}
\alias{ore.rm}
\title{Oracle R Enterprise Object Removal Function}
\description{
  Removes \code{\linkS4class{ore.frame}} objects, representing database
  tables and views, from the \R \code{\link[base]{environment}} for a
  schema in the Oracle R Enterprise session. Corresponding data within
  the database are not affected.
}
\usage{
ore.rm(list = character(0L), schema)
}
\arguments{
  \item{list}{
    A character vector naming \code{\linkS4class{ore.frame}} objects to be
    removed from the attached schema.
  }
  \item{schema}{
    A character string specifying the database schema name.
  }
}
\details{
  Function \code{ore.rm} removes the specified objects in argument
  \code{list} from the specified argument \code{schema}. If argument
  \code{schema} is unspecified, the default schema - the one specified
  at connection time for the Oracle R Enterprise session - is used.
}
\references{
  \href{http://www.oracle.com/technetwork/database/database-technologies/r/r-enterprise/documentation/index.html}{Oracle R Enterprise}
}
\author{
  Oracle \email{oracle-r-enterprise@oracle.com}
}
\seealso{
  \code{\link{ore.attach}},
  \code{\link{ore.connect}},
  \code{\link{ore.exists}},
  \code{\link{ore.get}},
  \code{\link{ore.ls}},
  \code{\link{ore.sync}}
}
\examples{
if (!interactive())
{
  ore.create(iris, table="IRIS_TABLE")
  ore.exists("IRIS_TABLE")
  ore.rm("IRIS_TABLE")
  ore.exists("IRIS_TABLE")
  ore.sync()
  ore.exists("IRIS_TABLE")

  ore.drop("IRIS_TABLE")    # clean up
}
}
\keyword{environment}
\keyword{database}
\keyword{ORE}

OHA YOOOO