MINI MINI MANI MO
%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.rm}
\alias{ore.rm}
\title{
Oracle R Enterprise 对象删除函数
}
\description{
从 Oracle R Enterprise 会话中的
方案的 \R \code{\linkS4class{ore.frame}} 中删除
表示数据库表和视图的 \code{\link[base]{environment}} 对象。数据库中对应的数据
不会受到影响。
}
\usage{
ore.rm(list = character(0L), schema)
}
\arguments{
\item{list}{
一个用于指定要从所挂接方案中删除的 \code{\linkS4class{ore.frame}} 对象
的字符向量。
}
\item{schema}{
一个用于指定数据库方案名的字符串。
}
}
\details{
函数 \code{ore.rm} 从指定的参数 \code{list} 中删除参数
\code{schema} 中指定的对象。如果未指定参数
\code{schema}, 则将使用默认方案 (即
在连接时为 Oracle R Enterprise 会话指定的方案)。
}
\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