Bit Data Type - Aster R

Teradata Aster® R User GuideUpdate 3

Product
Aster R
Release Number
7.00.02.01
Published
December 2017
Language
English (United States)
Last Update
2018-04-13
dita:mapPath
fop1497542774450.ditamap
dita:ditavalPath
Generic_no_ie_no_tempfilter.ditaval
dita:id
fbp1477004286096
lifecycle
previous
Product Category
Software

The R environment cannot automatically determine the type of bit data and properly handle it. Hence, the R script needs to explicitly accept the bit string as a character string and convert it to a raw data type. For example, when using the read.table() function, users can achieve this conversion as shown here:

frame<-try(read.table(IN,header=FALSE,sep="\t",quote="",nrows=1,colClasses=c("character")), silent=TRUE)
The Bit Varying data type is properly handled by the read.table() function.