Jump to content

I passed my CMDBA exam!


Casper
 Share

Recommended Posts

Output from SQL commands in file backup.sql ..

ERROR 1064 (42000) at line 701750: 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 '@font-face

So you broke OR that night.

Congrats Ben.

Pretty soon I hope to have my MCPD cert.

Link to comment
Share on other sites

Output from SQL commands in file backup.sql ..

ERROR 1064 (42000) at line 701750: 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 '@font-face

What is the sql statement it's trying to run on line 701,750?

Link to comment
Share on other sites

What is the sql statement it's trying to run on line 701,750?

I found out that I might be able to get around it by importing the database within a shell. I needed to brush up on my sql commands. I THINK I got it. I will find out tonight, when I get home.

Link to comment
Share on other sites

I found out that I might be able to get around it by importing the database within a shell. I needed to brush up on my sql commands. I THINK I got it. I will find out tonight, when I get home.

At the mysql prompt, create the database, then source the sql file.

IE:

mysql> create database whateveryounamedit;

mysql> use database whateveryounamedit;

mysql> source c:/nameofdumpfile.sql;

You never want to do: mysql -u username -ppassword -h hostname databasename < nameofdumpfile.sql That will give you errors.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...