I am stumped. Using RODBC and connecting to an Oracle database, I have successfully explored my table using the following:
sqlColumns(channel, "tablename", schema="schema")$COLUMN_NAME
I can even query the table using:
temp <- sqlQuery(channel, "SELECT Col1, Col2 FROM table")
and data are returned.
However, this fails to return valid data:
temp <- sqlQuery(channel, "SELECT * FROM table")
This is what returned:
[1] PRIMARY_KEY LASTMODIFIEDBY ? ?.1 ?.2
[6] ?.3 ?.4 ?.5 ?.6 ?.7
[11] ?.8 ?.9 ?.10 ?.11 ?.12
[16] ?.13 ?.14
<0 rows> (or 0-length row.names)
Any ideas as to why the SELECT * fails but I am able to return valid data when specifying the columns? For completeness, I listed the R and Oracle details below.
> R.Version()
$platform
[1] "i386-pc-mingw32"
$arch
[1] "i386"
$os
[1] "mingw32"
$system
[1] "i386, mingw32"
$status
[1] ""
$major
[1] "2"
$minor
[1] "14.1"
$year
[1] "2011"
$month
[1] "12"
$day
[1] "22"
$`svn rev`
[1] "57956"
$language
[1] "R"
$version.string
[1] "R version 2.14.1 (2011-12-22)"
> odbcGetInfo(channel)
DBMS_Name DBMS_Ver Driver_ODBC_Ver Data_Source_Name Driver_Name
"Oracle" "11.01.0070" "03.51" "xxxxxxxx" "SQORA32.DLL"
Driver_Ver ODBC_Ver Server_Name
"09.02.0000" "03.80.0000" "xxxxxxxxx"