RODM_create_dbms_table(RODM)
RODM_create_dbms_table()所属R语言包:RODM
Create a table in the Oracle Database
在Oracle数据库中创建表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create and populate a table in the Oracle Database using a dataframe.
创建和填充表在Oracle数据库中使用一个数据框。
用法----------Usage----------
RODM_create_dbms_table(database,
data_table_name)
参数----------Arguments----------
参数:database
Database ODBC channel identifier returned from a call to RODM_open_dbms_connection
数据库的ODBC通道标识符返回调用RODM_open_dbms_connection
参数:data_table_name
Data frame containing the input dataset. Also the name of the table to be created in the database.
数据框包含输入数据集。此外要在数据库中创建的表的名称。
Details
详细信息----------Details----------
This functions moves a data frame to a relational table in the Oracle database using RODBC's sqlSave function. A table with the same name as the data frame will be created in the RDBMS to hold the data in the data frame. If the table already exists, it will first be dropped.
这个功能移动数据框到关系表在Oracle数据库中使用RODBC的sqlSave功能。在RDBMS中的表具有相同的名称作为数据框将被创建在数据框来保存数据。如果表已经存在,它会先被丢弃。
The data frame can contain attributes of numeric: double or integer, logical, character or factor type. The conversions performed by this function when transfering data to the RDBMS are as follows:
数据框可以包含属性:双或整数的数字,逻辑,字符或因子类型。执行数据传输时,通过该函数的RDBMS的转换如下:
<pre> R data frame column type: RDMS type: ---------------------------------------- numeric/double FLOAT(126) numeric/integer NUMBER(38) logical VARCHAR2(255) character VARCHAR2(255) factor VARCHAR2(255) </pre>
<PRE> R的数据框列类型:RDMS类型:-------------------------------------- - 数字/数字/双精度浮点数(126)的整数(38)逻辑VARCHAR2(255)字符VARCHAR2(255)因素VARCHAR2(255)</ pre>
值----------Value----------
None.
无。
(作者)----------Author(s)----------
Pablo Tamayo <a href="mailto:pablo.tamayo@oracle.com">pablo.tamayo@oracle.com</a>
Ari Mozes <a href="mailto:ari.mozes@oracle.com">ari.mozes@oracle.com</a>
参考文献----------References----------
Oracle Data Mining Administrator's Guide 11g Release 1 (11.1) http://download.oracle.com/docs/cd/B28359_01/datamine.111/b28130/toc.htm
参见----------See Also----------
RODM_drop_dbms_table
RODM_drop_dbms_table
实例----------Examples----------
## Not run: [#不运行:]
data(titanic3, package="PASWR")
DB <- RODM_open_dbms_connection(dsn="orcl11g", uid="rodm", pwd="rodm")
# Move the titanic3 data frame to a new table in the Oracle database[移动titanic3到一个新的表在Oracle数据库中的数据框]
RODM_create_dbms_table(DB, "titanic3")
# Now drop the table (just to clean up from this example)[现在删除的表(从这个例子只是为了清理)]
RODM_drop_dbms_table(DB, "titanic3")
RODM_close_dbms_connection(DB)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|