Database Technology for the Web: Part 1 – The MapReduce Debate

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Database Technology for the Web: Part 1 – The MapReduce Debate
# 1  
Old 07-16-2009
Database Technology for the Web: Part 1 – The MapReduce Debate

by Colin White, BI Research Over the course of the nearly forty years I have been working on database systems, there have been many debates and arguments about which database technology to use for any given application. These arguments have become heated, especially when a new database technology appears that claims to be superior to anything [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Web Technology

Hi Experts, This may sound stupidity.....anyhow....let me ask the doubt, Even though shell is just a scripting language, can anyone tell me, whether web pages can be created with embedding some concepts. In any other scripting language, whether web pages can be created. If so, suggest me in... (6 Replies)
Discussion started by: kritibalu
6 Replies

2. News, Links, Events and Announcements

Announcing the World’s First OLTP Database Machine with Sun FlashFire Technology

The Sun/Oracle deal is on a good way... Sun Microsystems: An Invitation Larry Ellison Invites You to a Live Oracle and Sun Product Launch (1 Reply)
Discussion started by: DukeNuke2
1 Replies
Login or Register to Ask a Question
MySQL::Diff::Database(3pm)				User Contributed Perl Documentation				MySQL::Diff::Database(3pm)

NAME
MySQL::Diff::Database - Database Definition Class SYNOPSIS
use MySQL::Diff::Database; my $db = MySQL::Diff::Database->new(%options); my $source = $db->source_type(); my $summary = $db->summary(); my $name = $db->name(); my @tables = $db->tables(); my $table_def = $db->table_by_name($table); my @dbs = MySQL::Diff::Database::available_dbs(); DESCRIPTION
Parses a database definition into component parts. METHODS
Constructor new( %options ) Instantiate the objects, providing the command line options for database access and process requirements. Public Methods o source_type() Returns 'file' if the data source is a text file, and 'db' if connected directly to a database. o summary() Provides a summary of the database. o name() Returns the name of the database. o tables() Returns a list of tables for the current database. o table_by_name( $name ) Returns the table definition (see MySQL::Diff::Table) for the given table. FUNCTIONS
Public Functions o available_dbs() Returns a list of the available databases. Note that is used as a function call, not a method call. COPYRIGHT AND LICENSE
Copyright (c) 2000-2011 Adam Spiers. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
mysqldiff, MySQL::Diff, MySQL::Diff::Table, MySQL::Diff::Utils AUTHOR
Adam Spiers <mysqldiff@adamspiers.org> perl v5.14.2 2012-04-06 MySQL::Diff::Database(3pm)