question

Majid A avatar image
0 Likes"
Majid A asked Mischa Spelt answered

How many rows can a Global Table have

How much data can be added to Global Tables? How to import large amounts (millions of rows) of data into the model? .

Is there any other interface, besides MTEI to automatically import data into the model?

FlexSim 18.0.1
import dataexcel interface
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Mischa Spelt avatar image
3 Likes"
Mischa Spelt answered

In answer to your first question: FlexSim does not impose a maximum on the size of your tables, so how much data you can fit in is constrained by other factors (such as how much RAM you have and how much of it Windows allows a process to use) which are unlikely to be constraining for "just" a few million rows of data.

However, whichever way you do it, it is not going to be fast. However, MTEI suffers from the problem that it will read data cell by cell, which is the slowest possible way of doing it. If the data are only numbers, for example, you are probably better off exporting them from Excel to CSV and then writing a loop to import them yourself.

In any case, make sure that in the Quick Properties window of the Global Table, you check the Use Bundle checkbox. Even if it does not help in the import, it will make accessing the data in the table much faster afterwards, which is already a big help assuming that you will import once, then run often.

If you really want to use such quantities of data efficiently, you are probably better off looking at other solutions, such as putting them in a database. FlexSim has some commands (starting with db...) that allow you to talk to any database using an ODBC connection; I suspect it will beat the Excel import but the real power of that is that you can filter on the database side and not pull all millions of records over to the model but maybe just the ones that you need.

5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.