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

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 642 total)
  • Author
    Posts
  • in reply to: Connection Error #18057
    Shadow
    Member

    Whad do you mean by “real IP”? You mean that you connect to Internet through LAN and your firewall uses NAT?

    In MySql a user is created as username@hostname. Hosname may be an IP address or domain name. If your user is bound to a specific host (your computer is not granted access) and you connect from another one, then MySql refuses the connection! You may specify “%” as hostname meaning that user may connect from any host.

    in reply to: Help with DB's file locations in Server #18055
    Shadow
    Member

    First of all, SQLyog has nothing to do with storing MySql db tables. It's up to MySql's configuration.

    Secondly, MySql is not a file based db manager like Access, but a server based one. This means that there is a daemon/process listening at a given port (or pipe, but that is very uncommon) which responds to incoming requests.

    It would be nice if you copied the connection string here and disclosed some details about your MySql configuration!

    in reply to: Problem importing CSV file #18034
    Shadow
    Member

    Issue a SHOW WARNINGS command from SQL window.

    in reply to: Suggestion for user management #17263
    Shadow
    Member

    Actually, I disagree with you peterlaursen on this issue! I prefer to use one application, or at least one set of applications (set=apps created by same vendor) to perform all tasks regarding MySql! I don't want to launch MySqlAdministrator every time just because I want grant or revoke rights, ad or delete users.

    in reply to: v4.0.6 RC1 – SQL dump doesn´t work #18020
    Shadow
    Member

    Perhaps you tried to export an empty table!

    in reply to: Templates #18016
    Shadow
    Member

    Have you ever tried issuing a HELP “update”; command from SQL window? Hint: view results as text data! Although it is not as complete as the above mentioned help, but still it's quite useful!

    in reply to: running sja at time #17982
    Shadow
    Member

    If you are implementing a POS application, then I would use MySql's built-in replication capabilities as they offer continous sync and recovery options.

    in reply to: Showing error dialog in tree list of tables #17967
    Shadow
    Member

    This arror may be well related to you using MySql v5.0.4. 5 series is marked beta therefore lot of changes should be expected!

    in reply to: Suggestion for user management #17261
    Shadow
    Member

    At first I would be delighted if SQLyog supported “new” privileges introduced in MySql 4.1…

    If you want to see a well designed UI, then download EMS MySql manager from Internet. Its GUI is far superior to SQLyog, but it is a bit buggy. I must admit, very buggy, at least on W2K…

    in reply to: Duplicate Column Name Error #17957
    Shadow
    Member

    In the old days I commited the mistake of creating an additional index on my pk fields and that adversly affected data sync… You only need to drop the extra, unneeded index in this case!

    in reply to: Want to view column type tiny text not as blob #17945
    Shadow
    Member

    For simplicity MySql does not use the term 'CLOB'. MySql has enough field types already.

    in reply to: User/privileges management feature request #17954
    Shadow
    Member

    Till this feature gets implemented use INSERT … SELECT statements to accomplish the same result. Just don't forget to flush privileges afterwards.

    in reply to: 2-way sync #17823
    Shadow
    Member

    Prompting is not really a solution if you sync dbs in which thousands of records get inserted/updated…

    in reply to: synchronization with SJA #17953
    Shadow
    Member

    Currently SQLyog does not have a built-in tool for just adding records that are not present in the target database… Of course, you may query the target db to get the list of pks, then query the source db to get entries that are not present in the target db and manually issue the appropriate SQL commands to get them in sync. You can even write a small script to do the job for you.

    in reply to: synchronization with SJA #17951
    Shadow
    Member

    Well, synchronization means to bring two tables in separate databases (possibly located on separate hosts) with same structure to exactly the same state. The result is, if you change a record in the source db that has a corresponding record in the target db (same pk), then that record will be changed to resemble the source table…

Viewing 15 posts - 1 through 15 (of 642 total)