I have a table in oracle server like that (keyid with 20 digits)
when I import this table with odbc package it ROUNDS the key ids.
df <- sqlQuery(dwh, "select keyid from mytable")
(I already use options(scipen=999) not to show as e)
How can I get this keyid as text or sometihng else not to round the keyid?
Thanks!!