MINI MINI MANI MO
%
% Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.datastoreSummary}
\alias{ore.datastoreSummary}
\title{
Oracle R Enterprise 데이터 저장소 요약 함수
}
\description{
사용자의 Oracle Database 스키마에 있는 데이터 저장소의
내용을 요약합니다.
}
\usage{
ore.datastoreSummary(name, owner)
}
\arguments{
\item{name}{
데이터 저장소 이름을 지정하는 문자열입니다.
}
\item{owner}{
요약할 데이터 저장소의 소유자를 지정하는 선택적인
문자열입니다. 데이터 저장소의 소유자가 현재 사용자가 아닌 경우,
\code{\link{ore.grant}}이(가) 데이터 저장소의 읽기 권한을 현재 사용자에게 부여해야
합니다. 그렇지 않으면 \code{\link{ore.load}} 오류가 발생합니다.
\code{owner} 인수가 지정되지 않은 경우 기본값은
현재 사용자입니다.
}
}
\details{
\code{name} 및 \code{owner} 인수로 지정된 데이터 저장소를 요약합니다.
이름이 지정된 데이터 저장소가 존재하지 않거나 현재 사용자에게 이 데이터
저장소에 대한 읽기 권한이 없으면 함수가 오류를 발생시킵니다.
}
\value{
\code{data.frame} 객체는 \code{object.name},
\code{class}, \code{size}, \code{length}, \code{row.count} 및 \code{col.count}
열과 함께 반환됩니다. 이러한 열은
객체 이름, 객체의 클래스, 객체 크기(바이트), 객체 길이
및 객체의 행 및 열 수를 각각 지정합니다.
\code{data.frame} 객체의 행은 \code{object.name} 열에 따라
알파벳 순으로 정렬됩니다.
}
\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.save}},
\code{\link{ore.load}},
\code{\link{ore.delete}},
\code{\link{ore.datastore}}
\code{\link{ore.grant}}
\code{\link{ore.revoke}}
}
\examples{
\dontrun{
if (any(sapply(c("x", "y", "z"), exists)))
stop("object x, y, or z exists")
x <- stats::runif(20)
y <- list(a = 1, b = TRUE, c = "oops")
z <- ore.push(x)
ore.save(list=ls(), name="rq$ds_1")
# show detailed information about the datastore rq$ds_1
ore.datastoreSummary(name="rq$ds_1")
ore.delete(name="rq$ds_1")
rm(x, y, z)
}
}
\keyword{datastore}
\keyword{database}
\keyword{ORE}
OHA YOOOO