MINI MINI MANI MO
%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.get}
\alias{ore.get}
\title{
Oracle R Enterprise 객체 검색 함수
}
\description{
데이터베이스 테이블 또는 뷰를 나타내는
지정된 \code{\linkS4class{ore.frame}} 객체를 Oracle R Enterprise 세션의
스키마에 대한 \R \code{\link[base]{environment}}에서
검색합니다.
}
\usage{
ore.get(name, schema)
}
\arguments{
\item{name}{
\code{\linkS4class{ore.frame}} 객체의 이름을 지정하는
문자열입니다.
}
\item{schema}{
데이터베이스 스키마 이름을 지정하는 문자열입니다.
}
}
\details{
\code{schema} 인수가 지정되지 않은 경우 검색 목록 순서에 따라
Oracle R Enterprise 세션의 스키마에 연결된 \R 환경에서
검색이 수행되고 검색된 첫번째 객체 인스턴스를
반환합니다.
}
\value{
\code{schema} 인수에서 발견된 경우 \code{\linkS4class{ore.frame}} 객체를
반환합니다. 찾을 수 없는 경우 오류가
발생합니다.
}
\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.ls}},
\code{\link{ore.rm}},
\code{\link{ore.sync}}
}
\examples{
if (!interactive())
{
ore.create(data.frame(x=3, y="A", z=TRUE), table = "TABLE_GET")
# search in the default schema
ore.get("TABLE_GET")
# search in the specified schema
ore.get("TABLE_GET", "RQUSER")
ore.drop(table = "TABLE_GET")
}
}
\keyword{data}
\keyword{database}
\keyword{ORE}
OHA YOOOO