Label:scan_error_chrp


 
Thread Tools Search this Thread
Operating Systems AIX Label:scan_error_chrp
# 1  
Old 05-17-2006
Question Label:scan_error_chrp

Am getting an error in error log
LABEL: SCAN_ERROR_CHRP
IDENTIFIER: BFE4C025

Date/Time: Wed May 17 10:49:32 CUT
Sequence Number: 6738
Machine Id: 00CD552E4C00
Node Id: dbs104
Class: H
Type: PERM
Resource Name: sysplanar0
Resource Class: planar
Resource Type: sysplanar_rspc
Location:

Description
UNDETERMINED ERROR

Failure Causes
UNDETERMINED
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Which IP label is used for HeartBeating?

Hi, In HACMP, which IP label ( Service/ Boot/ Persisten) is used for send/receive Heartbeat packets in IP based Heartbeating? (1 Reply)
Discussion started by: ksgnathan
1 Replies

2. Shell Programming and Scripting

For loop using LABEL

Hi, i have below code so i want to run only one for loop instead of two. if ; then FILE_NAME_SLS=`cat $FILE_PATH|grep 'GTDA_Dly_Sls_'` DELMT="|" for i in $FILE_NAME_SLS do ABaC_COL_SL=`cut -d "$DELMT"... (6 Replies)
Discussion started by: renuk
6 Replies

3. UNIX for Dummies Questions & Answers

How to read a disk label?

Hi there, I'm wondering how to display a disk label (why not edit it but I don't need that yet). I found several commands on forums like disklabel and diskinfo but I can't find them on my system and don't know the package they belong to. Can you help me? Cheers Santiago (2 Replies)
Discussion started by: chebarbudo
2 Replies

4. Solaris

Help:"Bad checksum in disk label" and "Can't open disk label package"?

Hello, I'm brand new to Sun/Solaris. I have a Sun Blade 150, with SunOS 5.8. I wanted to make a backup to prevent future data loss, so I put the disk in a normal PC with Windows XP to try to make a backup with Norton Ghost, the disk was detected, but not the file volume, so I place the disk... (6 Replies)
Discussion started by: Resadija
6 Replies

5. Shell Programming and Scripting

Using A Goto Label?

Im trying to do something like this but I cant find any documentation. read X if then goto ThisLine fi OTHER CODE OTHER CODE Label: ThisLine echo "You entered 1" (5 Replies)
Discussion started by: Grizzly
5 Replies

6. UNIX for Advanced & Expert Users

how to write volume label / ID into CD

I've a peculiar requirement that, i want to write the md5sum of the ISO image in to CD or DVD where i write that ISO. If you want to write some other information as volume label/ID, we can use the mkisofs command's -V option. But i cannot use this because before the creation of the iso file,... (0 Replies)
Discussion started by: thegeek
0 Replies

7. AIX

Label: Fcp_array_err4

In errpt i have got the following error and my database performs slow. --------------------------------------------------------------------------- LABEL: FCP_ARRAY_ERR4 IDENTIFIER: D5385D18 Date/Time: Tue Jul 22 10:50:10 CUT Sequence Number: 193913 Machine Id: ... (1 Reply)
Discussion started by: vjm
1 Replies

8. HP-UX

Label printing help

Hi I need some help in label printing with Zebra printers. (Model 220xiII) Here is a small test label file which prints fine in portrait format. Can anyone tell me how to change the label printing mode to landscape format? HEADER;TESTLBL;1;1;5;4... (0 Replies)
Discussion started by: rpalghat
0 Replies

9. AIX

Label: Disk_err4

I was trying to access my filesystem "tools" but couldn't, so I run fsck, but says Unable to read superblock (TERMINATED) when try mounting says mount: /dev/lv01 on /tools: I/O error the state of logical volumes of rootvg are "open/stale", what does it means? LV NAME TYPE ... (4 Replies)
Discussion started by: andwhat
4 Replies

10. Shell Programming and Scripting

Add label to all files...

hi everybody: could anybody tell me how could i add a unique line from a file how first row label in other files?. thanks in advance. (1 Reply)
Discussion started by: tonet
1 Replies
Login or Register to Ask a Question
RDF::Redland::Node(3pm) 				User Contributed Perl Documentation				   RDF::Redland::Node(3pm)

NAME
RDF::Redland::Node - Redland RDF Node (RDF Resource, Property, Literal) Class SYNOPSIS
use RDF::Redland; my $node1=new RDF::Redland::Node("Hello, World!"); my $node2=new RDF::Redland::Node($uri); # $uri is an RDF::Redland::URI my $node3=$node2->clone; my $node4=new RDF::Redland::URINode("http://example.com/"); my $node5=new RDF::Redland::LiteralNode("Hello, World!"); my $node6=new RDF::Redland::XMLLiteral("<tag>content</tag>"); my $node7=new RDF::Redland::BlankNode("genid1"); # alternate more verbose ways: my $node4=RDF::Redland::Node->new_from_uri("http://example.com/"); my $node5=RDF::Redland::Node->new_literal("Hello, World!"); my $node6=RDF::Redland::Node->new_xml_literal("<tag>content</tag>"); my $node7=RDF::Redland::Node->new_from_blank_identifier("genid1"); ... print $node4->uri->as_string," "; # Using RDF::Redland::URI::as_string print $node5->literal_value_as_latin1," "; DESCRIPTION
This class represents RDF URIs, literals and blank nodes in the RDF graph. CONSTRUCTORS
new [STRING | URI | NODE] Create a new URI node, literal node or copy an existing node. If a literal STRING is given, make a plain literal node. If a the argument is of type URI (perl URI or RDF::Redland::URI), make a resource node. Otherwise if the argument is an RDF::Redland::Node NODE, copy it. new_from_uri URI Create a new URI node. URI can be either a RDF::Redland::URI object, a perl URI class or a literal string. An alternative is: new RDF::Redland::URINode("http://example.org/"); new_literal STRING [DATATYPE [XML_LANGUAGE]] Create a new literal node for a literal value STRING. Optional datatype URI DATATYPE (RDF::Redland::URI, perl URI or string) and language (xml:lang attribute) XML_LANGUAGE may also be given. An alternative is: new RDF::Redland::LiteralNode("Hello, World!"); new RDF::Redland::LiteralNode("Bonjour monde!", undef, "fr"); new_xml_literal STRING Create a new XML datatyped literal node for the XML in STRING. An alternative is: new RDF::Redland::XMLLiteral("<tag>content</tag>"); new_from_blank_identifier IDENTIFIER Create a new blank node with blank node identifier IDENTIFIER. An alternative is: new RDF::Redland::BlankNode("id"); clone Copy a RDF::Redland::Node. METHODS
uri Get the current URI of the node as an RDF::Redland::URI object. blank_identifier Get the current blank identifier of the node type Get the node type. It is recommended to use the is_resource, is_literal or is_blank methods in preference to this (both simpler and quicker). The current list of types that are supported are: $RDF::Redland::Node::Type_Resource $RDF::Redland::Node::Type_Literal $RDF::Redland::Node::Type_Blank Example: if ($node->type == $RDF::Redland::Node::Type_Resource) { print "Node is a resource with URI ", $node->uri->as_string, " "; } else { ... } is_resource Return true if node is a resource (with a URI) is_literal Return true if node is a literal is_blank Return true if node is a blank nodeID literal_value Get the node literal value string as UTF-8 (when the node is of type $RDF::Redland::Node::Type_Literal) literal_value_as_latin1 Get the node literal value string converted from UTF-8 to ISO Latin-1 (when the node is of type $RDF::Redland::Node::Type_Literal) literal_value_language Get the node literal XML language (when the node is of type $RDF::Redland::Node::Type_Literal) or undef if not present. literal_value_is_wf_xml Return non 0 if the literal string is well formed XML (when the node is of type $RDF::Redland::Node::Type_Literal). literal_datatype Return the RDF::Redland::URI of the literal datatype or undef if it is not a datatype. as_string Return the RDF::Redland::Node formatted as a string (UTF-8 encoded). equals NODE Return non zero if this node is equal to NODE OLDER METHODS
new_from_literal STRING XML_LANGUAGE IS_WF Create a new RDF::Redland::Node object for a literal value STRING with XML language (xml:lang attribute) XML_LANGUAGE and if content is well formed XML, when IS_WF is non 0. XML_LANGUAGE is optional can can be set to undef. This method remains but using new_literal is prefered. Instead, for plain literals use: $node=new RDF::Redland::Node("blah") new_from_typed_literal STRING [DATATYPE [XML_LANGUAGE]] Renamed to new_literal with same arguments. new_from_uri_string URI_STRING Create a new RDF::Redland::Node object for a resource with URI URI_STRING. It is equivalent to use the shorter: $a=new RDF::Redland::Node->new_from_uri($uri_string) new_from_node NODE Create a new RDF::Redland::Node object from existing RDF::Redland::Node NODE (copy constructor). It is equivalent to use: $new_node=$old_node->clone SEE ALSO
RDF::Redland::Statement AUTHOR
Dave Beckett - http://www.dajobe.org/ perl v5.14.2 2011-05-09 RDF::Redland::Node(3pm)