Forum Replies Created
-
AuthorPosts
-
ShadowMember
You could use a GUID generator to create unique keys. A google search of “guid generator” will turn out dozens of such components.
ShadowMemberIt took me several attempts, but yes, there is a bug. The same happens if you switch between SQLyog and another application quickly several times.
ShadowMemberI see. Until then we'll be granting users just a bit more rights…
ShadowMemberThis error should occur when you want to create/alter a table with two columns having the same name. Could you specify the the structure of the table to be copied?
ShadowMemberScripts embedded in web pages work because they are run on the server thus considered as local connection. I know nothing about the control center.
ShadowMemberWell, no sort of things occur to me at all (Win2K, SQLyog 3.5). Syntax highlighting has always been correct. It's true, however, that CAST and CONVERT functions are not reconized, although CONVERT is the ODBC syntax for CAST. The reason for this, I believe, is that both functions were added in MySql 4.0.
ShadowMemberWin2K SP3, MySql 4.1-alpha. Generally I have scrolling problems on Win98, nothing seems to work on that platform the way I got used to on Win2K 😛
ShadowMemberFirst of all, if you have commas in your fields, then “fields terminated by” option should not be “,”, unless you specify “fields enclosed by”. Secondly, before updating your text fields, you should check for special characters such as “, and have them escaped.
For example,
Quote:Hello ” Kevin, Peter” , how are you?should be entered as 'Hello ” Kevin, Peter” , how are you?' . In this case “” is the escape character.
ShadowMemberQuote:ResultWindow or Insert/Update WindowIt works fine for me…
ShadowMemberPerhaps the end-of-line character (/n) is not reconized properly. Convert the CSV file, then retry importing.
ShadowMemberScrolling works for me as well, but the last line is accessible via arrow keys as msha noted.
ShadowMemberBesides, it would be quite unusual to have MySql running on the FTP server…
ShadowMemberWell, I'm the luckier one! 😀
ShadowMemberThe table type may also affect which settings should be altered, but the following ones have the most influence on performance:
set-variable = read_buffer_size
set-variable = key_buffer_size
set-variable = max_allowed_packet
set-variable = table_cache
set-variable = sort_buffer
set-variable = net_buffer_length
set-variable = myisam_sort_buffer_size
4.5.6.4 SHOW VARIABLES section of MySql manual explains these settings in detail, but generally assigning higher values to these variables will increase the speed. But in case of such large tables, I would recommend to get additional memory (at least 512MB plus).
ShadowMemberSQLyog v3.5 corrects this behaviour.
-
AuthorPosts