A
A
Andrej Sharapov2018-11-07 14:53:20
MySQL
Andrej Sharapov, 2018-11-07 14:53:20

What is wrong with sql file?

There was a problem while moving the database from one site to another.

SQL query:
-- phpMyAdmin SQL Dump
-- version 4.4.15.10
-- https://www.phpmyadmin.net
--
-- Хост: localhost
-- Время создания: Ноя 07 2018 г., 10:02
-- Версия сервера: 5.5.60-MariaDB-cll-lve
-- Версия PHP: 5.4.16
SET (https://) SQL_MODE = () "NO_AUTO_VALUE_ON_ZERO";

SET (https://) time_zone = () "+00:00";

MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SET time_zone = "+00:00"' at line 11 

How can it be solved?
Technically, the file is configured correctly, the data is rewritten for the new site, but the database cannot be loaded.
Tried changing ENGINE to TYPE and vice versa, didn't work.
Could this problem be due to different php versions?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
E
Eugene, 2018-11-07
@EpOsS

'SET time_zone = "+00:00"' at line 11 Line
11 is the problem, check it

K
Konstantin Tsvetkov, 2018-11-07
@tsklab

SQL SERVER ...your MySQL server
Very uneven .

I
idShura, 2018-11-07
@idShura

Try these lines

SET (https://) SQL_MODE = () "NO_AUTO_VALUE_ON_ZERO";
SET (https://) time_zone = () "+00:00";

Replaced by
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";

Or remove them altogether (this can all be configured later).

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question