Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Number of Oracle Connections

Re: Number of Oracle Connections

From: David Pomphrey <High.Flight_at_btinternet.com>
Date: Sun, 03 Sep 2000 09:23:30 +0100
Message-ID: <39B20A82.34F7@btinternet.com>

Select Count(*)
FROM v$session;

is much faster because you don't have to wait for the entire contents of the v$session dynamic performance view to be spooled to your screen.

This can take a long time, especially if you are e.g. administering over a slow WAN link and or have hundereds of sessions.

D.P. Received on Sun Sep 03 2000 - 03:23:30 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US