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.exists.Rd

%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. 
%
\name{ore.exists}
\alias{ore.exists}
\title{
Oracle R Enterprise 객체 존재 검사 함수
}
\description{
데이터베이스 테이블 또는 뷰를 나타내는
  이름이 지정된 \code{\linkS4class{ore.frame}} 객체가 Oracle R Enterprise 세션의
  스키마에 대한 \R \code{\link[base]{environment}} 내에 존재하는지
  여부를 확인합니다.
}
\usage{
ore.exists(name, schema)
}
\arguments{
  \item{name}{
\code{\linkS4class{ore.frame}} 객체의 이름을 지정하는
    문자열입니다.
}
  \item{schema}{
데이터베이스 스키마 이름을 지정하는 문자열입니다.
}
}
\details{
\code{schema} 인수가 지정되지 않은 경우 Oracle R Enterprise 세션에
  접속 시 지정된 기본 스키마가
  사용됩니다.
}
\value{
주어진 이름의 \code{\linkS4class{ore.frame}} 객체를 지정된 \code{schema}에서
  찾을 수 있는지 여부를 나타내는 논리 값입니다.
}
\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.get}},
  \code{\link{ore.ls}},
  \code{\link{ore.rm}},
  \code{\link{ore.sync}}
}
\examples{
if (!interactive())
{
  ore.exists("IRIS_TABLE")               # FALSE
  ore.create(iris, table = "IRIS_TABLE")
  ore.exists("IRIS_TABLE")               # TRUE
  ore.exists("IRIS_TABLE", "RQUSER")     # TRUE
  ore.drop(table = "IRIS_TABLE")
}
}
\keyword{data}
\keyword{database}
\keyword{ORE}

OHA YOOOO