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

dbase_get_header_info - Gets the header info of a database

SYNOPSIS
array dbase_get_header_info (int $dbase_identifier) DESCRIPTION
Returns information on the column structure of the given database link identifier. PARAMETERS
o $dbase_identifier - The database link identifier, returned by dbase_open(3) or dbase_create(3). RETURN VALUES
An indexed array with an entry for each column in the database. The array index starts at 0. Each array element contains an associative array of column information, as described here: o name - The name of the column o type - The human-readable name for the dbase type of the column (i.e. date, boolean, etc.) o length - The number of bytes this column can hold o precision - The number of digits of decimal precision for the column o format - A suggested printf(3) format specifier for the column o offset - The byte offset of the column from the start of the row If the database header information cannot be read, FALSE is returned. EXAMPLES
Example #1 Showing header information for a dBase database file <?php // Path to dbase file $db_path = "/tmp/test.dbf"; // Open dbase file $dbh = dbase_open($db_path, 0) or die("Error! Could not open dbase database file '$db_path'."); // Get column information $column_info = dbase_get_header_info($dbh); // Display information print_r($column_info); ?> PHP Documentation Group DBASE_GET_HEADER_INFO(3)