How To Setup MySQL Replication in 10 minutes
MySQL is an excellent open source database system. Replication is a great way to keep data redundant in case of a server crash. However, replication... more »
0 commentsSave Tags: database, how-to
Oracle-itis
I don't think Oracle is a totally worthless product. I hear that it's good for carrier-grade high-availability. Of course, I've also heard that it's... more »
0 commentsSave Tags: database, opinion
ETL: Practical Example of Data Transformation Using Kettle
Kettle is a great tool, and its easy to tell that this was written by someone who works with annoying data formats on a consistent basis. Well, Kettle... more »
0 commentsSave Tags: database, how-to, open source
Tips for MySQL to PostgreSQL Switch
If you’ve decided to move a few tables from MySQL to PostgreSQL, these few tips might help
0 commentsSave Tags: database, how-to, open source
SQL Join Resources
Short explanations of the different types of joins as well as links to some detailed articles on the subject.
0 commentsSave Tags: database
Databinder 1.2 Unleashed
The Databinder community has unleashed 1.2 for our pleasure. With databinder you can build database backed applications without having to resort to... more »
1 commentsSave Tags: announcement, database, frameworks, java
Database Performance: The Web Layer
A database application is a like a convoy of ships, it is only as fast as the the slowest ship. The three "ships" in a web-based database application... more »
0 commentsSave Tags: database, methodology
The Benefits of a Data Abstraction Layer for SOA
Enterprises have complex information structures as a result of evolving applications and databases deployed through the years. In addition to modern... more »
0 commentsSave Tags: database, java, web services, xml
SchemaSpy - Excellent Database Graphs for Free!
A lot of Java projects have quite complex database schemas in the backend. Although, using object-relational mapping it can be useful to have a deeper... more »
1 commentsSave Tags: database, how-to, open source, tools
Scale Cheaply - Sharding
There are a lot of expensive ways to scale your database – all of which are highly touted by the big three database vendors because, well, they want... more »
0 commentsSave Tags: database, how-to, opinion, web design
All About .NET
If you are new to the world of .NET or looking for great Tips and Tricks, this is the place to go.
0 commentsSave Tags: .net, database, how-to, windows
NHibernate relationships and inheritance
This is the second part in a series of articles about NHIbernate. This article covers one to one and one to many relationships, inheritance, etc.
0 commentsSave Tags: .net, database, methodology, microsoft
You Don't Need To Think About Transactions If
You know such an application? :-). I hear from time time statements like: "This is just a report - so I don't need transactions - I'm only reading the... more »
5 commentsSave Tags: database, opinion
Binding JTable with MySQL table
I got this inquiry recently. I decided to try it myself. Here, I am showing through screen shots how to bind database table to a JTable. I am using... more »
0 commentsSave Tags: database, gui, java, tools
Sun Announces 'unlimited' GlassFish-MySQL Bundle
Sun Microsystems on Friday announced a database and application-server package that allows unlimited deployments for a fixed annual rate, positioning... more »
0 commentsSave Tags: database, news, server
MySQL 6.0.5-alpha Released
MySQL 6.0.5-alpha, a new version of the MySQL database system including the Falcon transactional storage engine, has been released.
0 commentsSave Tags: announcement, database, server
New DB Features coming in NetBeans 6.5
Some cool stuff coming down the pike for NetBeans 6.5 database tooling.
0 commentsSave Tags: database, tools
Intro to NHibernate
This article takes someone through setting up NHibernate for the first time using the AdventureWorks database.
0 commentsSave Tags: .net, database, frameworks, microsoft
Microsoft Security Advisory Alert: SQL Injection Attacks
Microsoft is aware of a recent escalation in a class of attacks targeting Web sites that use Microsoft ASP and ASP.NET technologies but do not follow... more »
0 commentsSave Tags: database, microsoft, security
Seam, Spring and jBPM integration HowTo
This article describes how to integrate Seam, Spring and jBPM in order to use the same Hibernate session factory and transaction manager.
0 commentsSave Tags: database, frameworks, java, open source
LiquiBase 1.7.0
It is LiquiBase 1.0's first birthday, but you get the gift: LiquiBase 1.7.0 is now available. LiquiBase is a Java-based LGPL-licensed database change... more »
0 commentsSave Tags: database
jPersist 3.2.7 and jWebApp 4.8.7: Simple Web and ORM Framework Alternatives
This release fixes a high profile problem that caused the following exception: jpersist.JPersistException: Column 'a.columnName' not found. Also... more »
0 commentsSave Tags: announcement, database, frameworks, java
Creating a Custom Desktop Database Application - NetBeans 6.1 Tutorial
This tutorial guides you through the creation of a complete desktop database application that enables its user to browse and edit customer records and... more »
1 commentsSave Tags: database, java, tools
.NET LINQ to MSI - Part 1 - Interop
Without any physical data access layer, there's no way to build abstractions on top of it. So, in this part of this series we'll take a look at some... more »
0 commentsSave Tags: .net, database, how-to, microsoft
Database Garbage Collection (for Business Entities)
Should garbage collection for entities be a first-class-citizen in the domain model?
0 commentsSave Tags: .net, database, methodology