1

here we can read the data with the read.csv function in R

 > mydata = read.csv("mydata.csv")  
 > mydata                           
    Col1 Col2 Col3 
 1  100   a1   b1 
 2  200   a2   b2 
 3  300   a3   b3 

but my problem is how to insert .csv data in oracle table using R programing.any one can me suggest me

1 Answer 1

1

Why do that? Use External Tables. You can then use SQL to manipulate the csv data.

EDIT:

Here's a simple tutorial: http://orafaq.com/node/848

Sign up to request clarification or add additional context in comments.

1 Comment

any one example for explanation i am new in r programing

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.