Forum Replies Created
-
AuthorPosts
-
halcyonMember
Hi I'm using SQLYog 3.71 and also having the same problem with sync'ing tables without a PK.. I have tables where the key column lists them as MUL, which I'm assuming is multiple… and yet it does not sync. Here is the message I get:
No PRIMARY KEY defined in the table '`yazdFilter`'
Here is the table info:
Code:Column Information For – salesweb.yazdFilter
——————————————–Field Type Collation Null Key Default Extra Privileges Comment
———— ——- ——— —— —— ——- —— ——————————- ——-
filterObject blob NULL YES (NULL) select,insert,update,references
forumID int(11) NULL MUL 0 select,insert,update,references
filterIndex int(11) NULL MUL 0 select,insert,update,referencesIndex Information For – salesweb.yazdFilter
——————————————-Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
———- ———- ———– ———— ———– ——— ———– ——– —— —— ———- ——-
yazdFilter 1 forumID 1 forumID A (NULL) (NULL) (NULL) BTREE
yazdFilter 1 filterIndex 1 filterIndex A (NULL) (NULL) (NULL) BTREEDDL Information For – salesweb.yazdFilter
—————————————–Table Create Table
———- ————————————————————————————————————————————————————————————————————————————————
yazdFilter CREATE TABLE `yazdFilter` (
`filterObject` blob,
`forumID` int(11) NOT NULL default '0',
`filterIndex` int(11) NOT NULL default '0',
KEY `forumID` (`forumID`),
KEY `filterIndex` (`filterIndex`)
) TYPE=MyISAM DEFAULT CHARSET=latin1Any ideas??? We REALLy need to backup/sync these tables.
Thanks
-
AuthorPosts