Because of loadshading issue, one of the table in my database got currupted. I dropped the table and now I want to create the table again.
I'm getting this error:
ERROR 1813: Tablespace for table '
zorkif
.sys_user_accounts
' exists. Please DISCARD the tablespace before IMPORT.
SQL Statement:
CREATE TABLE `zorkif`.`sys_user_accounts` (
`UserID` INT NOT NULL AUTO_INCREMENT ,
PRIMARY KEY (`UserID`) ,
UNIQUE INDEX `UserID_UNIQUE` (`UserID` ASC)
)
What is tablespace and how to discard this tablespace? Is there any command I have to run in query? How to deal with this issue?