Storage Networking , Part 1 eBook: A storage network is any network that's designed to transport block-level storage protocols. But understanding the ins and outs of networked storage takes you deep into several of protocols. This guide covers SANs, Fibre Channels, Disk Arrays, Fabric, and IP Storage.
»Storage Networking 2, Configuration and Planning eBook: Picking up where Part 1 left off, Part 2 of our look at storage networking examines configurations for SAN-attached servers and disk arrays, and also includes a look at the future of IP storage.
»Storage Management Costs in the Enterprise: A Comparison of Mid-Range Array Solutions Whitepaper:
Many factors contribute to the ownership cost for enterprise storage. These include (but are not limited to): physical capacity relative to physical space requirements, performance capacity for data transfer and system reaction time, software maintenance and updates, expandability and flexibility, and much more.
»Storage Is Changing Fast Be Ready or Be Left Behind PDF: The storage landscape is headed for dramatic change, thanks to new technologies like Fibre Channel over Ethernet (FCoE), pNFS, object-based storage and SAS that will affect everything from NAS and SANs to disk drives. Get the knowledge you need to make the most of your storage environment, now and in the future.
»HP StorageWorks EVA4400 Demo:
Dont settle for an expensive and complex array that lacks functionality. The HP StorageWorks EVA4400 delivers virtual storage with enterprise class functionality at an affordable price.
»
Assuming that you have already been working
through this tutorial, you will already be set to run a JDBC
application. However, before we get into the nitty gritty,
let's do a recap.
Installing a Database
The first thing you will need, of course
is an actual running database with a table that you can
query and modify. In the SQL and CGI sections, we explained how
to setup an MSAccess database
and create a test table. We will continue to use that table and
database here. In particular, we will use the CUSTOMERS table
from the Test_db.mdb database that we gave a datasource name
of "Access" in our 32-bit ODBC control panel.
Installing the JDK
You will also need to install the JDK.
I recommend installing
JDK 1.17,
but that you code your application to the JDK 1.02 standard.
That way your application will be accessible to a wider
audience of web browsers, many of who may not have
browsers that support JDK 1.1 APIs.
As we said before, most of the JDBC
drivers you will need are installed by default so you
already have them when you install the JDK. Drivers that
are not installed by default can be downloaded by going to
www.javasoft.com/products/jdbc/index.html.
You will install them in the "lib" directory in the Java files
tree. I put mine in "c:\java\sun\jdk1.1.7\lib\sun\jdbc\".
Installing a Local Web Server
Finally, you will need a web server to serve your
Java application. In the CGI section, we discussed how you could
setup the Sambar Web Server on
your local workstation. Using a local web server means that you can do
all your development and testing locally and then transfer the final
application to the web server on the internet. This section
assumes you have already installed Sambar and the rest.