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

Forum Replies Created

Viewing 15 posts - 5,431 through 5,445 (of 7,398 total)
  • Author
    Posts
  • in reply to: Sqlyog 5.11 Buffer Overrun #21326
    peterlaursen
    Participant

    Thanks for your report …

    This was a new variation, I think! You can look around in the Forums and find other variations.

    I tried if an empty sqlyog.ini would crash 5.11 and 5.12 BETA3 on my system and it does not. If there is an empty (or no) sqlyog.ini SQLyog writes this:

    [HSplitter]

    Left=0

    Right=0

    Top=0

    Bottom=0

    ULeftOrTopPercent=0

    [VSplitter]

    Left=0

    Right=0

    Top=0

    Bottom=0

    ULeftOrTopPercent=0

    [SQLYOG]

    Left=0

    Top=0

    Right=600

    Bottom=600

    .. and next displays the connection screen. If you save details here they are saved too and main program window opens.

    From the information from another user we have seen a crash occur after the creation of the sqlyog.ini -file (as an empty file) and before writing anything to it.

    Hmmm.

    Empty sqlyog.ini's, empty 'favorites' folder, favorites-files with an empty extension can crash some systems. Every time we come back to the file system.

    in reply to: Bug In Backup Of Triggers #21486
    peterlaursen
    Participant

    BTW .. I also think that the backup tools should soon allow for backup of EVENTS with MySQL 5.1 – partiotions are backed up allready as they are returned with the 'create statement for the table'.

    I don't request full-blooded support for events at this time. Only in the backup tools in 'the first run'.

    Probably the code is very similar as for SP's ..

    peterlaursen
    Participant

    I think you must explain a little more in detail.

    1) The category chosen is 'Migration Tool'. Is it a Migration(ODBC-import) job we are talking about?

    2) What does the… tag look like in that job file?

    3) “I get this terminal error” I understand that you are running SJA from command-line?

    You are PERFECTLY sure that you DID specify a job-file for MIGRATION/ODBC-import?

    in reply to: Sqlyog 5.11 Enterprise – Crash No Errors #21365
    peterlaursen
    Participant

    Thanks for your feeedback!

    Could you answer:

    Did you try starting 5.12 without first removing that folder?

    If you did, did you then experience crash with 5.12 too?

    in reply to: Play List #21499
    peterlaursen
    Participant

    I think you came the wrong place ..

    This is The WEBYOG Forums.

    WEBYOG's flagship product is the MySQL GUI client SQLyog.

    Nothing here is related to WINAMP at all!

    😮

    in reply to: Sja Hangs When Replicating Huge Tables #21495
    peterlaursen
    Participant

    1) First I notice that there is no Primary Key in the table. You should *NOT* attempt to use SJA without understanding how it uses the Primary Key and what is does it there is not any! You might get quie another result than you expect! The article explains. If possible: add a Primary Key.

    2) Need they all be TEXT? 'clientip' could be a char/varchar(15) I think? You may run into a MySQL configuration issue (buffers too small) that makes it very slow to execute the convat_ws() function as the SJA does, because …

    3) .. if no options is specified the comcat_ws() takes all columns as argument. With such long table definition you absolutely should use the option if possible – that is if you can specify a unique combinations of columns. Then only the specified columns will be used as argument with concat_ws(). Also the with the 'timestamp' column seems possible. It not defined as 'CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP' Is it a pretty old MySQL version, where this is not possible? However if you appliation does the same that would be the same.

    Try to execute

    SELECT concat_ws(all columns go as argument) on the source server (where data are) with any client:

    Something like: SELECT concat_ws('_',`maillog`.`column1`,`maillog`.`column2` etc.) from tbl_a limit 100;

    How long does it take to return a result?

    Also:

    How many rows are there?

    How big are the database files?

    in reply to: Sja Hangs When Replicating Huge Tables #21493
    peterlaursen
    Participant

    A more verbose behaviour has been requested by me to!

    I think it is the SJA for Linux that you are using? Running form same physical localtion as the servers?

    Or from somewhere else?

    Still you syould check if the data allows for use of and options.

    Could you post the 'CREATE statement for the table's involved ?? That could give an idea if this is normal.

    And still SJA does not REPLICATION. <_<

    in reply to: Scroll Bug In Insert Mode #21496
    peterlaursen
    Participant

    Well, yes, it does exactly as you describe. But if you click twice (to enter data) it does not.

    in reply to: Sja Hangs When Replicating Huge Tables #21491
    peterlaursen
    Participant

    I do not think it hangs. I think it is working! And it cannot works faster than it gets the data it needs from the servers!

    Check CPU and Network traffic from Task Manager! And don't be surprised if traffic is only 5-10 KB/sec. That is quite common with the sort of operation on cheap ISP's with a shared database server.

    If you work with big databases you should learn to use the and -options effectively.

    Refer to:

    http://www.webyog.com/articles/Using_SQLyo…L_Databases.pdf

    .. here I describe an example where I reduced sync time from 11 hours to 5 minutes doing so!

    A detail: SJA does not REPLICATE. It SYNCHRONIZES.

    http://www.webyog.com/faq/11_60_en.html

    in reply to: Import From Sql Statement Fails #21484
    peterlaursen
    Participant
    in reply to: Import From Sql Statement Fails #21483
    peterlaursen
    Participant

    1)

    The problem is that there is no 'drop TRIGGER if exists' available with MySQL trigger syntax!

    Please try 5.12 beta3 !

    http://www.webyog.com/betas/SQLyog512Ent.exe

    (be aware that it migrates your 'Personal' folder to a 'favorites' folder if you 'install over'. If you do not want that then just install to another folder).

    The 'export' tool here has implemented an option to select/deselect 'drop trigger' statment. This seems to be forgotten in the 'backup' powertool. See attached pics. 'drop trigger' is written to the file if 'create trigger is' selected.

    To use the 'include drop trigger' with the export tool:

    If you restore to an empty database you must deselect it.

    To restore into a database where that trigger exists you must select it.

    And if situation changed in between you'll have to edit the file! As 'if exists' is not available we have to chance to 'automate' it.

    This should answer what you can do!

    2)

    To understand why this happened we will need more information about the server!

    What server version? Is current version installed over a previous version?

    If yes did you run all update scripts as specifed in the MySQL documentation.

    Now is the database from where you made the backup still available? If yes then what does:

    SELECT * from information_schema.TRIGGERS;

    or

    SELECT * from information_schema.TRIGGERS where TRIGGER_NAME = 'InsertHAENowDate';

    return?

    The backup tool does not 'invent' triggers. There must (have) been some trace of it in the system!

    3)

    I also just reported a bug with backup of triggers here myself:

    http://www.webyog.com/forums/index.php?sho…view=getnewpost

    4)

    You are sure that this trigger was not there when you made the backup ?!

    that would be the simple explanation!


    @Ritesh
    :

    any way to ensure that the execution of the script does not stop here (with error 1360), but goes on with next statement?

    in reply to: Import From Sql Statement Fails #21482
    peterlaursen
    Participant

    1)

    Well you can open the SQL in a text editor and delete the statement

    *DROP TRIGGER `InsertHAENowDate`*

    Please search if this trigger is reffered to somewhere else in the script too!

    But hold it for 15 minutes. More info coming!

    in reply to: The Current Crash Issue … #21447
    peterlaursen
    Participant

    I wrote “Did you change the syntax of the folder in the installation script?”

    But actually the 'favorites' is not created by the installation script but by the executable itself. So it must be in there!

    in reply to: Re-installing Rights #21469
    peterlaursen
    Participant

    I can easily find a place to add it!

    But don't you think we should provide an option to remove/updated outdated registration information from the system?

    I can think of two ways to do so:

    1) Provide a small .exe that does this as an additonal download available

    2) A 'change registration' option from help menu.

    in reply to: Sqlyog Can't Start On Win 98 #21480
    peterlaursen
    Participant

    We have similar reports and are working on the issue.

    Does it display the message 'wrong program' ?

Viewing 15 posts - 5,431 through 5,445 (of 7,398 total)