learn linux and unix commands - unix shell scripting

Building a Hybrid Data Warehouse Model


 
Thread Tools Search this Thread
# 1  
Old 04-06-2008
Building a Hybrid Data Warehouse Model

As suggested by this reference implementation, in some cases blending the relational and dimensional models may be the right approach to data warehouse design.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Programming

Building app. to send data to website

Hi. I plan to build an application which takes text data from a user. It then sends this to a website, login required. The business case being this site contains many text fields, mostly redundant to user. My application would only prompt user for necessary text. What language, methods... (4 Replies)
Discussion started by: cic
4 Replies

2. Virtualization and Cloud Computing

Data Warehouse evolving towards CEP?

vincent Tue, 25 Mar 2008 03:15:31 +0000 Whilst at DAMA last week I managed to miss the Teradata talk on “active data warehouses“. Luckily James Taylor blogged comprehensively on the talk, and although it seems Teradata declined to make the presentation available to attendees, I’m guessing it was... (0 Replies)
Discussion started by: Linux Bot
0 Replies

3. UNIX for Dummies Questions & Answers

Hybrid CD-ROMs

Hello, Is there any way to create a hybrid CD-ROM on either a Windows or Solaris server to be able to mastered with a Windows mastering software like Roxio. Thanks, Mike (1 Reply)
Discussion started by: bubba112557
1 Replies
Login or Register to Ask a Question
Config::Model::CursesUI(3pm)				User Contributed Perl Documentation			      Config::Model::CursesUI(3pm)

NAME
Config::Model::CursesUI - Curses interface to edit config data SYNOPSIS
use Config::Model ; use Config::Model::CursesUI ; my $model = Config::Model -> new ; my $inst = $model->instance (root_class_name => 'XXX', instance_name => 'yyy'); # create dialog my $dialog = Config::Model::CursesUI-> new ( experience => 'beginner', # or 'advanced' ) ; # start never returns $dialog->start($model) ; DESCRIPTION
This class provides a Curses::UI interface to configuration data managed by Config::Model. IMPORTANT: Once the CursesUI object is created, STDOUT and STDERR are managed by the Curses interface, so all print and warn will not work as expected. CONSTRUCTOR
The constructor accepts the following parameters: experience Specifies the experience level of the user (default: "beginner"). The experience can be "master advanced beginner". load Subroutine ref containing the code to load the configuration data from the configuration files. This may overrides loading mechanism specified in the model with Config::Model::AutoRead. This sub is called without any arguments. store Subroutine ref containing the code to store the configuration data in the configuration files. This may overrides writing mechanism specified in the model with Config::Model::AutoRead. This sub is called without any arguments. AUTHOR
Dominique Dumont, (ddumont at cpan dot org) LICENSE
Copyright (c) 2007-2009,2011 Dominique Dumont. This file is part of Config-Model. Config-Model is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. Config-Model is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser Public License for more details. You should have received a copy of the GNU Lesser Public License along with Config-Model; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA SEE ALSO
Config::Model, Config::Model::ObjTreeScanner, Curses::UI, Curses perl v5.10.1 2011-03-04 Config::Model::CursesUI(3pm)