Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

R . के माध्यम से oracle 10g डेटाबेस से कनेक्ट करना

आर को Oracle डेटाबेस से जोड़ने के लिए मैंने जो किया वह नीचे है

  1. Oracle ड्राइवर JDK डाउनलोड करें http://www.oracle .com/technetwork/java/javase/downloads/index.html
  2. आरजेडीबीसी स्थापित करें

फिर नीचे दिए गए कोड को r

. में चलाएँ
library(RJDBC)
## Loading required package: DBI
## Loading required package: rJava
# specify the driver type and location in your machine

jdbcDriver = JDBC("oracle.jdbc.OracleDriver",
                  classPath="C:/app/techsupport/product/11.2.0/client_1/jdbc/lib/ojdbc6.jar") # may be different on your machine, it's based on your JDK installation

# connect to the database

conn = dbConnect(jdbcDriver, "jdbc:oracle:thin:@//database.hostname.com:port/service_name",  # get the database name, port, and service name from you DBA
             user = YourUserName,
             password = YourPassword)

# get office table using a query string

startTime <- Sys.time() # start timer
OfficeTable = dbGetQuery(conn, "select * from office")
# disconnect after working with database
dbDisconnect(conn)
## [1] TRUE
Sys.time() - startTime  # calc time to import table
## Time difference of 0.1630161 secs
# take a look at the data
str(OfficeTable)
## 'data.frame':    373 obs. of  22 variables:



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mybatis के साथ pl/sql फ़ंक्शन को कॉल करना 3

  2. मैं ऑरैकल टेबल की सामग्री को फ़ाइल में कैसे निर्यात कर सकता हूं?

  3. UTL_MAIL संदेश विशेषता कॉल OWA_UTIL.cellsprint प्रक्रिया Oracle

  4. SQLcl . के लिए एक login.sql फ़ाइल कैसे बनाएं?

  5. RAC VM का बैकअप कैसे लें