Hola,
si tu pregunta se refiere a algun tipo de limitación de Limesurvey y la cantidad de información a manejar, aquí hay información al respecto:
docs.limesurvey.org/tiki-index.php?page=General+FAQ
y esto es lo que dice:
2. What limitations does LimeSurvey have...
...regarding survey size
Theoretically there would be no limit on LimeSurvey. But the database engine you are using has several limits. The most important one is the limit on the number of fields(columns) in the result table.
* MySQL ISAM: The sum of the lengths of the VARCHAR and CHAR columns in a table may be up to 64KB.
* MySQL InnoDB: Maximum number of 1000 columns
* MS SQL Server 2000: Maximum number of 1024 columns
* Postgres: Maximum number of 250-1600 columns depending on column types. The maximum number of columns can be quadrupled by increasing the default block size to 32k.More Info
The mySQL ISAM engine is the most tricky one. As it allows only up to 65,535 bytes per row and utf8 characters can require up to three bytes per character the maximum may be only 21,844 characters (but this depends on your DB encoding).
You can roughly calculate the size of your survey like this:
* Every multiple numercial question: 20 chars for each answer
* Every multiple choice & array question answers: 5 chars for each answer
* Every other question type: 5 chars
* Add 10% for the usual overhead
saludos!!