How to disable column-statistics ? on shared server ? #109
-
i've been using shared hostinger servers which provides mysql database |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
ExportInfo.GetTotalRowsMode - enum BlobDataExportMode default value: InformationSchema Select "Skip" |
Beta Was this translation helpful? Give feedback.
ExportInfo.GetTotalRowsMode - enum BlobDataExportMode
default value: InformationSchema
Gets or Sets a value indicates the method of how the total rows value is being obtained.
This function is useful if you are developing a progress bar
. InformationSchema = Fast, but approximate value;
SelectCount = Slow but accurate;
Skip = Skip obtaining total rows. Use this option if you are not doing any progress report.
Select "Skip"