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

Forum Replies Created

Viewing 15 posts - 1,456 through 1,470 (of 2,527 total)
  • Author
    Posts
  • in reply to: Copy table kills TIMESTAMP attribute #16750
    Ritesh
    Member

    Thanks for the report. I have forwarded the issue to my development team and I will revert back soon.

    in reply to: '&' character in password causes error (tunneling) #16757
    Ritesh
    Member

    I have forwarded the issue to my development team. I will revert back soon.

    in reply to: Problem with global user rights #16756
    Ritesh
    Member

    I have forwarded the issue to my development team.

    in reply to: Comments for Table fields #16747
    Ritesh
    Member

    Can you just send a mail to [email protected] so that I can add your email address to our beta-testers list?

    in reply to: How to edit fields #16760
    Ritesh
    Member

    Currently, F8 is the solution for you.

    Starting with v4.1, SQLyog will have an extra tab in the result window where you will be able to directly edit fields.

    in reply to: Comments for Table fields #16745
    Ritesh
    Member

    This option is planned for one of the future versions of SQLyog.

    in reply to: Data Sync not working as expected #16737
    Ritesh
    Member

    First BETA of 4.1 is expected at the end of Feb-2005.

    4.1 will be a FREE upgrade to existing 4.x Enterprise users (all inline updates of SQLyog are FREE).

    in reply to: Data Sync not working as expected #16735
    Ritesh
    Member

    Actually this feature is planned for v4.1.

    in reply to: Copy Data to Clipboard #16557
    Ritesh
    Member

    Thanks for the info.

    in reply to: No autoindent? #16743
    Ritesh
    Member

    Sorry but currently both the options are not available in SQLyog.

    in reply to: can replicate table without autoincrement value #16731
    Ritesh
    Member

    SJA requires a PRIMARY KEY to be defined on the table.

    The simplest way to add a PRIMARY KEY to a table would be to add an *autoincrement* column to the table.

    in reply to: Data Sync not working as expected #16733
    Ritesh
    Member

    Currently SJA does not generate script(s) that contains the required *data sync* text.

    SQLyog's Structure Sync Tool does generate scripts that contains the required *structure sync* text.

    in reply to: can replicate table without autoincrement value #16729
    Ritesh
    Member

    SJA requires a PRIMARY KEY to be defined for the table to be synced.

    Can you cut-n-paste the error message from sja.log out here?

    in reply to: Error No. 2007 – Protocol Mismatch #16678
    Ritesh
    Member

    Can you send me the URL of your SQLyogTunnel.php page?

    Is it possible to get temporary access to your MySQL server so that we can work on the problem and fix the bugs (if there are any).

    in reply to: Can't create foreign keys #16728
    Ritesh
    Member

    We are running 4.1.7.

    We created two tables – dependents and members to reproduce the error. The create table statements are:

    Code:
    CREATE TABLE `dependents` (                                                                                                                                                                                                                                                                                                                                                                              
                 `CDEMSSN` char(9) NOT NULL default '',                                                                                                                                                                                                                                                                                                                                                                  
                 `CDECODE` char(1) NOT NULL default '',                                                                                                                                                                                                                                                                                                                                                                  
                 `CDELAST` char(15) default NULL,                                                                                                                                                                                                                                                                                                                                                                        
                 `CDEFIRST` char(15) default NULL,                                                                                                                                                                                                                                                                                                                                                                      
                 PRIMARY KEY  (`CDEMSSN`,`CDECODE`),                                                                                                                                                                                                                                                                                                                                                                    
                 KEY `CDEMSSN` (`CDEMSSN`),                                                                                                                                                                                                                                                                                                                                                                              
               ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

    and

    Code:
    CREATE TABLE `members` (                                                                                                                                                                                                                  
              `CENMSSN` char(9) NOT NULL default '',                                                                                                                                                                                                  
              `CENCODE` char(1) default NULL,                                                                                                                                                                                                        
              `CENLAST` char(15) default NULL,                                                                                                                                                                                                        
              `CENFIRST` char(15) default NULL,                                                                                                                                                                                                      
              PRIMARY KEY  (`CENMSSN`)                                                                                                                                                                                                                
            ) ENGINE=InnoDB DEFAULT CHARSET=utf8  

    We then created the required FK. The SQL for FK creation as generated by SQLyog is:

    Code:
    alter table `manitest`.`dependents` add foreign key (CDEMSSN) references `members` (CENMSSN) on update no action;

    The whole process went smoothly without any problems and we were able to create the FK.

    Did we miss something?

Viewing 15 posts - 1,456 through 1,470 (of 2,527 total)