Sponsored Content
Operating Systems Linux Problem in accessing Oracle Database Server from Linux Machine Post 302914141 by Skrynesaver on Friday 22nd of August 2014 07:00:33 AM
Old 08-22-2014
Does tnsping return successfully every time or is there a similar failure there?
 

5 More Discussions You Might Find Interesting

1. IP Networking

Problem accessing network using Linux

Ok, here at work, we have Windows computers which login into a MS domain server. Some of us also have Linux boxes which get a ip address from the dhcp server. We can see other boxes and see the internet until about 1 week ago. Now, we still get a ip address but can't see anything within our... (3 Replies)
Discussion started by: natter
3 Replies

2. UNIX for Dummies Questions & Answers

oracle database on solaris and linux

what is the difference in running oracle database on solaris and linux operating system (3 Replies)
Discussion started by: ganga
3 Replies

3. IP Networking

Accessing a FTP Server hosted on Linux

We have set-up a FTP server on a Linux machine, which sits behind a firewall. Most users outside our firewall can access it, but one user in particular cannot. I assume it has something to do with their firewall rules. It appears that they can connect with no problem but the server does not grant... (1 Reply)
Discussion started by: Breen
1 Replies

4. AIX

Problem accessing Oracle Directory on AIX

What are we doing ? 1) We ftp a PDF file to Oracle Directory which is on AIX server, using Business Object Server. The ftp account we use is prmtftdv. The oracle directory is owned by "oracle" account on aix. The default file permission is 640. 2) We are trying to read the PDF file using oracle... (1 Reply)
Discussion started by: ssatyaranga
1 Replies

5. Shell Programming and Scripting

Problem in Connecting to Oracle Database using KornShell

Hello, I am very new to Scripting. I am having a Kornshell Script below for connecting to Oracle database. But getting an error while executing it. #!/bin/ksh ssh -X root@192.168.2.127 <perimuka> sleep 5 su - oracle sqlplus <mraghunandanan>/<peri123> <<eof Can anyone tell what is wrong... (3 Replies)
Discussion started by: mraghunandanan
3 Replies
explain_time_or_die(3)					     Library Functions Manual					    explain_time_or_die(3)

NAME
explain_time_or_die - get time in seconds and report errors SYNOPSIS
#include <libexplain/time.h> time_t explain_time_or_die(time_t *t); time_t explain_time_on_error(time_t *t); DESCRIPTION
The explain_time_or_die function is used to call the time(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_time(3) function, and then the process terminates by calling exit(EXIT_FAILURE). The explain_time_on_error function is used to call the time(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_time(3) function, but still returns to the caller. t The t, exactly as to be passed to the time(2) system call. RETURN VALUE
The explain_time_or_die function only returns on success, see time(2) for more information. On failure, prints an explanation and exits, it does not return. The explain_time_on_error function always returns the value return by the wrapped time(2) system call. EXAMPLE
The explain_time_or_die function is intended to be used in a fashion similar to the following example: time_t result = explain_time_or_die(t); SEE ALSO
time(2) get time in seconds explain_time(3) explain time(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2009 Peter Miller explain_time_or_die(3)
All times are GMT -4. The time now is 05:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy