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

Forum Replies Created

Viewing 15 posts - 7,276 through 7,290 (of 7,398 total)
  • Author
    Posts
  • in reply to: multiple queries from different tables #16907
    peterlaursen
    Participant

    yes – you just can logon mysql twice (from “File .. connect” in the menu) and tile or cascade and thereafter rearrangt the panses/windows (from “window” in the menu). You also can start sqlyog twice and logon with each instance of the program.

    in reply to: User Create Bug? #16852
    peterlaursen
    Participant

    With 4.0.2 User permissions works as it should here …

    (but in my case previous versions did too)

    in reply to: Using enum #16904
    peterlaursen
    Participant

    >> Ritesh

    I it could be done it would be nice if the column header “LENGTH” of the CREATE TABLE and ALTER TABLE pane changed to “VALUES” when an ENUM or a SET variable is chosen as datatype. It also is not quite logical that in column LENGTH ” ' ” quotes MUST be given and in DEFAULT colum ” ' ” quotes MAY NOT …

    Just a parsing detail …

    I know people don't use those datatypes very much (but they should!) 😛

    in reply to: Using enum #16903
    peterlaursen
    Participant

    I see now that in my answer 11:42 I mixed up a picture showing an ALTER statement and some SQL containing a CREATE statement. Hope it doesn't confuse too much 😮

    Further more I can tell now that SET variable types are treated just like ENUM's from the sqlyog GUI ….

    in reply to: SQlyog hangs #16897
    peterlaursen
    Participant

    it could be a firewall issue … with sqlyog you connect through TCP so most firewalls would “protect” your system.

    in reply to: Using enum #16902
    peterlaursen
    Participant

    this one works too (omitting the ” `” -character)

    alter table test.testtable , change myenumtest myenumtest enum ('Y','N') DEFAULT 'N' NOT NULL

    – but you won't have to worry about that stuff if you use the sqlyog GUI

    in reply to: Using enum #16901
    peterlaursen
    Participant

    Sorry – that went wrong , se image

    in reply to: Using enum #16900
    peterlaursen
    Participant

    And note the diffent quotation marks, see image

    alter table `test`.`testtable` ,change `myenumtest` `mynewenumtest` enum ('Y','N') DEFAULT 'N' NOT NULL

    in reply to: Using enum #16899
    peterlaursen
    Participant

    this sql should work (it does here)

    create table `test`.`TableName` (`ColumnName` ENUM('Y', 'N') NULL);

    or

    alter table `test`.`TableName1` ,change `ColumnName` `ColumnName` enum ('Y','N') NULL ;

    (or NOT NULL with a default value)

    With the sqlyoug GUI it looks like the image below . Note where to use quotes and not!

    the sql corresponding to the image is

    create table `test`.`enumtest` ( `qwer` enum ('Y','N') DEFAULT 'N' NOT NULL )

    in reply to: Can't view Results if SQL Editor hidden #16880
    peterlaursen
    Participant

    >> ritesh:

    well — it could be done even if the sql editor pane was not visible to the user.

    But I understand that that would mean quite a big change in code structure.

    >>bfalling:

    then don't close the sql pane but pull the divider between the sql pane and the result pane upwards instead.

    in reply to: Left join fails in SQLyog Enterprise 4.01 #16895
    peterlaursen
    Participant

    I don't believe it's an issue with sqlyog …

    The error-message looks like it's is generated by MySQL itself.

    You could try running the query from “MySQL Query Generator” (download from http://www.mysql.com) and you will probably have the samme error message.

    BTW – do you use INNODB tables ?

    in reply to: Can't view Results if SQL Editor hidden #16878
    peterlaursen
    Participant

    OK 🙂

    probably they will fix it will som upcoming release …

    in reply to: User Create Bug? #16849
    peterlaursen
    Participant

    No that wasn't it!!

    here it makes no difference which of the two binaries I use.

    But actually I don't think I've run the script to update user GRANT tables when I installed 4.1.8 and 4.1.9. So maybe it's a problem with the script distributed with those version ?

    in reply to: User Create Bug? #16848
    peterlaursen
    Participant

    I'm running 4.1.9 nt-max.

    Matbe it's a workaround to change to the “max” server binary ??

    in reply to: User Create Bug? #16846
    peterlaursen
    Participant

    Still no problems here!

    I'm running 4.1.9. And when logged on as ROOT or any user with GRANT privilege all sorts of user permissions are saved.

    Do you all remember to press “apply” ?

Viewing 15 posts - 7,276 through 7,290 (of 7,398 total)