How to read a simple file to fill a HyperTable with column qualifiers?
Posted
by
Wajih
on Stack Overflow
See other posts from Stack Overflow
or by Wajih
Published on 2012-04-10T06:30:56Z
Indexed on
2012/04/10
11:29 UTC
Read the original article
Hit count: 193
I had been looking at the wiki/docs to see for a sample which teaches how to load column qualifiers from a file. Is there any such sample. Could you guide me on the following simple table? Specifically the field FromID which should contain, say
FromID: person1 FromID: person2
create table stats (ID1,ID2,To,FromID, QUALIFIER INDEX FromID)
My TSV file looks like this
#SeQ ID1 ID2 To FromID
01099 3 4 me ---What would the entries be here??
Thank you for the guidance,
Wajih
© Stack Overflow or respective owner