Is there a report export download limit in SugarOnDemand?

Is there a download limit when exporting report results?  I'm trying to export about 50k targets but the report export seems to time out (no error message, just blank screen).  I suppose I'll need to download a back-up and restore it to MySql.  What exactly creates the limit?  Thanks.

Parents
  • You can check the config.php file using Diagnostic Tool from Admin -> System. By default in config is defined like:

    array (

        'special_query_limit' => 50000,

        'special_query_modules' =>

        array (

          0 => 'Reports',

          1 => 'Export',

          2 => 'Import',

          3 => 'Administration',

          4 => 'Sync',

        ),

        'default_limit' => 1000,

      ),

Reply
  • You can check the config.php file using Diagnostic Tool from Admin -> System. By default in config is defined like:

    array (

        'special_query_limit' => 50000,

        'special_query_modules' =>

        array (

          0 => 'Reports',

          1 => 'Export',

          2 => 'Import',

          3 => 'Administration',

          4 => 'Sync',

        ),

        'default_limit' => 1000,

      ),

Children