MINI MINI MANI MO

Path : /opt/oracle/product/18c/dbhomeXE/R/library/OREbase/doc/man/ko/
File Upload :
Current File : //opt/oracle/product/18c/dbhomeXE/R/library/OREbase/doc/man/ko/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 객체 제거 함수
}
\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