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
CUBRID_ERROR_CODE(3)							 1						      CUBRID_ERROR_CODE(3)

cubrid_error_code - Get error code for the most recent function call

SYNOPSIS
int cubrid_error_code (void ) DESCRIPTION
The cubrid_error_code(3) function is used to get the error code of the error that occurred during the API execution. Usually, it gets the error code when API returns false as its return value. PARAMETERS
This function has no parameters. RETURN VALUES
Error code of the error that occurred, or 0 (zero) if no error occurred. EXAMPLES
Example #1 cubrid_error_code(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb"); $req = cubrid_prepare($conn , "SELECT * FROM code WHERE s_name=?"); $req = @cubrid_execute($req); if (!$req) { printf("Error facility: %d Error code: %d Error msg: %s ", cubrid_error_code_facility(), cubrid_error_code(), cubrid_error_msg()); cubrid_disconnect($conn); exit; } ?> The above example will output: Error facility: 4 Error code: -30015 Error msg: Some parameter not binded SEE ALSO
cubrid_error_code_facility(3), cubrid_error_msg(3). PHP Documentation Group CUBRID_ERROR_CODE(3)