Trouble Excuting files to SQL

Post Reply
kennxonline
Posts: 56
Joined: Sun Mar 23, 2014 2:58 pm

Trouble Excuting files to SQL

Post by kennxonline » Sun Oct 25, 2015 4:15 pm

I had to delete everything even SQL off my computer. Now I'm rebuilding a server but it wont put some of the files into SQL and I dont know what I'm doing wrong I use Navcat.

Step I am on:
"Double click dspdb

Right click on dspdb and select Execute SQL File...

Browse to C:\dsp\sql and select abilities.sql

Click Start

Continue this process for each file in the folder."

account_parties, account_sessions, and triggers will not install into SQL. Please any help would be so helpful im stressing lol

Code: Select all

[Err] 1031 - Table storage engine for 'accounts_parties' doesn't have this option
[Err] /*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `accounts_parties`
--

DROP TABLE IF EXISTS `accounts_parties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts_parties` (
  `charid` int(10) unsigned NOT NULL DEFAULT '0',
  `partyid` int(10) unsigned NOT NULL DEFAULT '0',
  `partyflag` smallint(5) unsigned NOT NULL DEFAULT '0',
  `allianceid` int(10) unsigned NOT NULL DEFAULT '0',
  `timestamp` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`charid`),
  FOREIGN KEY (`charid`) REFERENCES accounts_sessions(`charid`)
    ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `accounts_parties`
--

LOCK TABLES `accounts_parties` WRITE;
/*!40000 ALTER TABLE `accounts_parties` DISABLE KEYS */;
/*!40000 ALTER TABLE `accounts_parties` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2014-07-02 15:29:14
[Msg] Finished - Unsuccessfully
--------------------------------------------------

kennxonline
Posts: 56
Joined: Sun Mar 23, 2014 2:58 pm

Re: Trouble Excuting files to SQL

Post by kennxonline » Sun Oct 25, 2015 9:14 pm

I did another full swipe clean and that seemed to fix it.

User avatar
whasf
Site Admin
Posts: 1312
Joined: Thu Jul 19, 2012 9:11 pm

Re: Trouble Excuting files to SQL

Post by whasf » Sun Oct 25, 2015 10:15 pm

You didn't have the InnoDB database engine selected to be installed when you installed MySQL. Their installer tries to be 'smarter' than you ;)
-- Whasf

Post Reply