Unsupported Screen Size: The viewport size is too small for the theme to render properly.

Sql Database

forums forums SQLyog Using SQLyog Sql Database

Tagged: 

  • This topic is empty.
Viewing 9 reply threads
  • Author
    Posts
    • #13348
      bobthomas155
      Member

      Hello everyone, am new in this forum and I want to ask can I import SQL database into excel sheet? Is it right than how to do it?

    • #35296

      Hi bobthomas155,

       

      Yes It is possible. You can goto table->backup/export->export data as and select excel. Or just press CTRL+ALT+C to get export as dialog.

    • #35297
      bobthomas155
      Member

      Thanks Abhishek, For your suggestion but still all data is not showing in proper way

    • #35298

      What is the problem you are facing? Also I should have mentioned that for utf8 data you should select UTF8 with bom character set for exporting. UTF8 doesn’t work properly with excel so SQLyog have option to write BOM characters in starting of the file.

    • #35299
      bobthomas155
      Member

      I just imported a .Sql file into my database and got an issue. Its been crazy. Its says “database not found” . Although the database already exists. Perhaps, this happens due to diffierent database name. Any suggestion?

    • #35300
      peterlaursen
      Participant

      Please tell your SQLyog version.

       

      I also do not understand “Perhaps, this happens due to different database name”. Please elaborate in detail how to trigger this. 

    • #35301
      bobthomas155
      Member

      My SQLyog version 8.71, simply I used following code to import sql database in excel : SELECT * INTO DetailsImport1 FROM EXCELLINK…[Customers$].

    • #35302
      peterlaursen
      Participant

      Please refer this https://dev.mysql.com/doc/refman/5.6/en/ansi-diff-select-into-table.html

      MySQL Server doesn’t support the SELECT … INTO TABLE Sybase SQL extension. Instead, MySQL Server supports the INSERT INTO … SELECT standard SQL syntax, which is basically the same thing. See Section 13.2.5.1, “INSERT … SELECT Syntax”“.  

       

      So your statement is not supported by MySQL. However he error message is not good and not helpful to identify the problem.  But it is an error message generated by the MySQL server and not by SQLyog. Error message quality problems are frequenly reported to bugs.mysql.com. You may decide to report this one as well.

       

      Note that also the [square brackets] are not MySQL syntax. It is Microsoft (SQL Server and Access) syntax.  MySQL uses `backticks` for quoting identifers (unless ANSI sql_mode is used. In that case it is “double quotes”).  The complete MySQL statement syntax is documented here:  https://dev.mysql.com/doc/refman/5.6/en/sql-syntax.html

    • #35303
      peterlaursen
      Participant

      If I simplify your statement as much as possible:


      SELECT * FROM a INTO a_copy;

      I get the error

      — Error Code: 1327

      — Undeclared variable: a_copy

      The MySQL parser expects a “user variable” here. 

       

      It does not matter what tabels a and a_copy are like as long as they arei dentical  and whether tables are empty or not.

       

       

      This statement is correct for MySQL and works as expected:


      INSERT INTO a_copy SELECT * FROM a; 

    • #35304
      bobthomas155
      Member

      Am totally agree with you. yes may be this error occurring from this select statement. Let me check again. Thank you so much

Viewing 9 reply threads
  • You must be logged in to reply to this topic.