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

Forum Replies Created

Viewing 15 posts - 6,271 through 6,285 (of 7,398 total)
  • Author
    Posts
  • in reply to: Not Null Columns #19698
    peterlaursen
    Participant

    It also has to do with the workings of SQLyog

    for instance, with this table

    Code:
    CREATE TABLE `tt` (                        
             `id` bigint(20) NOT NULL auto_increment,  
             `t` varchar(50) NOT NULL,                
             `n` bigint(20) NOT NULL,                  
             PRIMARY KEY  (`id`)                      
           ) ENGINE=MyISAM DEFAULT CHARSET=latin1      

    SQLyog wil generate this SQL

    Code:
    insert into `test`.`tt` ( `id`, `t`, `n` ) values (  '',  'yy',  '' )

    when inserting the singe value 'yy' in field `t` from the data-pane.

    Now '' (empty string) is a legal string value, but not a legal numerical value!

    It is a problem that the grid view of DATA and RESULT panes do not distinguish between NULL's and empty strings. I know it is on the TODO.

    in reply to: Not Null Columns #19697
    peterlaursen
    Participant

    in 'non-strict' mode the server inserts 0 (zero) for a undefined numerical and '' (empty string) for an undefined string, 0000-00-00 for an undefined date etc.

    in 'strict mode' an error ” out of range value …” occurs.

    We have been discussing 'strict mode' a few times recently!

    Strict mode is new with SQL version 5. With earlier version stric mode is not available.

    You can go through:

    http://www.webyog.com/forums/index.php?act…ite=strict+mode

    You will find link to the MySQL docs explaining in those threads ….

    And a FAQ entry:

    http://www.webyog.com/faq/28_72_en.html

    in reply to: Registration #19603
    peterlaursen
    Participant

    You and the company can upgrade to version 5, I think.

    Version 5 will need to be registered with a new code anyway.

    in reply to: Cannot See Tables And Views #19696
    peterlaursen
    Participant

    @gobi

    could you possibly find that link again?

    It could be of interest for our FAQ!

    in reply to: Using Enum Data Type #19690
    peterlaursen
    Participant
    in reply to: New User – Backup Job Not Working #19684
    peterlaursen
    Participant

    edit: I believe I wrote some nonsence! so away with it! 🙁

    But the problem is that the WAMP server setup win2003-Apache-php-MySQL can be done in so incredibly many different ways.

    in reply to: New User – Backup Job Not Working #19683
    peterlaursen
    Participant

    nevertheless:

    http://support.microsoft.com/?id=309508

    It look like the configuration of the IIS lockdown tool is the cause

    http://www.microsoft.com/downloads/details…61-FD755D23CDEC

    But somewhat confusing – the lockdown tool is really a “patch” for insecurities of various MS server software. I found somewhere that Win2003 does not need it. Maybe it is integrated ?

    in reply to: Feature Request: Ability To Stop Queries. #19688
    peterlaursen
    Participant

    Another “trick” as I wrote in the BLOGS:

    Quote:
    I few days ago I came across this report in the MySQL bug reporting system:

    http://bugs.mysql.com/bug.php?id=12702

    well .. it's not really a bug. But I guess we have all experienced that long running query on 'localhost' “kills” everything so that the computer can't be used for anything else. Reason is that the query proces has a priority of “high” or in numerical terms “8”. Normal priority is “6”. Only very critical system tasks have “9” .

    There is a simple setting to give a query proces “normal” priority, as described in the bug report. The setting can be set from “MySQL Administrator” .. Startup variables .. Advanced

    I have changed my setting!

    in reply to: New User – Backup Job Not Working #19680
    peterlaursen
    Participant
    Quote:
    The handle is in the wrong state for the requested operation

    I have been googling on that error message and it seems to be related to MS IIS webserver (and not Apache). Can you confirm that your webserver is an IIS server ?

    There are also some 'hits' referring to Exchange Server. Do you use notifications ? If yes, please try not to!

    in reply to: Privileges For Views (v4.2 Rc2) #19678
    peterlaursen
    Participant

    Or you can use “MySQL Administrator” from MySQL.

    in reply to: Bug With Timestamp Field Default Current_timestamp #19686
    peterlaursen
    Participant

    What you can do is to work from the RESULT pane. When you SELECT data then don't select the timestamp field!

    in reply to: Archive And Csv Storage Engines #19674
    peterlaursen
    Participant

    I know they are hardcoded! I can see that! 😀

    in reply to: Load Data Infile Error #19670
    peterlaursen
    Participant
    Quote:
    I get an error suggesting duplicate keys

    No – you get an error suggesting dublicate ENTRIES for a key! The error message is a MySQL error and not a SQLyog error. Line no. 1352 must have a dataset that is allready in the database as referred to by “key 1” (probably a PK)

    Do you LOAD into an empty table? (EDIT: file >> table)

    Another reason could be some mismatch occurring due to existence of some special character like ' ” % or _ in the dataset and incorrect use of escaping within strings.

    You might find some useful hints here:

    http://www.webyog.com/faq/28_73_en.html

    For further help we will need to see

    1) that line 1352 and your DELIMITED, ENCLOSED and ESCAPED settings with the LOAD DATA INFILE statement.

    2) create statement for the table – expecially how that 'key 1' is defined

    in reply to: Ssh Tunnel Not Working #19642
    peterlaursen
    Participant

    … just for your info:

    The Enterprise version runs as a demo with full functionality for a month.

    in reply to: Ssh Tunnel Not Working #19639
    peterlaursen
    Participant
    Quote:
    plink.exe isn't in the windows process list

    It should be and it is here! If your screen resolution is big enough try open task manager and SQLyog at the same time. When you click 'test connection' plink.exe occurs in task manger. It goes away again when you click 'OK'

    Next try 'Connect'. Do you see any 'flickering' in the task manager indicating that plink.exe is started, but then killed immidiately ?

Viewing 15 posts - 6,271 through 6,285 (of 7,398 total)