Sponsored Content
Top Forums UNIX for Dummies Questions & Answers deleting records with a missing field Post 33010 by gillbates on Thursday 12th of December 2002 04:01:31 PM
Old 12-12-2002
oops, left out the close quote after print $0}
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

using cat and grep to display missing records

Gentle Unix users, Can someone tell me how I can use a combination of the cat and grep command to display records that are in FileA but missing in FileB. cat FileA one line at a time and grep to see if it is in fileB. If it is ignore. If line is not in fileB display the line. Thanks in... (4 Replies)
Discussion started by: jxh461
4 Replies

2. UNIX for Advanced & Expert Users

Urgent: How can i get the missing records from one file out of two

Hi, I have two files say A and B, Both files have some common records few records which are unique to file A and unique to file B. Can anyone please help me out to find the records which are present in only B Please consider the files are of too large size. Thanks:confused: (1 Reply)
Discussion started by: Shiv@jad
1 Replies

3. Shell Programming and Scripting

deleting multiple records from a huge file at one time

I have a very big file of 5gb size and there are about 50 million records in there. I have to delete the records based on recrord number that I know fromoutside with out opening the file. The record numbers are very random like 5000678, 7890005 etc. Can somebody let me know how i can... (5 Replies)
Discussion started by: dsravan
5 Replies

4. Shell Programming and Scripting

Deleting last records of a file

can you please give shell script for daleting the last 7 records of file... (7 Replies)
Discussion started by: vsairam
7 Replies

5. Shell Programming and Scripting

Deleting Duplicate Records

Hello, I'm have a file of xy data with over 1000 records. I want to delete both x and y values for any record that has the same x value as any previous record thus removing the duplicates from my file. Can anyone help? Thanks, Dan (3 Replies)
Discussion started by: DFr0st
3 Replies

6. Shell Programming and Scripting

Deleting duplicate records from file 1 if records from file 2 match

I have 2 files "File 1" is delimited by ";" and "File 2" is delimited by "|". File 1 below (3 record shown): Doc1;03/01/2012;New York;6 Main Street;Mr. Smith 1;Mr. Jones Doc2;03/01/2012;Syracuse;876 Broadway;John Davis;Barbara Lull Doc3;03/01/2012;Buffalo;779 Old Windy Road;Charles... (2 Replies)
Discussion started by: vestport
2 Replies

7. Shell Programming and Scripting

Perl : Deleting the records in the excel sheet

I have a excel sheet with contains the records as below.. also uploaded the input excelsheet and the output excel sheet(expected output). 322mpls32.net.xyz.comBW: 44.0 M Hrly Avg (IN /... (1 Reply)
Discussion started by: giridhar276
1 Replies

8. UNIX for Dummies Questions & Answers

Deleting records from .dat file

Hi, I need to delete one row from a .dat file. error processing column PCT_USED in row 1053295 for datafile /exp/stats/ts_stats.dat ORA-01722: invalid number This is used to load records using sql loader. Please let me know the procedure to do it. Regards, VN (3 Replies)
Discussion started by: narayanv
3 Replies

9. Shell Programming and Scripting

Deleting the records based on the condition

Hi, Can any one help me, in deleting the records from the database table based on the following condition: script should take a configurable parameter as input. The input is nothing but “no. of years”. For example, if I enter 2 as input parameter, then the 2 year old records should get... (2 Replies)
Discussion started by: zxcjggu708
2 Replies

10. Shell Programming and Scripting

Finding missing records and Dups

I have a fixed width file. The records looks something similar to below: Type ID SSN NAME .....AND SOME MORE FIELDS A1 1234 ..... A1 1234 ..... B1 1234 ..... M2 4567 ..... M2 4567 ..... N2 4567 ..... N2 4567 ..... A1 9999 N2 9999 Now if A1 is present then B1 has to be present.... (2 Replies)
Discussion started by: Saanvi1
2 Replies
NEXT(3pm)						 Perl Programmers Reference Guide						 NEXT(3pm)

NAME
NEXT.pm - Provide a pseudo-class NEXT that allows method redispatch SYNOPSIS
use NEXT; package A; sub A::method { print "$_[0]: A method "; $_[0]->NEXT::method() } sub A::DESTROY { print "$_[0]: A dtor "; $_[0]->NEXT::DESTROY() } package B; use base qw( A ); sub B::AUTOLOAD { print "$_[0]: B AUTOLOAD "; $_[0]->NEXT::AUTOLOAD() } sub B::DESTROY { print "$_[0]: B dtor "; $_[0]->NEXT::DESTROY() } package C; sub C::method { print "$_[0]: C method "; $_[0]->NEXT::method() } sub C::AUTOLOAD { print "$_[0]: C AUTOLOAD "; $_[0]->NEXT::AUTOLOAD() } sub C::DESTROY { print "$_[0]: C dtor "; $_[0]->NEXT::DESTROY() } package D; use base qw( B C ); sub D::method { print "$_[0]: D method "; $_[0]->NEXT::method() } sub D::AUTOLOAD { print "$_[0]: D AUTOLOAD "; $_[0]->NEXT::AUTOLOAD() } sub D::DESTROY { print "$_[0]: D dtor "; $_[0]->NEXT::DESTROY() } package main; my $obj = bless {}, "D"; $obj->method(); # Calls D::method, A::method, C::method $obj->missing_method(); # Calls D::AUTOLOAD, B::AUTOLOAD, C::AUTOLOAD # Clean-up calls D::DESTROY, B::DESTROY, A::DESTROY, C::DESTROY DESCRIPTION
NEXT.pm adds a pseudoclass named "NEXT" to any program that uses it. If a method "m" calls "$self-"NEXT::m()>, the call to "m" is redis- patched as if the calling method had not originally been found. In other words, a call to "$self-"NEXT::m()> resumes the depth-first, left-to-right search of $self's class hierarchy that resulted in the original call to "m". Note that this is not the same thing as "$self-"SUPER::m()>, which begins a new dispatch that is restricted to searching the ancestors of the current class. "$self-"NEXT::m()> can backtrack past the current class -- to look for a suitable method in other ancestors of $self -- whereas "$self-"SUPER::m()> cannot. A typical use would be in the destructors of a class hierarchy, as illustrated in the synopsis above. Each class in the hierarchy has a DESTROY method that performs some class-specific action and then redispatches the call up the hierarchy. As a result, when an object of class D is destroyed, the destructors of all its parent classes are called (in depth-first, left-to-right order). Another typical use of redispatch would be in "AUTOLOAD"'ed methods. If such a method determined that it was not able to handle a particu- lar call, it might choose to redispatch that call, in the hope that some other "AUTOLOAD" (above it, or to its left) might do better. By default, if a redispatch attempt fails to find another method elsewhere in the objects class hierarchy, it quietly gives up and does nothing (but see "Enforcing redispatch"). This gracious acquiesence is also unlike the (generally annoying) behaviour of "SUPER", which throws an exception if it cannot redispatch. Note that it is a fatal error for any method (including "AUTOLOAD") to attempt to redispatch any method that does not have the same name. For example: sub D::oops { print "oops! "; $_[0]->NEXT::other_method() } Enforcing redispatch It is possible to make "NEXT" redispatch more demandingly (i.e. like "SUPER" does), so that the redispatch throws an exception if it cannot find a "next" method to call. To do this, simple invoke the redispatch as: $self->NEXT::ACTUAL::method(); rather than: $self->NEXT::method(); The "ACTUAL" tells "NEXT" that there must actually be a next method to call, or it should throw an exception. "NEXT::ACTUAL" is most commonly used in "AUTOLOAD" methods, as a means to decline an "AUTOLOAD" request, but preserve the normal exception- on-failure semantics: sub AUTOLOAD { if ($AUTOLOAD =~ /foo|bar/) { # handle here } else { # try elsewhere shift()->NEXT::ACTUAL::AUTOLOAD(@_); } } By using "NEXT::ACTUAL", if there is no other "AUTOLOAD" to handle the method call, an exception will be thrown (as usually happens in the absence of a suitable "AUTOLOAD"). Avoiding repetitions If "NEXT" redispatching is used in the methods of a "diamond" class hierarchy: # A B # / / # C D # / # E use NEXT; package A; sub foo { print "called A::foo "; shift->NEXT::foo() } package B; sub foo { print "called B::foo "; shift->NEXT::foo() } package C; @ISA = qw( A ); sub foo { print "called C::foo "; shift->NEXT::foo() } package D; @ISA = qw(A B); sub foo { print "called D::foo "; shift->NEXT::foo() } package E; @ISA = qw(C D); sub foo { print "called E::foo "; shift->NEXT::foo() } E->foo(); then derived classes may (re-)inherit base-class methods through two or more distinct paths (e.g. in the way "E" inherits "A::foo" twice -- through "C" and "D"). In such cases, a sequence of "NEXT" redispatches will invoke the multiply inherited method as many times as it is inherited. For example, the above code prints: called E::foo called C::foo called A::foo called D::foo called A::foo called B::foo (i.e. "A::foo" is called twice). In some cases this may be the desired effect within a diamond hierarchy, but in others (e.g. for destructors) it may be more appropriate to call each method only once during a sequence of redispatches. To cover such cases, you can redispatch methods via: $self->NEXT::UNSEEN::method(); rather than: $self->NEXT::method(); This causes the redispatcher to skip any classes in the hierarchy that it has already visited in an earlier redispatch. So, for example, if the previous example were rewritten: package A; sub foo { print "called A::foo "; shift->NEXT::UNSEEN::foo() } package B; sub foo { print "called B::foo "; shift->NEXT::UNSEEN::foo() } package C; @ISA = qw( A ); sub foo { print "called C::foo "; shift->NEXT::UNSEEN::foo() } package D; @ISA = qw(A B); sub foo { print "called D::foo "; shift->NEXT::UNSEEN::foo() } package E; @ISA = qw(C D); sub foo { print "called E::foo "; shift->NEXT::UNSEEN::foo() } E->foo(); then it would print: called E::foo called C::foo called A::foo called D::foo called B::foo and omit the second call to "A::foo". Note that you can also use: $self->NEXT::UNSEEN::ACTUAL::method(); or: $self->NEXT::ACTUAL::UNSEEN::method(); to get both unique invocation and exception-on-failure. AUTHOR
Damian Conway (damian@conway.org) BUGS AND IRRITATIONS
Because it's a module, not an integral part of the interpreter, NEXT.pm has to guess where the surrounding call was found in the method look-up sequence. In the presence of diamond inheritance patterns it occasionally guesses wrong. It's also too slow (despite caching). Comment, suggestions, and patches welcome. COPYRIGHT
Copyright (c) 2000-2001, Damian Conway. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself. perl v5.8.0 2002-06-01 NEXT(3pm)
All times are GMT -4. The time now is 09:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy