How to disable column-statistics ? on shared server ? #109
Answered
by
adriancs2
iamsagarmaheta
asked this question in
Q&A
|
i've been using shared hostinger servers which provides mysql database |
Answered by
adriancs2
Sep 21, 2024
Replies: 1 comment
|
ExportInfo.GetTotalRowsMode - enum BlobDataExportMode default value: InformationSchema Select "Skip" |
0 replies
Answer selected by
adriancs2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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"