1753928 Members
8662 Online
108810 Solutions
New Discussion юеВ

ulimit -a

 
Remote Systems Support
Occasional Advisor

ulimit -a

As the oracle users:
/home/oracle$ulimit -a
ksh: ulimit: bad option(s)

/home/oracle$ulimit
4194303

Thanks.
testing is for wimps.....
4 REPLIES 4
Patrick Wallek
Honored Contributor

Re: ulimit -a

'-a' is not a valid option for the ulimit command in Korn shell (ksh). The '-a' option to ulimit only works in the POSIX (sh) shell.
Jeff Schussele
Honored Contributor

Re: ulimit -a

Hi,

Sorry, I should have mentioned that.
Switch to the POSIX shell by just running
sh
and then try the ulimit -a. Switching shells will have no affect on the actual limits.
And since POSIX shell is a superset of the korn shell, there's no reason why you shouldn't run POSIX shell for the oracle user anyway.

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Remote Systems Support
Occasional Advisor

Re: ulimit -a

Thanks.

I posted posix ulimit output in the original post.

testing is for wimps.....
T G Manikandan
Honored Contributor

Re: ulimit -a

To do that just do a

$/usr/bin/sh
$ulimit -a

$ulimit -aS
$ulimit -aH

REvert