Description Usage Arguments Details Value Note See Also Examples
List all views in the database belonging to a specific owner.
1 |
owner |
owner name. |
view |
view name. |
tolower |
whether |
... |
passed to |
The arguments owner and view, are passed as patterns
that are matched by LIKE, where % means any number of
characters and _ means exactly one character. Literal %
and _ are escaped using two backslashes: "\\%" and
"\\_".
In other words, the default value "%" matches all strings.
The ... argument can be used to set username,
password, and/or dbname (see dbConnect).
Abbrevations like user and pass are allowed. The default
database name is determined by the environment variable
ORACLE_SID, which can be redefined within an R session using
Sys.setenv(ORACLE_SID="foo").
Data frame containing two columns:
owner |
owner name. |
view |
view name. |
The output is a subset of ALL_VIEWS in Oracle, with simplified column names:
| OWNER | -> owner |
| VIEW_NAME | -> view |
views is to Oracle as ll (in package gdata) is to
R environments.
ora gives an overview of the package.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.