Sponsored Content
Top Forums Programming Need help with C app on Oracle running on Solaris 6 Post 26866 by w0lf on Sunday 25th of August 2002 12:55:57 AM
Old 08-25-2002
That is a wise suggestion, and what I would have done under "normal" circumstances. However, I was hired for a couple of weeks and asked to fix this problem, which wasn't really what I was told in the interview. Anyways, I did manage to fix it. Not just this one but another one they dumped on me after I got this one. The IT manager wasn't kidding when he said, "Congrats! You seem to have found the needle in the haystack!" Anyways, all's well that ends well, I guess. Thanks for your response.

Salman
 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

more of an APP questions. basic oracle quesitons

1) how is a hot backup performed. i am thinking it does 1 of 2 things. 1) it exports the db and then you backup the exported files. OR 2) you just backup the files on disk as teh db is running. i dont need to know HOW it is done. but just the basic concept of a hotbackup. i cant find it... (1 Reply)
Discussion started by: Optimus_P
1 Replies

2. Programming

find the fully-qualified path for the app my module is running in

Hi- I need the cpp call that will tell me the full path to the app I'm running in. For example, I'm running in a loaded library for either mozilla or firefox, but would like to know the full path to the executable /usr/bin/firefox /usr/bin/mozilla /usr/local/firefox1_5 etc... (For... (4 Replies)
Discussion started by: erwinfletch
4 Replies

3. Programming

Running app after logout and monitoring

Hello! I just programmed a very simple app, it's function is to report every minute the state of the memory and cpu and put it to and xml. All this stuff is working ok since I'm logged in into the machine, but i want it to run as a service, how can I do that?? P.S: Any one knows how can I... (1 Reply)
Discussion started by: ncatdesigner
1 Replies

4. High Performance Computing

Installation Guide for Solaris Cluster 3.2 Software and Oracle 10g Release 2 Real App

Here are steps for installing the Solaris 10 11/06 OS, Solaris Cluster (formerly Sun Cluster) 3.2 software, QFS 4.5, and Oracle 10gR2 RAC. Also provided are instructions on how to configure QFS and Solaris Volume Manager for use with Oracle 10gR2 RAC. More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

5. Windows & DOS: Issues & Discussions

Display running 'app' in terminal titlebar?

Hi. I was, not too long ago, an OS X home user. One of the things I remember from using the Apple-installed Terminal is: whenever an executable that took more than a split second to do its thing was running, its name would appear in the title bar in a way similar to "Terminal: ssh" or "Terminal:... (0 Replies)
Discussion started by: SilversleevesX
0 Replies

6. AIX

AIX 6.1 app running on 5.x?

Hi, A quick question. If I build an application on AIX 6.1 TL3 using XL C/C++ 8.0 and Oracle 10g, can I then take those binaries and run them on AIX 5.3 and previous? Regards Kevin (3 Replies)
Discussion started by: KevB
3 Replies

7. Solaris

what is the command to see which database ie..oracle in running on solaris 10

what is the command to see which database ie..oracle in running on solaris 10 (2 Replies)
Discussion started by: tv.praveenkumar
2 Replies
ICONV_STRPOS(3) 							 1							   ICONV_STRPOS(3)

iconv_strpos - Finds position of first occurrence of a needle within a haystack

SYNOPSIS
int iconv_strpos (string $haystack, string $needle, [int $offset], [string $charset = ini_get("iconv.internal_encoding")]) DESCRIPTION
Finds position of first occurrence of a $needle within a $haystack. In contrast to strpos(3), the return value of iconv_strpos(3) is the number of characters that appear before the needle, rather than the offset in bytes to the position where the needle has been found. The characters are counted on the basis of the specified character set $charset. PARAMETERS
o $haystack - The entire string. o $needle - The searched substring. o $offset - The optional $offset parameter specifies the position from which the search should be performed. o $charset - If $charset parameter is omitted, $string are assumed to be encoded in iconv.internal_encoding. If $haystack or $needle is not a string, it is converted to a string and applied as the ordinal value of a character. RETURN VALUES
Returns the numeric position of the first occurrence of $needle in $haystack. If $needle is not found, iconv_strpos(3) will return FALSE. Warning This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE. Please read the section on Booleans for more information. Use the === operator for testing the return value of this function. SEE ALSO
strpos(3), iconv_strrpos(3), mb_strpos(3). PHP Documentation Group ICONV_STRPOS(3)
All times are GMT -4. The time now is 09:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy