![]() |
![]() Alden Hosting provides professional, efficient, and reliable business-class Web hosting services to small- and medium-sized businesses. |
|
|
Table of Contents
Questions
Questions and Answers 26.1.1: When did MySQL 5.0 become production-ready (GA)? MySQL 5.0.15 was released for production use on 19 October 2005. We are now working on MySQL 5.1, which is currently in beta. 26.1.2: Can MySQL 5.0 do subqueries? Yes. See Section 13.2.8, “Subquery Syntax”. 26.1.3: Can MySQL 5.0 peform multiple-table inserts, updates, and deletes?
Yes. For the syntax required to perform multiple-table
updates, see Section 13.2.10, “
A multiple-table insert can be accomplished using a trigger
whose 26.1.4: Does MySQL 5.0 have a Query Cache? Does it work on Server, Instance or Database? Yes. The query cache operates on the server level, caching complete result sets matched with the original query string. If an exactly identical query is made (which often happens, particularly in web applications), no parsing or execution is necessary; the result is sent directly from the cache. Various tuning options are available. See Section 5.13, “The MySQL Query Cache”. 26.1.5: Does MySQL 5.0 have Sequences?
No. However, MySQL has an 26.1.6:
Does MySQL 5.0 have a No. This is on the MySQL roadmap as a “rolling feature”. This means that it is not a flagship feature, but will be implemented, development time permitting. Specific customer demand may change this scheduling.
However, MySQL does parse time strings with a fractional
component. See Section 11.3.2, “The 26.1.7: Does MySQL 5.0 work with multi-core processors? Yes. MySQL is fully multi-threaded, and will make use of multiple CPUs, provided that the operating system supports them. 26.1.8: Is there a hot backup tool for MyISAM like InnoDB Hot Backup? This is currently under development for a future MySQL release. 26.1.9: Have there been there any improvements in error reporting when foreign keys fail? Does MySQL now report which column and reference failed?
The foreign key support in 26.1.10: Can MySQL 5.0 perform ACID transactions?
Yes. All current MySQL versions support transactions. The
The Questions
Questions and Answers 26.2.1: Where can I obtain complete documentation for MySQL storage engines?
See Chapter 14, Storage Engines. That chapter contains
information about all MySQL storage engines except for the
26.2.2: Are there any new storage engines in MySQL 5.0?
Yes. The 26.2.3: Have any storage engines been removed in MySQL 5.0?
Yes. MySQL 5.0 no longer supports the
26.2.4:
What are the unique benefits of the
The 26.2.5: Do the new features in MySQL 5.0 apply to all storage engines?
The general new features such as views, stored procedures,
triggers, Questions
Questions and Answers 26.3.1: What are server SQL modes? Server SQL modes define what SQL syntax MySQL should support and what kind of data validation checks it should perform. This makes it easier to use MySQL in different environments and to use MySQL together with other database servers. The MySQL Server apply these modes individually to different clients. For more information, see Section 5.2.6, “SQL Modes”. 26.3.2: How many server SQL modes are there? Each mode can be independently switched on and off. See Section 5.2.6, “SQL Modes”, for a complete list of available modes. 26.3.3: How do you determine the server SQL mode?
You can set the default SQL mode (for
mysqld startup) with the
26.3.4: Is the mode dependent on the database or connection?
A mode is not linked to a particular database. Modes can be
set locally to the session (connection), or globally for the
server. you can change these settings using 26.3.5: Can the rules for strict mode be extended?
When we refer to strict mode, we mean a
mode where at least one of the modes
26.3.6: Does strict mode impact performance? The intensive validation of input data that some settings requires more time than if the validation is not done. While the performance impact is not that great, if you do not require such validation (perhaps your application already handles all of this), then MySQL gives you the option of leaving strict mode disabled. However — if you do require it — strict mode can provide such validation. 26.3.7: What is the default server SQL mode when My SQL 5.0 is installed? By default, no special modes are enabled. See Section 5.2.6, “SQL Modes”, for information about all available modes and MySQL's default behavior. Questions
Questions and Answers 26.4.1: Does MySQL 5.0 support stored procedures? Yes. MySQL 5.0 supports two types of stored routines — stored procedures and stored functions. 26.4.2: Where can I find documentation for MySQL stored procedures and stored functions? See Chapter 17, Stored Procedures and Functions. 26.4.3: Is there a discussion forum for MySQL stored procedures? Yes. See http://forums.mysql.com/list.php?98. 26.4.4: Where can I find the ANSI SQL 2003 specification for stored procedures? Unfortunately, the official specifications are not freely available (ANSI makes them available for purchase). However, there are books — such as SQL-99 Complete, Really by Peter Gulutzan and Trudy Pelzer — which give a comprehensive overview of the standard, including coverage of stored procedures. 26.4.5: How do you manage stored routines?
It is always good practice to use a clear naming scheme for
your stored routines. You can manage stored procedures with
26.4.6: Is there a way to view all stored procedures and stored functions in a given database?
Yes. For a database named SELECT ROUTINE_TYPE, ROUTINE_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA='
For more information, see
Section 20.14, “The
The body of a stored routine can be viewed using
26.4.7: Where are stored procedures stored?
In the
You can also query the 26.4.8: Is it possible to group stored procedures or stored functions into packages? No. This is not supported in MySQL 5.0. 26.4.9: Can a stored procedure call another stored procedure? Yes. 26.4.10: Can a stored procedure call a trigger?
A stored procedure can execute an SQL statement, such as an
26.4.11: Can a stored procedure access tables? Yes. A stored procedure can access one or more tables as required. 26.4.12: Do stored procedures have a statement for raising application errors?
Not in MySQL 5.0. We intend to implement the
SQL standard 26.4.13: Do stored procedures provide exception handling?
MySQL implements 26.4.14: Can MySQL 5.0 stored routines return result sets?
Stored procedures can, but stored
functions cannot. If you perform an ordinary
26.4.15:
Is Not in MySQL 5.0. 26.4.16:
Is there a MySQL equivalent to using
There is no equivalent in MySQL 5.0. 26.4.17: Can I pass an array as input to a stored procedure? Not in MySQL 5.0. 26.4.18:
Can I pass a cursor as an In MySQL 5.0, cursors are available inside stored procedures only. 26.4.19:
Can I return a cursor as an
In MySQL 5.0, cursors are available inside
stored procedures only. However, if you do not open a cursor
on a 26.4.20: Can I print out a variable's value within a stored routine for debugging purposes?
Yes, you can do this in a stored
procedure, but not in a stored function. If you
perform an ordinary 26.4.21: Can I commit or roll back transactions inside a stored procedure? Yes. However, you cannot perform transactional operations within a stored function. 26.4.22: Do MySQL 5.0 stored procedures and functions work with replication? Yes, standard actions carried out in stored procedures and functions are replicated from a master MySQL server to a slave server. There are a few limitations that are described in detail in Section 17.4, “Binary Logging of Stored Routines and Triggers”. 26.4.23: Are stored procedures and functions created on a master server replicated to a slave?
Yes, creation of stored procedures and functions carried out
through normal DDL statements on a master server are
replicated to a slave, so the objects will exist on both
servers. 26.4.24: How are actions that take place inside stored procedures and functions replicated? MySQL records each DML event that occurs in a stored procedure and replicates those individual actions to a slave server. The actual calls made to execute stored procedures are not replicated. Stored functions that change data are logged as function invocations, not as the DML events that occur inside each function. 26.4.25: Are there special security requirements for using stored procedures and functions together with replication? Yes. Because a slave server has authority to execute any statement read from a master's binary log, special security constraints exist for using stored functions with replication. If replication or binary logging in general (for the purpose of point-in-time recovery) is active, then MySQL DBAs have two security options open to them:
26.4.26: What limitations exist for replicating stored procedure and function actions?
Non-deterministic (random) or time-based actions embedded in
stored procedures may not replicate properly. By their very
nature, randomly produced results are not predictable and
cannot be exactly reproduced, and therefore, random actions
replicated to a slave will not mirror those performed on a
master. Note that declaring stored functions to be
In addition, time-based actions cannot be reproduced on a slave because the timing of such actions in a stored procedure is not reproducible through the binary log used for replication. It records only DML events and does not factor in timing constraints.
Finally, non-transactional tables for which errors occur
during large DML actions (such as bulk inserts) may
experience replication issues in that a master may be
partially updated from DML activity, but no updates are done
to the slave because of the errors that occurred. A
workaround is for a function's DML actions to be carried out
with the 26.4.27: Do the preceding limitations affect MySQL's ability to do point-in-time recovery? The same limitations that affect replication do affect point-in-time recovery. 26.4.28: What is being done to correct the aforementioned limitations? MySQL 5.1 implements row-based replication, which resolves the limitations mentioned earlier. We do not plan to backport row-based replication to MySQL 5.0. For additional information, see Row-Based Replication, in the MySQL 5.1 Manual. Questions
Questions and Answers 26.5.1: Where can I find the documentation for MySQL 5.0 triggers? See Chapter 18, Triggers. 26.5.2: Is there a discussion forum for MySQL Triggers? Yes. It is available at http://forums.mysql.com/list.php?99. 26.5.3: Does MySQL 5.0 have statement-level or row-level triggers?
In MySQL 5.0, all triggers are 26.5.4: Are there any default triggers?
Not explicitly. MySQL does have specific special behavior
for some 26.5.5: How are triggers managed in MySQL?
In MySQL 5.0, triggers can be created using the
Information about triggers can be obtained by querying the
26.5.6: Is there a way to view all triggers in a given database?
Yes. You can obtain a listing of all triggers defined on
database SELECT TRIGGER_NAME, EVENT_MANIPULATION, EVENT_OBJECT_TABLE, ACTION_STATEMENT
FROM INFORMATION_SCHEMA.TRIGGERS
WHERE TRIGGER_SCHEMA='
For more information about this table, see
Section 20.16, “The
You can also use the 26.5.7: Where are triggers stored?
Triggers are currently stored in
In the future, we plan to change this so that trigger
information will be included in the
26.5.8: Can a trigger call a stored procedure? Yes. 26.5.9: Can triggers access tables? A trigger can access both old and new data in its own table. Through a stored procedure, or a multiple-table update or delete statement, a trigger can also affect other tables. 26.5.10: Can triggers call an external application through a UDF? No, not at present. 26.5.11: Is possible for a trigger to update tables on a remote server?
Yes. A table on a remote server could be updated using the
26.5.12: Do triggers work with replication? Triggers and replication in MySQL 5.0 work in the same wasy as in most other database engines: Actions carried out through triggers on a master are not replicated to a slave server. Instead, triggers that exist on tables that reside on a MySQL master server need to be created on the corresponding tables on any MySQL slave servers so that the triggers activate on the slaves as well as the master. 26.5.13: How are actions carried out through triggers on a master replicated to a slave?
First, the triggers that exist on a master must be
re-created on the slave server. Once this is done, the
replication flow works as any other standard DML statement
that participates in replication. For example, consider a
table
Questions
Questions and Answers 26.6.1: Where can I find documentation for MySQL Views? See Chapter 19, Views. 26.6.2: Is there a discussion forum for MySQL Views? Yes. See http://forums.mysql.com/list.php?100 26.6.3: What happens to a view if an underlying table is dropped or renamed?
After a view has been created, it is possible to drop or
alter a table or view to which the definition refers. To
check a view definition for problems of this kind, use the
26.6.4: Does MySQL 5.0 have table snapshots? No. 26.6.5: Does MySQL 5.0 have materialized views? No. 26.6.6: Can you insert into views that are based on joins?
It is possible, provided that your You cannot insert into multiple tables with a single insert on a view. Questions
Questions and Answers 26.7.1:
Where can I find documentation for the MySQL
See Chapter 20, The 26.7.2:
Is there a discussion forum for
See http://forums.mysql.com/list.php?101. 26.7.3:
Where can I find the ANSI SQL 2003 specification for
Unfortunately, the official specifications are not freely
available. (ANSI makes them available for purchase.)
However, there are books available — such as
SQL-99 Complete, Really by Peter
Gulutzan and Trudy Pelzer — which give a comprehensive
overview of the standard, including
26.7.4:
What is the difference between the Oracle Data Dictionary
and MySQL's
Both Oracle and MySQL provide metadata in tables. However,
Oracle and MySQL use different table names and column names.
MySQL's implementation is more similar to those found in DB2
and SQL Server, which also support
26.7.5:
Can I add to or otherwise modify the tables found in the
No. Since applications may rely on a certain standard
structure, this should not be modified. For this reason,
MySQL AB cannot support bugs or other issues which
result from modifying Questions Questions and Answers 26.8.1: Where can I find information on how to migrate from MySQL 4.1 to MySQL 5.0? For detailed upgrade information, see Section 2.4.16, “Upgrading MySQL”. We recommend that you do not skip a major version when upgrading, but rather complete the process in steps, upgrading from one major version to the next in each step. This may seem more complicated, but it will you save time and trouble — if you encounter problems during the upgrade, their origin will be easier to identify, either by you or — if you have a MySQL Network subscription — by MySQL support. 26.8.2: How has storage engine (table type) support changed in MySQL 5.0 from previous versions? Storage engine support has changed as follows:
Questions
Questions and Answers 26.9.1: Where can I find documentation that addresses security issues for MySQL? The best place to start is Section 5.6, “General Security Issues”. Other portions of the MySQL Documentation which you may find useful with regard to specific security concerns include the following:
MySQL Enterprise The MySQL Network Monitoring and Advisory Service enforces best practices for maximizing the security of your servers. For more information see http://www.mysql.com/products/enterprise/advisors.html. 26.9.2: Does MySQL 5.0 have native support for SSL? Most 5.0 binaries have support for SSL connections between the client and server. We can't currently build with the new YaSSL library everywhere, as it's still quite new and does not compile on all platforms yet. See Section 5.8.7, “Using Secure Connections”. You can also tunnel a connection via SSH, if (for instance) if the client application doesn't support SSL connections. For an example, see Section 5.8.7.5, “Connecting to MySQL Remotely from Windows with SSH”. 26.9.3: Is SSL support be built into MySQL binaries, or must I recompile the binary myself to enable it? Most 5.0 binaries have SSL enabled for client-server connections that are secured, authenticated, or both. However, the YaSSL library currently does not compile on all platforms. See Section 5.8.7, “Using Secure Connections”, for a complete listing of supported and unsupported platforms. 26.9.4: Does MySQL 5.0 have built-in authentication against LDAP directories? No. Support for external authentication methods is on the MySQL roadmap as a “rolling feature”, which means that we plan to implement it in the future, but we have not yet determined when this will be done. 26.9.5: Does MySQL 5.0 include support for Roles Based Access Control (RBAC)? No. Support for roles is on the MySQL roadmap as a “rolling feature”, which means that we plan to implement it in the future, but we have not yet determined when this will be done.
In the following section, we provide answers to questions that are
most frequently asked about MySQL Cluster and the
Questions
Questions and Answers 26.10.1: What does “NDB” mean?
This stands for
“Network
Database”.
26.10.2: What's the difference in using Cluster vs using replication?
In a replication setup, a master MySQL server updates one or
more slaves. Transactions are committed sequentially, and a
slow transaction can cause the slave to lag behind the
master. This means that if the master fails, it is possible
that the slave might not have recorded the last few
transactions. If a transaction-safe engine such as
In short, whereas standard MySQL replication is asynchronous, MySQL Cluster is synchronous. We have implemented (asynchronous) replication for Cluster in MySQL 5.1. This includes the capability to replicate both between two clusters, and from a MySQL cluster to a non-Cluster MySQL server. However, we do not plan to backport this functionality to MySQL 5.0. 26.10.3: Do I need to do any special networking to run Cluster? How do computers in a cluster communicate? MySQL Cluster is intended to be used in a high-bandwidth environment, with computers connecting via TCP/IP. Its performance depends directly upon the connection speed between the cluster's computers. The minimum connectivity requirements for Cluster include a typical 100-megabit Ethernet network or the equivalent. We recommend you use gigabit Ethernet whenever available. The faster SCI protocol is also supported, but requires special hardware. See Section 15.10, “Using High-Speed Interconnects with MySQL Cluster”, for more information about SCI. 26.10.4: How many computers do I need to run a cluster, and why? A minimum of three computers is required to run a viable cluster. However, the minimum recommended number of computers in a MySQL Cluster is four: one each to run the management and SQL nodes, and two computers to serve as data nodes. The purpose of the two data nodes is to provide redundancy; the management node must run on a separate machine to guarantee continued arbitration services in the event that one of the data nodes fails. To provide increased throughput and high availability, you should use multiple SQL nodes (MySQL Servers connected to the cluster). It is also possible (although not strictly necessary) to run multiple management servers. 26.10.5: What do the different computers do in a MySQL Cluster? A MySQL Cluster has both a physical and logical organization, with computers being the physical elements. The logical or functional elements of a cluster are referred to as nodes, and a computer housing a cluster node is sometimes referred to as a cluster host. There are three types of nodes, each corresponding to a specific role within the cluster. These are:
26.10.6: With which operating systems can I use Cluster? MySQL Cluster is supported on most Unix-like operating systems, including Linux, Mac OS X, Solaris, BSD, HP-UX, AIX, and IRIX, among others, as well as Novell Netware. Cluster is not supported for Windows at this time. However, we are working to add Cluster support for other platforms, including Windows, and our goal is to offer MySQL Cluster on all platforms for which MySQL itself is supported. For more detailed information concerning the level of support which is offered for MySQL Cluster on various operating system versions, OS distributions, and hardware platforms, please refer to http://www.mysql.com/support/supportedplatforms/cluster.html. 26.10.7: What are the hardware requirements for running MySQL Cluster? Cluster should run on any platform for which NDB-enabled binaries are available. Naturally, faster CPUs and more memory will improve performance, and 64-bit CPUs will likely be more effective than 32-bit processors. There must be sufficient memory on machines used for data nodes to hold each node's share of the database (see How much RAM do I Need? for more information). Nodes can communicate via a standard TCP/IP network and hardware. For SCI support, special networking hardware is required. 26.10.8: How much RAM do I need? Is it possible to use disk memory at all? In MySQL-5.0, Cluster is in-memory only. This means that all table data (including indexes) is stored in RAM. Therefore, if your data takes up 1GB of space and you want to replicate it once in the cluster, you need 2GB of memory to do so (1 GB per replica). This is in addition to the memory required by the operating system and any applications running on the cluster computers.
If a data node's memory usage exceeds what is available in
RAM, then the system will attempt to use swap space up to
the limit set for (We have implemented disk data storage for MySQL Cluster in MySQL 5.1, but we have no plans to add this capability in MySQL 5.0.) You can use the following formula for obtaining a rough estimate of how much RAM is needed for each data node in the cluster: (SizeofDatabase × NumberOfReplicas × 1.1 ) / NumberOfDataNodes To calculate the memory requirements more exactly requires determining, for each table in the cluster database, the storage space required per row (see Section 11.5, “Data Type Storage Requirements”, for details), and multiplying this by the number of rows. You must also remember to account for any column indexes as follows:
Note that creating MySQL Cluster tables with
When calculating Cluster memory requirements, you may find
useful the
It is especially important to keep in mind that
every MySQL Cluster table must have a primary
key. The
There is no easy way to determine exactly how much memory is
being used for storage of Cluster indexes at any given time;
however, warnings are written to the Cluster log when 80% of
available 26.10.9: What filesystems can I use with MySQL Cluster? What about network filesystems or network shares? Generally, any filesystem that is native to the host operating system should work well with MySQL Cluster. If you find that a given filesystem works particularly well (or not so especially well) with MySQL Cluster, we invite you to discuss your findings in the MySQL Cluster Forums.
We do not test MySQL Cluster with MySQL Cluster is implemented as a shared-nothing solution; the idea behind this is that the failure of a single piece of hardware should not cause the failure of multiple cluster nodes, or possibly even the failure of the cluster as a whole. For this reason, the use of network shares or network filesystems is not supported for MySQL Cluster. This also applies to shared storage devices such as SANs. 26.10.10: Can I run MySQL Cluster nodes inside virtual machines (such as those created by VMWare, Parallels, or Xen)? This is possible but not recommended for a production environment. We have found that running MySQL Cluster processes inside a virtual machine can give rise to issues with timing and disk subsystems that have a strong negative impact on the operation of the cluster. The behavior of the cluster is often unpredictable in these cases. If the issue can be reproduced outside the virtual environment, then we may be able to provide assistance. Otherwise, we cannot support it at this time. 26.10.11:
I'm trying to populate a Cluster database. The loading
process terminates prematurely and I get an error message
like this one:
The cause is very likely to be that your setup does not
provide sufficient RAM for all table data and all indexes,
including the primary key required by the
It is also worth noting that all data nodes should have the same amount of RAM, since no data node in a cluster can use more memory than the least amount available to any individual data node. In other words, if there are four computers hosting Cluster data nodes, and three of these have 3GB of RAM available to store Cluster data while the remaining data node has only 1GB RAM, then each data node can devote only 1GB to clustering. 26.10.12: MySQL Cluster uses TCP/IP. Does this mean that I can run it over the Internet, with one or more nodes in remote locations? It is very unlikely that a cluster would perform reliably under such conditions, as MySQL Cluster was designed and implemented with the assumption that it would be run under conditions guaranteeing dedicated high-speed connectivity such as that found in a LAN setting using 100 Mbps or gigabit Ethernet — preferably the latter. We neither test nor warrant its performance using anything slower than this. Also, it is extremely important to keep in mind that communications between the nodes in a MySQL Cluster are not secure; they are neither encrypted nor safeguarded by any other protective mechanism. The most secure configuration for a cluster is in a private network behind a firewall, with no direct access to any Cluster data or management nodes from outside. (For SQL nodes, you should take the same precautions as you would with any other instance of the MySQL server.) 26.10.13: Do I have to learn a new programming or query language to use MySQL Cluster? No. Although some specialized commands are used to manage and configure the cluster itself, only standard (My)SQL queries and commands are required for the following operations:
Some specialized configuration parameters and files are required to set up a MySQL Cluster — see Section 15.4.4, “Configuration File”, for information about these. A few simple commands are used in the MySQL Cluster management client for tasks such as starting and stopping cluster nodes. See Section 15.7.2, “Commands in the MySQL Cluster Management Client”. 26.10.14: How do I find out what an error or warning message means when using MySQL Cluster? There are two ways in which this can be done: 26.10.15: Is MySQL Cluster transaction-safe? What isolation levels are supported?
Yes: For tables created with the
26.10.16: What storage engines are supported by MySQL Cluster?
Clustering in MySQL is supported only by the
It is possible to create tables using other storage engines
(such as 26.10.17: Which versions of the MySQL software support Cluster? Do I have to compile from source?
Cluster is supported in all server binaries in the
5.0 release series for operating systems on
which MySQL Cluster is available. See
Section 5.2, “mysqld — The MySQL Server”. You can determine whether your
server has NDB support using either the
Linux users, please note that You can also obtain NDB support by compiling MySQL from source, but it is not necessary to do so simply to use MySQL Cluster. To download the latest binary, RPM, or source distribution in the MySQL 5.0 series, visit http://dev.mysql.com/downloads/mysql/5.0.html. 26.10.18: In the event of a catastrophic failure — say, for instance, the whole city loses power and my UPS fails — would I lose all my data? All committed transactions are logged. Therefore, although it is possible that some data could be lost in the event of a catastrophe, this should be quite limited. Data loss can be further reduced by minimizing the number of operations per transaction. (It is not a good idea to perform large numbers of operations per transaction in any case.) 26.10.19:
Is it possible to use
26.10.20: Can I run multiple nodes on a single computer? It is possible but not advisable. One of the chief reasons to run a cluster is to provide redundancy. To enjoy the full benefits of this redundancy, each node should reside on a separate machine. If you place multiple nodes on a single machine and that machine fails, you lose all of those nodes. Given that MySQL Cluster can be run on commodity hardware loaded with a low-cost (or even no-cost) operating system, the expense of an extra machine or two is well worth it to safeguard mission-critical data. It also worth noting that the requirements for a cluster host running a management node are minimal. This task can be accomplished with a 200 MHz Pentium CPU and sufficient RAM for the operating system plus a small amount of overhead for the ndb_mgmd and ndb_mgm processes. It is acceptable to run multiple cluster data nodes on a single host for learning about MySQL Cluster, or for testing purposes; however, this is not supported for production use. 26.10.21: Can I add nodes to a cluster without restarting it? Not at present. A simple restart is all that is required for adding new MGM or SQL nodes to a Cluster. When adding data nodes the process is more complex, and requires the following steps:
In a future MySQL Cluster release series, we hope to implement a “hot” reconfiguration capability for MySQL Cluster to minimize (if not eliminate) the requirement for restarting the cluster when adding new nodes. However, this is not planned for MySQL 5.0. 26.10.22: Are there any limitations that I should be aware of when using MySQL Cluster?
Limitations on
For a complete listing of limitations in MySQL Cluster, see Section 15.11, “Known Limitations of MySQL Cluster”. 26.10.23: How do I import an existing MySQL database into a cluster?
You can import databases into MySQL Cluster much as you
would with any other version of MySQL. Other than the
limitations mentioned elsewhere in this FAQ and in
Section 15.11, “Known Limitations of MySQL Cluster”, the only other
special requirement is that any tables to be included in the
cluster must use the
It is also possible to convert existing tables using other
storage engines to 26.10.24: How do cluster nodes communicate with one another? Cluster nodes can communicate via any of three different protocols: TCP/IP, SHM (shared memory), and SCI (Scalable Coherent Interface). Where available, SHM is used by default between nodes residing on the same cluster host; however, this is considered experimental in MySQL 5.0. SCI is a high-speed (1 gigabit per second and higher), high-availability protocol used in building scalable multi-processor systems; it requires special hardware and drivers. See Section 15.10, “Using High-Speed Interconnects with MySQL Cluster”, for more about using SCI as a transport mechanism in MySQL Cluster. 26.10.25: What is an arbitrator? If one or more nodes in a cluster fail, it is possible that not all cluster nodes will be able to “see” one another. In fact, it is possible that two sets of nodes might become isolated from one another in a network partitioning, also known as a “split brain” scenario. This type of situation is undesirable because each set of nodes tries to behave as though it is the entire cluster. When cluster nodes go down, there are two possibilities. If more than 50% of the remaining nodes can communicate with each other, we have what is sometimes called a “majority rules” situation, and this set of nodes is considered to be the cluster. The arbitrator comes into play when there is an even number of nodes: in such cases, the set of nodes to which the arbitrator belongs is considered to be the cluster, and nodes not belonging to this set are shut down. The preceding information is somewhat simplified. A more complete explanation taking into account node groups follows:
When all nodes in at least one node group are alive, network
partitioning is not an issue, because no one portion of the
cluster can form a functional cluster. The real problem
arises when no single node group has all its nodes alive, in
which case network partitioning (the
“split-brain” scenario) becomes possible. Then
an arbitrator is required. All cluster nodes recognize the
same node as the arbitrator, which is normally the
management server; however, it is possible to configure any
of the MySQL Servers in the cluster to act as the arbitrator
instead. The arbitrator accepts the first set of cluster
nodes to contact it, and tells the remaining set to shut
down. Arbitrator selection is controlled by the
26.10.26: What data types are supported by MySQL Cluster?
MySQL Cluster supports all of the usual MySQL data types,
with the exception of those associated with MySQL's spatial
extensions. (See Chapter 16, Spatial Extensions.) In
addition, there are some differences with regard to indexes
when used with See Section 15.11, “Known Limitations of MySQL Cluster”, for more information about these issues. 26.10.27: How do I start and stop MySQL Cluster? It is necessary to start each node in the cluster separately, in the following order:
Each of these commands must be run from a system shell on
the machine housing the affected node. (You do not have to
be physically present at the machine — a remote login
shell can be used for this purpose.) You can verify that the
cluster is running by starting the MGM management client
ndb_mgm on the machine housing the MGM
node and issuing the
To shut down a running cluster, issue the command
shell>
(Note that the quotation marks are optional here; the
Either of these commands causes the ndb_mgm, ndb_mgm, and any ndbd processes to terminate gracefully. MySQL servers running as Cluster SQL nodes can be stopped using mysqladmin shutdown. For more information, see Section 15.7.2, “Commands in the MySQL Cluster Management Client”, and Section 15.3.6, “Safe Shutdown and Restart”. 26.10.28: What happens to cluster data when the cluster is shut down? The data that was held in memory by the cluster's data nodes is written to disk, and is reloaded into memory the next time that the cluster is started. 26.10.29: Is it helpful to have more than one management node for a cluster? It can be helpful as a fail-safe. Only one MGM node controls the cluster at any given time, but it is possible to configure one MGM as primary, and one or more additional management nodes to take over in the event that the primary MGM node fails. See Section 15.4.4, “Configuration File”, for information on how to configure MySQL Cluster management nodes. 26.10.30: Can I mix different kinds of hardware and operating systems in one MySQL Cluster? Yes, so long as all machines and operating systems have the same “endianness” (all big-endian or all little-endian). It is also possible to use different MySQL Cluster releases on different nodes. However, we recommend this be done only as part of a rolling upgrade procedure (see Section 15.5.1, “Performing a Rolling Restart of the Cluster”). 26.10.31: Can I run two data nodes on a single host? Two SQL nodes? Yes, it is possible to do this. In the case of multiple data nodes, it is advisable (but not required) for each node to use a different data directory. If you want to run multiple SQL nodes on one machine, each instance of mysqld must use a different TCP/IP port. However, running more than one cluster node of a given type per machine is not supported for production use. 26.10.32: Can I use hostnames with MySQL Cluster? Yes, it is possible to use DNS and DHCP for cluster hosts. However, if your application requires “five nines” availability, we recommend using fixed IP addresses. Making communication between Cluster hosts dependent on services such as DNS and DHCP introduces additional points of failure, and the fewer of these, the better. 26.10.33: How do I handle MySQL users in a Cluster having multiple MySQL servers? MySQL user accounts and privileges are not automatically propagated between different MySQL servers accessing the same MySQL Cluster. Therefore, you must make sure that these are copied between the SQL nodes yourself. This set of Frequently Asked Questions derives from the experience of MySQL's Support and Development groups in handling many inquiries about CJK (Chinese-Japanese-Korean) issues. Questions
Questions and Answers 26.11.1:
I have inserted CJK characters into my table. Why does
This problem is usually due to a setting in MySQL that doesn't match the settings for the application program or the operating system. Here are some common steps for correcting these types of issues:
26.11.2: What GB (Chinese) character sets does MySQL support?
MySQL supports the two common variants of the
GB (Guojia
Biaozhun, or National
Standard) character sets which are official in
the People's Republic of China:
Here, we try to clarify exactly what characters are
legitimate in
26.11.3: What problems should I be aware of when working with the Big5 Chinese character set?
MySQL supports the Big5 character set which is common in
Hong Kong and Taiwan (Republic of China). MySQL's
mysql>
A feature request for adding 26.11.4: Why do Japanese character set conversions fail?
MySQL supports the
In the following conversion table, the
Now consider this portion of the table:
This means that MySQL converts the 26.11.5:
What should I do if I want to convert SJIS
Our answer is: “?”. There are serious
complaints about this: many people would prefer a
“loose” conversion, so that 26.11.6:
How does MySQL represent the Yen (
A problem arises because some versions of Japanese character
sets (both
MySQL follows only one version of the JIS (Japanese
Industrial Standards) standard description. In MySQL,
26.11.7:
Do MySQL plan to make a separate character set where
This is one possible solution to the Yen sign issue; however, this will not happen in MySQL 5.1 or 5.2. 26.11.8: Of what issues should I be aware when working with Korean character sets in MySQL?
In theory, while there have been several versions of the
We use the “ASCII” variant of EUC-KR, in which
the code point mysql> MySQL's graphic Korean chart is here: http://d.udm.net/bar/~bar/charts/euckr_korean_ci.html. 26.11.9: Why do I get Data truncated error messages?
For illustration, we'll create a table with one Unicode
( mysql>
We'll try to place the rare character mysql> Ah, there's a warning. Let's see what it is. mysql>
So it's a warning about the mysql> SELECT ucs2,HEX(ucs2),gb2312,HEX(gb2312) FROM ch; +-------+--------------+--------+-------------+ | ucs2 | HEX(ucs2) | gb2312 | HEX(gb2312) | +-------+--------------+--------+-------------+ | A汌B | 00416C4C0042 | A?B | 413F42 | +-------+--------------+--------+-------------+ 1 row in set (0.00 sec) There are several things that need explanation here.
26.11.10: Why does my GUI front end or browser not display CJK characters correctly in my application using Access, PHP, or another API?
Obtain a direct connection to the server using the
mysql client (Windows:
mysql.exe), and try the same query there.
If mysql responds correctly, then the
trouble may be that your application interface requires
initialization. Use mysql to tell you
what character set or sets it uses with the statement
<%
Session.CodePage=0
Dim strConnection
Dim Conn
strConnection="driver={MySQL ODBC 3.51 Driver};server=
In much the same way, if you are using any character set
other than If you are using PHP, try this: <?php
$link = mysql_connect($host, $usr, $pwd);
mysql_select_db($db);
if( mysql_error() ) { print "Database ERROR: " . mysql_error(); }
mysql_query("SET NAMES 'utf8'", $link);
?>
In this case, we used
We encourage the use of the newer
<?php
$link = new mysqli($host, $usr, $pwd, $db);
if( mysqli_connect_errno() )
{
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$link->query("SET NAMES 'utf8'");
?>
Another issue often encountered in PHP applications has to
do with assumptions made by the browser. Sometimes adding or
changing a If you are using Connector/J, see Section 23.4.4.4, “Using Character Sets and Unicode”. 26.11.11: I've upgraded to MySQL 5.0. How can I revert to behavior like that in MySQL 4.0 with regard to character sets? In MySQL Version 4.0, there was a single “global” character set for both server and client, and the decision as to which character to use was made by the server administrator. This changed starting with MySQL Version 4.1. What happens now is a “handshake”, as described in Section 10.4, “Connection Character Sets and Collations”:
The effect of this is that you cannot control the client
character set by starting mysqld with
By way of example, suppose that your favorite server
character set is mysqld --character-set-server=latin1
And then start the client with the default character set
mysql --default-character-set=utf8
The current settings can be seen by viewing the output of
mysql> Now stop the client, and then stop the server using mysqladmin. Then start the server again, but this time tell it to skip the handshake like so: mysqld --character-set-server=utf8 --skip-character-set-client-handshake
Start the client with mysql>
As you can see by comparing the differing results from
26.11.12:
Why do some
There is a very simple problem with +-------------------------+---------------------------+ | OCTET_LENGTH(_utf8 'A') | OCTET_LENGTH(_utf8 'ペ') | +-------------------------+---------------------------+ | 1 | 3 | +-------------------------+---------------------------+ 1 row in set (0.00 sec)
If we don't know where the first character ends, then we
don't know where the second character begins, in which case
even very simple searches such as This is one reason why MySQL cannot allow encodings of nonexistent characters. If it is not strict about rejecting bad input, then it has no way of knowing where characters end.
For 26.11.13: What CJK character sets are available in MySQL?
The list of CJK character sets may vary depending on your
MySQL version. For example, the mysql>
(See Section 20.9, “The 26.11.14:
How do I know whether character
The majority of simplified Chinese and basic non-halfwidth
Japanese Kana characters
appear in all CJK character sets. This stored procedure
accepts a DELIMITER //
CREATE PROCEDURE p_convert(ucs2_char CHAR(1) CHARACTER SET ucs2)
BEGIN
CREATE TABLE tj
(ucs2 CHAR(1) character set ucs2,
utf8 CHAR(1) character set utf8,
big5 CHAR(1) character set big5,
cp932 CHAR(1) character set cp932,
eucjpms CHAR(1) character set eucjpms,
euckr CHAR(1) character set euckr,
gb2312 CHAR(1) character set gb2312,
gbk CHAR(1) character set gbk,
sjis CHAR(1) character set sjis,
ujis CHAR(1) character set ujis);
INSERT INTO tj (ucs2) VALUES (ucs2_char);
UPDATE tj SET utf8=ucs2,
big5=ucs2,
cp932=ucs2,
eucjpms=ucs2,
euckr=ucs2,
gb2312=ucs2,
gbk=ucs2,
sjis=ucs2,
ujis=ucs2;
/* If there's a conversion problem, UPDATE will produce a warning. */
SELECT hex(ucs2) AS ucs2,
hex(utf8) AS utf8,
hex(big5) AS big5,
hex(cp932) AS cp932,
hex(eucjpms) AS eucjpms,
hex(euckr) AS euckr,
hex(gb2312) AS gb2312,
hex(gbk) AS gbk,
hex(sjis) AS sjis,
hex(ujis) AS ujis
FROM tj;
DROP TABLE tj;
END//
The input can be any single mysql>
Since none of the column values is 26.11.15: Why don't CJK strings sort correctly in Unicode? (I)
Sometimes people observe that the result of a
mysql<
The character in the first result row is not the one that we
searched for. Why did MySQL retrieve it? First we look for
the Unicode code point value, which is possible by reading
the hexadecimal number for the mysql>
Now we search for 304B ; [.1E57.0020.000E.304B] # HIRAGANA LETTER KA 304C ; [.1E57.0020.000E.304B][.0000.0140.0002.3099] # HIRAGANA LETTER GA; QQCM
The official Unicode names (following the “#”
mark) tell us the Japanese syllabary (Hiragana), the
informal classification (letter, digit, or punctuation
mark), and the Western identifier ( 26.11.16: Why don't CJK strings sort correctly in Unicode? (II)
If you are using Unicode ( mysql>
Since the character set appears to be correct, let's see
what information the
mysql>
(See Section 20.3, “The
You can see that the collation is
mysql>
For 26.11.17: Why are my supplementary characters rejected by MySQL?
MySQL does not support supplementary characters — that
is, characters which need more than 3 bytes — for
One possible workaround is to use
We intend at some point in the future to add support for
26.11.18: Shouldn't it be “CJKV”? No. The term “CJKV” (Chinese Japanese Korean Vietnamese) refers to Vietnamese character sets which contain Han (originally Chinese) characters. MySQL has no plan to support the old Vietnamese script using Han characters. MySQL does of course support the modern Vietnamese script with Western characters. Bug#4745 is a request for a specialized Vietnamese collation, which we might add in the future if there is sufficient demand for it. 26.11.19: Does MySQL allow CJK characters to be used in database and table names? This issue is fixed in MySQL 5.1, by automatically rewriting the names of the corresponding directories and files.
For example, if you create a database named
26.11.20: Where can I find translations of the MySQL Manual into Chinese, Japanese, and Korean? A Simplified Chinese version of the Manual, current for MySQL 5.1.12, can be found at http://dev.mysql.com/doc/#chinese-5.1. The Japanese translation of the MySQL 4.1 manual can be downloaded from http://dev.mysql.com/doc/#japanese-4.1. 26.11.21: Where can I get help with CJK and related issues in MySQL? The following resources are available:
For common questions, issues, and answers relating to the MySQL Connectors and other APIs, see the following areas of the Manual: For answers to common queries and question regarding Replication within MySQL, see Section 6.10, “Replication FAQ”.
In the following section, we provide answers to questions that are most frequently asked about Distributed Replicated Block Device (DRBD). Questions
Questions and Answers DRBD is an acronym for Distributed Replicated Block Device. DRBD is an open source Linux kernel block device which leverages synchronous replication to achieve a consistent view of data between two systems, typically an Active and Passive system. DRBD currently supports all the major flavors of Linux and comes bundled in several major Linux distributions. The DRBD project is maintained by LINBIT. 26.14.1.2: What are “Block Devices”? Block devices are the type of device used to represent storage in the Linux Kernel. All physical disk devices present a “block device” interface. Additionally, virtual disk systems like LVM or DRBD present a “block device” interface. In this way, the file system or other software that might want to access a disk device can be used with any number of real or virtual devices without having to know anything about their underlying implementation details. 26.14.1.3: How is DRBD licensed? DRBD is licensed under the GPL. 26.14.1.4: Where can I download DRBD? Please see http://www.drbd.org/download.html 26.14.1.5: If I find a bug in DRBD, to whom do I submit the issue? Bug reports should be submitted to the DRBD mailing list. Please see: http://lists.linbit.com/ . 26.14.1.6: Where can I get more technical and business information concerning MySQL and DRBD? Please visit: http://mysql.com/drbd/ In the following section, we provide answers to questions that are most frequently asked about Linux Heartbeat. Questions
Questions and Answers 26.14.2.1: What is Linux Heartbeat? The Linux-HA project (http://www.linux-ha.org/) offers a high availability solution commonly referred to as Linux Heartbeat. Linux Heartbeat ships as part of several Linux distributions, as well as within several embedded high availability systems. This solution can also be used for other applications besides databases servers, such as mail servers, web servers, file servers, and DNS servers. Linux Heartbeat implements a heartbeat-protocol. A heartbeat-protocol means that messages are sent at regular intervals between two or more nodes. If a message is not received from a node within a given interval, then it is assumed the node has failed and some type of failover or recovery action is required. Linux Heartbeat is typically configured to send these heartbeat messages over standard Ethernet interfaces, but it does also support other methods, such as serial-line links. 26.14.2.2: How is Linux Heartbeat licensed? Linux Heartbeat is licensed under the GPL. 26.14.2.3: Where can I download Linux Heartbeat? Please see http://linux-ha.org/download/index.html. 26.14.2.4: If I find a bug with Linux Heartbeat, to whom do I submit the issue? Bug reports should be submitted to http://www.linux-ha.org/ClusterResourceManager/BugReports. In the following section, we provide answers to questions that are most frequently asked about DRBD Architecture. Questions
Questions and Answers 26.14.3.1: Is an Active/Active option available for MySQL with DRBD? Currently, MySQL does not support Active/Active configurations using DRBD “out of the box”. 26.14.3.2: What MySQL storage engines are supported with DRBD? All of the MySQL transactional storage engines are supported by DRBD, including InnoDB and Falcon. For archived or read-only data, MyISAM or Archive can also be used. 26.14.3.3: How long does a failover take? Failover time is dependent on many things, some of which are configurable. After activating the passive host, MySQL will have to start and run a normal recovery process. If the InnoDB log files have been configured to a large size and there was heavy write traffic, this may take a reasonably long period of time. However, under normal circumstances, failover tends to take less than a minute. 26.14.3.4: How long does it take to resynchronize data after a failure? Resynchronization time depends on how long the two machines are out of communication and how much data was written during that period of time. Resynchronization time is a function of data to be synced, network speed and disk speed. DRBD maintains a bitmap of changed blocks on the primary machine, so only those blocks that have changed will need to be transferred. In the following section, we provide answers to questions that are most frequently asked about MySQL Replication Scale-out. Questions
Questions and Answers 26.14.4.1: What is the difference between MySQL Cluster and DRBD? Both MySQL Cluster and DRBD replicate data synchronously. MySQL Cluster leverages a shared-nothing storage architecture in which the cluster can be architected beyond an Active/Passive configuration. DRBD operates at a much lower level within the “stack”, at the disk I/O level. For a comparison of various high availability features between these two options, please refer to Figure A.1, “Availability comparison”. 26.14.4.2: What is the difference between MySQL Replication and DRBD? MySQL Replication replicates data asynchronously while DRBD replicates data synchronously. For a comparison of various high availability features between these two options, please refer to the high availability comparison grid, Figure A.1, “Availability comparison”. 26.14.4.3: How can I combine MySQL Replication scale-out with DRBD? MySQL Replication is typically deployed in a Master to many Slaves configuration. In this configuration, having many Slaves provides read scalability. DRBD is used to provide high-availability for the Master MySQL Server in an Active/Passive configuration. This provides for automatic failover, safeguards against data loss, and automatically synchronizes the failed MySQL Master after a failover. The most likely scenario in which MySQL Replication scale-out can be leveraged with DRBD is in the form of attaching replicated MySQL “read-slaves” off of the Active-Master MySQL Server, shown in Figure A.2, “Active-Master MySQL server”. Since DRBD replicates an entire block device, master information such as the binary logs are also replicated. In this way, all of the slaves can attach to the Virtual IP Address managed by Linux Heartbeat. In the event of a failure, the asynchronous nature of MySQL Replication allows the slaves to continue with the new Active machine as their master with no intervention needed. In the following section, we provide answers to questions that are most frequently asked about DRBD and file systems. Questions
Questions and Answers 26.14.5.1: Can XFS be used with DRBD? Yes. XFS uses dynamic block size, thus DRBD 0.7 or later is needed. In the following section, we provide answers to questions that are most frequently asked about DRBD and LVM. Questions
Questions and Answers 26.14.6.1: Can I use DRBD on top of LVM? Yes, DRBD supports on-line resizing. If you enlarge your logical volume that acts as a backing device for DRBD, you can enlarge DRBD itself too, and of course your file system if it supports resizing. 26.14.6.2: Can I use LVM on top of DRBD?
Yes, you can use DRBD as a Physical Volume (PV) for LVM.
Depending on the default LVM configuration shipped with
your distribution, you may need to add the
26.14.6.3: Can I use DRBD on top of LVM while at the same time running LVM on top of that DRBD? This requires careful tuning of your LVM configuration to avoid duplicate PV scans, but yes, it is possible. In the following section, we provide answers to questions that are most frequently asked about DRBD and virtualization. Questions
Questions and Answers 26.14.7.1: Can I use DRBD with OpenVZ? See http://wiki.openvz.org/HA_cluster_with_DRBD_and_Heartbeat. 26.14.7.2: Can I use DRBD with Xen and/or KVM? Yes. If you are looking for professional consultancy or expert commercial support for Xen- or KVM-based virtualization clusters with DRBD, contact LINBIT (http://www.linbit.com). In the following section, we provide answers to questions that are most frequently asked about DRBD and security. Questions
Questions and Answers 26.14.8.1: Can I encrypt/compress the exchanged data? Yes. But there is no option within DRBD to allow for this. You’ll need to leverage a VPN and the network layer should do the rest. 26.14.8.2: Does DRBD do mutual node authentication? Yes, starting with DRBD 8 shared-secret mutual node authentication is supported. In the following section, we provide answers to questions that are most frequently asked about DRBD and System Requirements. Questions
Questions and Answers 26.14.9.1: What other packages besides DRBD are required?
When using pre-built binary packages, none except a
matching kernel, plus packages for
Pre-built x86 and x86_64 packages for specific kernel versions are available with a support subscription from LINBIT. Please note that if the kernel is upgraded, DRBD must be as well. 26.14.9.2: How many machines are required to set up DRBD? Two machines are required to achieve the minimum degree of high availability. Although at any one given point in time one will be primary and one will be secondary, it is better to consider the machines as part of a mirrored pair without a “natural” primary machine. 26.14.9.3: Does DRBD only run on Linux? DRBD is a Linux Kernel Module, and can work with many popular Linux distributions. DRBD is currently not available for non-Linux operating systems. In the following section, we provide answers to questions that are most frequently asked about DRBD and resources. Questions
Questions and Answers 26.14.10.1: Does MySQL offer professional consulting to help with designing a DRBD system? Yes. MySQL offers consulting for the design, installation, configuration, and monitoring of high availability DRBD. For more information concerning a High Availability Jumpstart, please see: http://www.mysql.com/consulting/packaged/scaleout.html. 26.14.10.2: Does MySQL offer support for DRBD and Linux Heartbeat from MySQL? Yes. Support for DRBD is available with an add-on subscription to MySQL Enterprise called “DRBD for MySQL”. For more information about support options for DRBD see: http://mysql.com/products/enterprise/features.html. For the list of supported Linux distributions, please see: http://www.mysql.com/support/supportedplatforms/enterprise.html. NOTE: DRBD is only available on Linux. DRBD is not available on Windows, MacOS, Solaris, HPUX, AIX, FreeBSD, or other non-Linux platforms. 26.14.10.3: Are pre-built binaries or RPMs available? Yes. “DRBD for MySQL” is an add-on subscription to MySQL Enterprise, which provides pre-built binaries for DRBD. For more information see: http://mysql.com/products/enterprise/features.html. 26.14.10.4: Does MySQL have documentation to help me with the installation and configuration of DRBD and Linux Heartbeat? Coming soon. 26.14.10.5: Is there a dedicated discussion forum for MySQL High-Availability? Yes, http://forums.mysql.com/list.php?144. 26.14.10.6: Where can I get more information about MySQL for DRBD? For more information about MySQL for DRBD, including a technical white paper please see: DRBD for MySQL High Availability. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
http://alden-servlet-Hosting.com
JSP at alden-servlet-Hosting.com
Servlets at alden-servlet-Hosting.com
Servlet at alden-servlet-Hosting.com
Tomcat at alden-servlet-Hosting.com
MySQL at alden-servlet-Hosting.com
Java at alden-servlet-Hosting.com
sFTP at alden-servlet-Hosting.com
http://alden-tomcat-Hosting.com
JSP at alden-tomcat-Hosting.com
Servlets at alden-tomcat-Hosting.com
Servlet at alden-tomcat-Hosting.com
Tomcat at alden-tomcat-Hosting.com
MySQL at alden-tomcat-Hosting.com
Java at alden-tomcat-Hosting.com
sFTP at alden-tomcat-Hosting.com
http://alden-sftp-Hosting.com
JSP at alden-sftp-Hosting.com
Servlets at alden-sftp-Hosting.com
Servlet at alden-sftp-Hosting.com
Tomcat at alden-sftp-Hosting.com
MySQL at alden-sftp-Hosting.com
Java at alden-sftp-Hosting.com
sFTP at alden-sftp-Hosting.com
http://alden-jsp-Hosting.com
JSP at alden-jsp-Hosting.com
Servlets at alden-jsp-Hosting.com
Servlet at alden-jsp-Hosting.com
Tomcat at alden-jsp-Hosting.com
MySQL at alden-jsp-Hosting.com
Java at alden-jsp-Hosting.com
sFTP at alden-jsp-Hosting.com
http://alden-java-Hosting.com
JSp at alden-java-Hosting.com
Servlets at alden-java-Hosting.com
Servlet at alden-java-Hosting.com
Tomcat at alden-java-Hosting.com
MySQL at alden-java-Hosting.com
Java at alden-java-Hosting.com
sFTP at alden-java-Hosting.com
JSP
Servlets
Tomcat
mysql
Java
JSP
Servlets
Tomcat
mysql
Java
JSP
Servlets
Tomcat
mysql
Java
JSP
Servlets
Tomcat
mysql
Java
JSP at JSP.aldenWEBhosting.com
Servlets at servlets.aldenWEBhosting.com
Tomcat at Tomcat.aldenWEBhosting.com
mysql at mysql.aldenWEBhosting.com
Java at Java.aldenWEBhosting.com
Web Hosts Portal
Web Links
Web Links JSP
Web Links servlet
Tomcat Docs
Web Links
Web Links JSP
Web Links servlet
Web Hosting
Tomcat Docs
JSP Solutions Web Links
JSP Solutions Web Hosting
Servlets Solutions Web Links
Servlets Solutions Web Hosting
Web Links
Web Links
.
.
.
.
.
.
.
.
.
.
jsp hosting
servlets hosting
web hosting
web sites designed
cheap web hosting
web site hosting
myspace web hosting