Announcement

Collapse
No announcement yet.

DB function failed with error number 145 - Table './Cpuser_test/jos_session'

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • DB function failed with error number 145 - Table './Cpuser_test/jos_session'

    Hi,
    I'm troubling with the below error message while accessing my domain in the browser.

    Code:
    DB function failed with error number 145
    Table './Cpuser_test/jos_session' is marked as crashed.
    How to fix this error message?

  • #2
    Hello,

    To Fix this error message follow the below steps:

    ###################
    # Login to particular database from Command Line Interface (CLI)
    root@server[~]#mysql Cpuser_test

    # Check the table is exists under the database using below command.
    mysql>show tables;

    # If exists repair the table using below command.
    mysql>repair table jos_session;
    ###################

    Comment

    Working...
    X