DB does not exist

Has anyone everwhen I export the database the following messages appear:3

SET SQL_MODE=“NO_AUTO_VALUE_ON_ZERO”;
SET time_zone = “+00:00”;

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT /;
/
!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS /;
/
!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION /;
/
!40101 SET NAMES utf8 */;

CREATE TABLE IF NOT EXISTS wp03_as_keywords_cron (
keyword_cron_id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
keyword_id int(11) NOT NULL,
number_of_posts tinyint(4) NOT NULL,
execute_next int(11) NOT NULL,
UNIQUE KEY keyword_cron_id (keyword_cron_id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;

What should I do? It happened after the sites were gone. Can someone help me? had this problem and how did it resolve?

The “message” you posted looks like the start of an SQL dump. This is not an error message that your database cannot be exported, it’s (a part of) the actual export of the database.

Is this all the content being generated or is a lot more text being generated as well?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.