Unsupported Screen Size: The viewport size is too small for the theme to render properly.

Table Operations – Advanced Properties – Incorrect Row Value Returned

forums forums SQLyog SQLyog: Bugs / Feature Requests Table Operations – Advanced Properties – Incorrect Row Value Returned

  • This topic is empty.
Viewing 2 reply threads
  • Author
    Posts
    • #12092
      leavy50
      Member

      Using SQLyog Ultimate

      latest version 8.61

      Engine InnoDB

      Version 10

      Right click – More Table Operations – View Advanced Properties.

      Rows value is different each time (and incorrect).

      I often use this after deleting records or to quick check no of records in table.

      Never noticed this error previously.

      Thank you.

    • #31285
      peterlaursen
      Participant

      Please read:

      http://www.webyog.co…exact-value.htm

      Or simply execute 

      SHOW TABLE STATUS FROM `database` LIKE 'tablename';

      Both places we execute SHOW TABLE STATUS. The rowcount here is an estimate with InnoDB (with MyISAM it is an exact count and same as what SELECT COUNT(*) returns.  The rowcount is used internally by the server for optimizing the execution plan with JOINs etc. and here exact numbers are not very important.

      Bug still I think I found a bug. We execute:

      SHOW TABLE STATUS FROM `database`;

      and not

      SHOW TABLE STATUS FROM `database` LIKE 'tablename';

      .. what could be slow and requires more memory client side that what is necessary.

    • #31286
      leavy50
      Member

      Thanks for quick reply.

Viewing 2 reply threads
  • You must be logged in to reply to this topic.