Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
akakuman
Contributor
Contributor

database input NB_LINE variable is always 'int'. Does it work when the table has 3 billion rows?

I am designing a job that exports rows from a informix table.

Lets say i am selecting from an informix table with 3 billion rows. The  variable tInformixInput_1_NB_LINE is declared as int type.

The component will fail when total number of rows selected gets beyond the integer range. What are the design considerations for this scenario?

Labels (2)
3 Replies
vapukov
Master II
Master II

if it just theoretic question, the answer - do not know, need test.

 

but if it practical question - if any ETL process, excluding initial loading, have regular input for billions of rows   ... it look like something wrong in process design. 

 

In any case You always can count records by other methods.

akakuman
Contributor
Contributor
Author

Thanks for your reply and I completely agree with you.

Theoretically, what are my options if I need to initially load more than 3 billion rows from DB2/zos database using talend?

I can only think of doing it in batches, i.e split the primary key range to manageable chunks and load the data.
vapukov
Master II
Master II

by the many reasons - the best choice for huge database will be avoiding direct loading whole table in 1 step

 

Technics could be different, all depends from real tasks and could be adjusted