Error -350


 
Thread Tools Search this Thread
Operating Systems BSD Error -350
# 1  
Old 01-21-2008
CPU & Memory Error -350

Hi All,

When ever am rying to connect to the database using isqlrf from the command prompt i get the following error
Error -350 is Index already exists on column.

What could be the possible reason and a solutin for this ?

AM using freeBSD
Thanks in advance
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Linux Benchmarks

HP ML 350 dual Xeon 3.2GHz

CPU: dual Xeon 3.2 GHz Ram: 1Gig Motherboard: Bus: 800MHz Cache: 1MB Controller:Smart Array 641 Disk: UltraSCSI 320 Load: Kernel:2.6.9-1.667smp Kernel ELF?: yes pgms: compiled with gcc 3.4.3 BYTE UNIX Benchmarks (Version 3.11) System -- Linux ford 2.6.9-1.667smp #1 SMP... (0 Replies)
Discussion started by: migurus
0 Replies

2. Shell Programming and Scripting

remove a 350 files in one shot

i have a dir called logs. In it i have some 350 files how to move all those files from directory logs to a new dir called archive I want to do it in single shot Below the command i m trying but not getting find . -name "CurrentCollector*" -exec mv {} archive \;... (2 Replies)
Discussion started by: ali560045
2 Replies
Login or Register to Ask a Question
Throwable::Error(3pm)					User Contributed Perl Documentation				     Throwable::Error(3pm)

NAME
Throwable::Error - an easy-to-use class for error objects VERSION
version 0.102080 SYNOPSIS
package MyApp::Error; use Moose; extends 'Throwable::Error'; has execution_phase => ( is => 'ro', isa => 'MyApp::Phase', default => 'startup', ); ...and in your app... MyApp::Error->throw("all communications offline"); # or... MyApp::Error->throw({ message => "all communications offline", phase => 'shutdown', }); DESCRIPTION
Throwable::Error is a base class for exceptions that will be thrown to signal errors and abort normal program flow. Throwable::Error is an alternative to Exception::Class, the features of which are largely provided by the Moose object system atop which Throwable::Error is built. Throwable::Error performs the Throwable and StackTrace::Auto roles. That means you can call "throw" on it to create and throw n error object in one call, and that every error object will have a stack trace for its creation. ATTRIBUTES
message This attribute must be defined and must contain a string describing the error condition. This string will be printed at the top of the stack trace when the error is stringified. stack_trace This attribute, provided by StackTrace::Auto, will contain a stack trace object guaranteed to respond to the "as_string" method. For more information about the stack trace and associated behavior, consult the StackTrace::Auto docs. METHODS
as_string This method will provide a string representing the error, containing the error's message followed by the its stack trace. AUTHORS
o Ricardo SIGNES <rjbs@cpan.org> o Florian Ragwitz <rafl@debian.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2010-07-27 Throwable::Error(3pm)