learn linux and unix commands - unix shell scripting

An Introduction to Real-Time Data Integration


 
Thread Tools Search this Thread
# 1  
Old 04-06-2008
An Introduction to Real-Time Data Integration

Get an introduction to using Oracle Data Integrator, Java-based middleware that uses the database to perform set-based data integration tasks in an SOA.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Archiving or removing few data from log file in real time

Hi, I have a log file that gets updated every second. Currently the size has grown to 20+ GB. I need to have a command/script, that will try to get the actual size of the file and will remove 50% of the data that are in the log file. I don't mind removing the data as the size has grown to huge... (8 Replies)
Discussion started by: Souvik Patra
8 Replies

2. Shell Programming and Scripting

Converting real time to epoch time

# date +%s -d "Mon Feb 11 02:26:04" 1360567564 # perl -e 'print scalar localtime(1360567564), "\n";' Mon Feb 11 02:26:04 2013 the epoch conversion is working fine. but one of my application needs 13 digit epoch time as input 1359453135154 rather than 10 digit epoch time 1360567564... (3 Replies)
Discussion started by: vivek d r
3 Replies

3. Shell Programming and Scripting

Shell script to convert epoch time to real time

Dear experts, I have an epoch time input file such as : - 1302451209564 1302483698948 1302485231072 1302490805383 1302519244700 1302492787481 1302505299145 1302506557022 1302532112140 1302501033105 1302511536485 1302512669550 I need the epoch time above to be converted into real... (4 Replies)
Discussion started by: aismann
4 Replies

4. Shell Programming and Scripting

Piped open not real-time - How would one handle live data?

When I run "/etc/myApp" I am presented with continuous output, just about once per second. However when I try to get the information in Perl via a piped open, it waits till the end to give me anything... my code: open (OUTPUT,"/etc/myApp |"); while (<OUTPUT>){ print $_; }... (2 Replies)
Discussion started by: jjinno
2 Replies

5. UNIX for Dummies Questions & Answers

capturing real time

Newbie question: I wrote korn shell script that lets me connect to a cisco switch thru telnet from sun server. I'm wodering if or what command i would use to capture info that is being sent to standard output when the script is running. Putting part of my script below and results. #!/bin/ksh... (2 Replies)
Discussion started by: wisher115
2 Replies
Login or Register to Ask a Question
Data::ObjectDriver::Driver::Multiplexer(3pm)		User Contributed Perl Documentation	      Data::ObjectDriver::Driver::Multiplexer(3pm)

NAME
Data::ObjectDriver::Driver::Multiplexer - Multiplex multiple partitioned drivers SYNOPSIS
package MappingTable; use Foo; use Bar; my $foo_driver = Foo->driver; my $bar_driver = Bar->driver; __PACKAGE__->install_properties({ columns => [ qw( foo_id bar_id value ) ], primary_key => 'foo_id', driver => Data::ObjectDriver::Driver::Multiplexer->new( on_search => { foo_id => $foo_driver, bar_id => $bar_driver, }, on_lookup => $foo_driver, drivers => [ $foo_driver, $bar_driver ], ), }); DESCRIPTION
Data::ObjectDriver::Driver::Multiplexer associates a set of drivers to a particular class. In practice, this means that all INSERTs and DELETEs are propagated to all associated drivers (for example, all associated databases or tables in a database), and that SELECTs are sent to the appropriate multiplexed driver, based on partitioning criteria. Note that this driver has the following limitations currently: 1. It's very experimental. 2. It's very experimental. 3. IT'S VERY EXPERIMENTAL. 4. This documentation you're reading is incomplete. the api is likely to evolve perl v5.12.4 2011-08-29 Data::ObjectDriver::Driver::Multiplexer(3pm)