New features in MySQL 4.0

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Deevyesh Tyagi
    Junior Member
    • Feb 2006
    • 10

    New features in MySQL 4.0

    New features in MySQL 4.0
    MySQL 4.0 is the latest production release of the MySQL database, and it is a huge improvement over the old version 3.23. Version 4.0.12 was pronounced stable in March, 2003. Here are the main new features:

    Perhaps the most-awaited enhancement is to the FULLTEXT index. This creates an index on a text field, and provides a powerful, flexible mechanism for performing boolean searches on this. In my experience, I've often had to index and access text data, and the FULLTEXT index is much better than any of my attempts. Many solutions are limited to full words only, while the FULLTEXT index has no such limitation, allowing you to weight words or portions of words. You can read more about FULLTEXT indexes in Using Fulltext Indexes in MySQL, Part 1 and Using Fulltext indexes in MySQL, Part 2
    Supports the ANSI SQL UNION statement, which combines query results into one result set.
    Can perform multi-table UPDATEs and DELETEs.
    There are other non-standard new statements, familiar to users of other DBMS', such as IDENTITY and TRUNCATE TABLE, as well as new functions such as FOUND_ROWS(), which return the number of records that would have been returned without a LIMIT clause.
    Many of the MySQL server variables can be changed without restarting the server, which, while useful, sounds more useful than it is because a reboot will restore the old settings.
    The InnoDB storage engine is now a standard feature of the server, and no longer an optional extra. InnoDb is the table type that allows ACID-compliant transactions, as opposed to the default MyISAM table type, which is faster for general use, but not that useful for critical operations. InnoDB tables use row level locking, which means that an update to a record only locks that one record, not the entire table. Locking the entire table is faster when most of the database accesses are selects (as with most websites), but is slower when the number of inserts and updates are closer to the number of selects. For a long time, critics of MySQL had valid problems with the security and consistency of MyISAM tables, and the ACID compliant InnoDB table goes a long way to resolving these.
    MySQL 4.0 can be faster in certain circumstances. This is mainly achieved through a query cache, which caches repetitive query results, although many mature applications perform their own caching on a code level. There are other minor speed improvements to certain statements as well.
    MySQL comes with an Embededded Server library, allowing applications to be deployed with MySQL as the underlying database, such as on CD's, kiosks, fridges or even pencil sharpeners (yes a data storing pencil sharpener is coming soon, mark my words).
    MySQL now supports an extra character set - latin1_de, which ensures correct sorting of German words.
    MyISAM tables now support symbolic linking at a table level, so Windows users can create symlinks at a table level (this was always available to Unix users)
    The security model has been enhanced, allowing the administrator to grant permissions more finely. New permissions are those allowing users to create temporary tables, lock tables, perform certain replication tasks, view all existing databases, connect even when the maximum connections have been reached (useful for a DBA to enter and perform emergency surgery) and even permission to run stored procedures (which are only coming in version 5). A DBA can also limit users to a certain number of connections, updates or queries per hour.
    MySQL 4 runs natively on Novell Netware 6.0.
    That's quite a list, and of course each of the versions to-date have changelogs that are at least as long as the above lists, with minor bugfixes and feature additions. However, the main two are the ACID compliancy as a default feature (many DBA's scorn to touch systems that cannot support this), and the FULLTEXT indexes.
    ________
    Cumshot blonde
    Last edited by Deevyesh Tyagi; 04-12-2011, 10:37 PM.
  • Divyesh
    Junior Member
    • Feb 2006
    • 9

    #2
    What's New in MyDbConverter 3.0?

    MyDbConverter 3.0 has many new features as well as other enhancements to the existing features from previous version.
    The most important new features included in MyDbConverter 3.0 are listed below:

    Support for selecting fields to convert for each table:

    MyDbConverter 3.0 support selecting only some fields to convert for each selected table, this gives you more control on the conversion process.

    Support for Renaming Tables during conversion ( Access to MySQL only):

    This new feature enables you to rename Access on the Target MySQL database, e.g. Convert the "Customers" table into "Clients". This feature is supported only when converting from Access to MySQL.

    NULL Handling:

    This new feature let MyDbConverter automatically converts all of your NULL values in the source database records to "Zero" for numeric fields such as Integer, long and double fields. Or to convert NULL values into an empty string "" for string fields such as "Text" and "Memo" fields

    Support for changing "Date/Time" fields data type ( Access to MySQL only) :

    This new feature enables you to control how MyDbConverter should handle "DateTime" fields for each table. You can choose to convert "DateTime" fields in each of your selected tables list to "DateTime", "Date", "Time" or "Year" in the target MySQL database. This feature is supported only when converting from Access to MySQL.

    Support to choose whether to convert Indexes or not:

    MyDbConverter now gives you the ability to control the conversion of Access Indexes to MySQL, you can choose whether to convert Access Indexes to your target MySQL database or not.

    Support to choose whether to convert Auto Increment or not

    MyDbConverter now gives you the ability to control the conversion of MySql auto increment fields to Access , you can choose whether to convert MySql Auto Increment fields to your target Access database as Auto number Fields or as number fields

    Support for change Access fields character case ( Access to MySQL only) :

    MyDbConverter 3.0 gives you the ability to change all field names case for each selected table to UPPER , lower or Capitalize case. Or you can leave it as it is "None". This feature is supported only when converting from Access to MySQL.

    Support to Select Target MySQL Table type :

    Now you can control the type of converted MySQL tables. you can choose from "MyISAM", "InnoDB", "ISAM", "HEAP", "BDB" table types.
    ________
    marijuana vaporizer
    Last edited by Divyesh; 01-27-2011, 10:27 PM.

    Comment

    • Ruby17
      Member
      • Sep 2008
      • 56

      #3
      Thank's for the Information...........

      Comment

      Working...
      😀
      😂
      🥰
      😘
      🤢
      😎
      😞
      😡
      👍
      👎