I upgraded from some 2.1 version (I think...not sure) to 2.6. Everything works fine except for that the category descriptions are blank. In the wp_categories table, they're listed correctly, but not in the wp_terms table.
Whatever version of WP I had before didn't use the wp_terms table, so I copied the info from the wp_categories table and tried to paste it into the wp_terms table. I get this error message each time.
I'm entering the following sql code. Any idea what's wrong with the code?
--
-- Data contents of tablewp_terms
--INSERT INTO
wp_termsVALUES (1, 'Uncategorized', 'uncategorized', '', 0, 5, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (2, 'Cool Blogs', 'cool-blogs', '', 0, 0, 5, 0, 0) ;
INSERT INTOwp_termsVALUES (3, 'Inspiring', 'inspiring', '', 0, 34, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (4, 'Via Email', 'via-email', '', 0, 1, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (5, 'Health', 'health', '', 0, 12, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (6, 'Give time/money', 'give-timemoney', '', 0, 6, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (7, 'Read this', 'read-this', '', 0, 5, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (8, 'Pay attention', 'pay-attention', '', 0, 58, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (9, 'Moment of Truth', 'moment-of-truth', '', 0, 69, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (10, 'Watch this', 'watch-this', '', 0, 28, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (11, 'Research', 'research', '', 0, 1, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (12, 'Random', 'random', '', 0, 13, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (13, 'Thoughts', 'thoughts', '', 0, 27, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (14, 'Plain cool', 'plain-cool', '', 0, 22, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (15, 'Website', 'website', '', 0, 11, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (16, 'Do your reseach!', 'do-your-reseach', '', 0, 26, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (17, 'Learn something', 'learn-something', '', 0, 9, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (18, 'Rewritable words', 'quotations-rewriteable-words', '', 0, 14, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (19, 'What My World Sounds Like', 'what-my-world-sounds-like', '', 0, 14, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (20, 'Listen', 'listen', '', 0, 13, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (21, 'Spotlight', 'spotlight', '', 0, 11, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (22, 'Consider this', 'consider-this', '', 0, 32, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (23, 'Great ideas', 'great-ideas', '', 0, 3, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (24, 'The Visual', 'the-visual', '', 0, 3, 0, 0, 0) ;
INSERT INTOwp_termsVALUES (25, 'Challenge', 'challenge', '', 0, 1, 0, 0, 0) ;
--
--End of data contents of table 'wp_terms'