RE: Some of you may find this useful

2003-01-13 Thread April Wells

Trade you users, Rachel... we still have one that thinks that silly 1000
column limit is something that I made up to make her life difficult.

April Wells
Oracle DBA 
Great spirits have always encountered violent opposition from mediocre minds
-- Albert Einstein



-Original Message-
Sent: Sunday, January 12, 2003 1:09 PM
To: Multiple recipients of list ORACLE-L


Stephane you have WAY too much free time :)

seriously, I let you guys muck around the internals and I learn from
your postings. Me, I'm busy enough just trying to keep my developers
from designing tables without thought to how Oracle handles things.





The information contained in this communication,
including attachments, is strictly confidential
and for the intended use of the addressee only;
it may also contain proprietary, price sensitive,
or legally privileged information. Notice is
hereby given that any disclosure, distribution, 
dissemination, use, or copying of the information 
by anyone other than the intended recipient is 
strictly prohibited and may be illegal. If you 
have received this communication in error, please
notify the sender immediately by reply e-mail, delete
this communication, and destroy all copies. 


Corporate Systems, Inc. has taken reasonable precautions 
to ensure that any attachment to this e-mail has been 
swept for viruses. We specifically disclaim all liability 
and will accept no responsibility for any damage sustained 
as a result of software viruses and advise you to carry out 
your own virus checks before opening any attachment.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: April Wells
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-12 Thread Naveen Nahata
Thanx a lot for a very comprehensive answer.

More than the result, I learnt the method. thanx a lot

Regards
Naveen

-Original Message-
Sent: Sunday, January 12, 2003 9:04 PM
To: Multiple recipients of list ORACLE-L


Naveen Nahata wrote:
> 
> And how does one find out more information about such cryptic, undocumented
> tables??
> 
> experience? R&D? be in company of more experienced people?
> 
> wat else?
> 
> Regards
> Naveen
> 

Doc which should not have left Oracle? In practice, the meaning of names
you cannot guess but by grabbing information which leaks from Oracle.
But the really useful stuff you get by trial and error. Call it R&D if
you want, but I have a higher opinion of R&D. Typically, if you query
V$FIXED_VIEW_DEFINITION you can get, by checking how GV$ views are
defined, a good number of relationships between (G)V$ and X$ views. It
can help document say around 40% of all the X$ columns. This
unfortunately lets out in the cold a good number of X$ which are listed
in V$FIXED_TABLE without seemingly being used anywhere. Just to tell you
about X$KGLRD I have for some time being looking for how to relate
commands of type 47 (PL/SQL stuff) which appear in V$SQL and V$SQLAREA
to the regular SELECTs, INSERTs, UPDATEs, DELETEs they perform and which
_also_ appear in the stats - for one thing, in order to interpret
figures correctly, and also in order to be able to spot rotten
algorithms, which I see as the next frontier in terms of SQL tuning.
When you check V$FIXED_VIEW_DEFINITION you notice that V$SQL, V$SQLTEXT
and family revolve around mostly X$KGL views - X$KGLOB, X$KGLNA and the
like. I have therefore queried V$FIXED_TABLE for all X$KGL tables and
described them. VARCHAR columns are rare enough for my eye to have been
caught immediately by X$KGLRD (unreferenced by any V$), hence my post.
Continuing my work afterwards, I have turned my attention to RAW columns
and found that (kglrdhdl, kglnadhv) in this view were indeed the
(address, hash_value) of the statement (I usually generate brute force
joins on the RAW columns and see what returns something). Which means
a) that you can get the full text from V$SQLTEXT when it is longer than
512 characters
b) that when you spot a really ugly query in V$SQL, or a query which is
executed an insane number of times, you can work out from X$KGLRD which
procedure(s) call(s) it, which is not always easy otherwise (bar the
LIKE of death on DBA_SOURCE, which will not work if say the query is
dynamically built) - moreover it may also work with wrapped procedures.
  
My aim, remember, was to relate a PL/SQL block to the statements it
issues, so X$KGLRD is not the final answer. But I am still working on it
and closing in ... X$KGLDP seems promising ...
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroult
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Naveen Nahata
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Re: Some of you may find this useful

2003-01-12 Thread Anjo Kolk

Precise Indepth for Oracle relates SQL statements to PL/SQL procedures
without quering any X$ tables. So may you should buy that, but that may
not be an option for you ;-)

Anjo.


Stephane Faroult wrote:
.
> 
> My aim, remember, was to relate a PL/SQL block to the statements it
> issues, so X$KGLRD is not the final answer. But I am still working on it
> and closing in ... X$KGLDP seems promising ...
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Stephane Faroult
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Anjo Kolk
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Re: Some of you may find this useful

2003-01-12 Thread Rachel Carmichael
Stephane you have WAY too much free time :)

seriously, I let you guys muck around the internals and I learn from
your postings. Me, I'm busy enough just trying to keep my developers
from designing tables without thought to how Oracle handles things.


--- Stephane Faroult <[EMAIL PROTECTED]> wrote:
> Naveen Nahata wrote:
> > 
> > And how does one find out more information about such cryptic,
> undocumented
> > tables??
> > 
> > experience? R&D? be in company of more experienced people?
> > 
> > wat else?
> > 
> > Regards
> > Naveen
> > 
> 
> Doc which should not have left Oracle? In practice, the meaning of
> names
> you cannot guess but by grabbing information which leaks from Oracle.
> But the really useful stuff you get by trial and error. Call it R&D
> if
> you want, but I have a higher opinion of R&D. Typically, if you query
> V$FIXED_VIEW_DEFINITION you can get, by checking how GV$ views are
> defined, a good number of relationships between (G)V$ and X$ views.
> It
> can help document say around 40% of all the X$ columns. This
> unfortunately lets out in the cold a good number of X$ which are
> listed
> in V$FIXED_TABLE without seemingly being used anywhere. Just to tell
> you
> about X$KGLRD I have for some time being looking for how to relate
> commands of type 47 (PL/SQL stuff) which appear in V$SQL and
> V$SQLAREA
> to the regular SELECTs, INSERTs, UPDATEs, DELETEs they perform and
> which
> _also_ appear in the stats - for one thing, in order to interpret
> figures correctly, and also in order to be able to spot rotten
> algorithms, which I see as the next frontier in terms of SQL tuning.
> When you check V$FIXED_VIEW_DEFINITION you notice that V$SQL,
> V$SQLTEXT
> and family revolve around mostly X$KGL views - X$KGLOB, X$KGLNA and
> the
> like. I have therefore queried V$FIXED_TABLE for all X$KGL tables and
> described them. VARCHAR columns are rare enough for my eye to have
> been
> caught immediately by X$KGLRD (unreferenced by any V$), hence my
> post.
> Continuing my work afterwards, I have turned my attention to RAW
> columns
> and found that (kglrdhdl, kglnadhv) in this view were indeed the
> (address, hash_value) of the statement (I usually generate brute
> force
> joins on the RAW columns and see what returns something). Which means
> a) that you can get the full text from V$SQLTEXT when it is longer
> than
> 512 characters
> b) that when you spot a really ugly query in V$SQL, or a query which
> is
> executed an insane number of times, you can work out from X$KGLRD
> which
> procedure(s) call(s) it, which is not always easy otherwise (bar the
> LIKE of death on DBA_SOURCE, which will not work if say the query is
> dynamically built) - moreover it may also work with wrapped
> procedures.
>   
> My aim, remember, was to relate a PL/SQL block to the statements it
> issues, so X$KGLRD is not the final answer. But I am still working on
> it
> and closing in ... X$KGLDP seems promising ...
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Stephane Faroult
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rachel Carmichael
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Re: Some of you may find this useful

2003-01-12 Thread Stephane Faroult
Naveen Nahata wrote:
> 
> And how does one find out more information about such cryptic, undocumented
> tables??
> 
> experience? R&D? be in company of more experienced people?
> 
> wat else?
> 
> Regards
> Naveen
> 

Doc which should not have left Oracle? In practice, the meaning of names
you cannot guess but by grabbing information which leaks from Oracle.
But the really useful stuff you get by trial and error. Call it R&D if
you want, but I have a higher opinion of R&D. Typically, if you query
V$FIXED_VIEW_DEFINITION you can get, by checking how GV$ views are
defined, a good number of relationships between (G)V$ and X$ views. It
can help document say around 40% of all the X$ columns. This
unfortunately lets out in the cold a good number of X$ which are listed
in V$FIXED_TABLE without seemingly being used anywhere. Just to tell you
about X$KGLRD I have for some time being looking for how to relate
commands of type 47 (PL/SQL stuff) which appear in V$SQL and V$SQLAREA
to the regular SELECTs, INSERTs, UPDATEs, DELETEs they perform and which
_also_ appear in the stats - for one thing, in order to interpret
figures correctly, and also in order to be able to spot rotten
algorithms, which I see as the next frontier in terms of SQL tuning.
When you check V$FIXED_VIEW_DEFINITION you notice that V$SQL, V$SQLTEXT
and family revolve around mostly X$KGL views - X$KGLOB, X$KGLNA and the
like. I have therefore queried V$FIXED_TABLE for all X$KGL tables and
described them. VARCHAR columns are rare enough for my eye to have been
caught immediately by X$KGLRD (unreferenced by any V$), hence my post.
Continuing my work afterwards, I have turned my attention to RAW columns
and found that (kglrdhdl, kglnadhv) in this view were indeed the
(address, hash_value) of the statement (I usually generate brute force
joins on the RAW columns and see what returns something). Which means
a) that you can get the full text from V$SQLTEXT when it is longer than
512 characters
b) that when you spot a really ugly query in V$SQL, or a query which is
executed an insane number of times, you can work out from X$KGLRD which
procedure(s) call(s) it, which is not always easy otherwise (bar the
LIKE of death on DBA_SOURCE, which will not work if say the query is
dynamically built) - moreover it may also work with wrapped procedures.
  
My aim, remember, was to relate a PL/SQL block to the statements it
issues, so X$KGLRD is not the final answer. But I am still working on it
and closing in ... X$KGLDP seems promising ...
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroult
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-12 Thread Andrey Bronfin
THANKS ;-)

-Original Message-
Sent: ? 12 ? 2003 13:59
To: Multiple recipients of list ORACLE-L


Andrey Bronfin wrote:
> 
> And what does KGL stand for ?
> Thanks !

[K]ernel layer [G]eneric layer [L]ibrary cache manager. Feeling better
:-) ?
 
> -Original Message-
> Sent: ? 10 ? 2003 19:45
> To: Multiple recipients of list ORACLE-L
> 
> Read Only Dependencies in the KGL.
> 
> Best Regards,
> K Gopalakrishnan
> 
> 
> 
> -Original Message-
> Mike (NESL-IT)
> Sent: Friday, January 10, 2003 8:39 AM
> To: Multiple recipients of list ORACLE-L
> 
> Ron,
> that's a bit of a puzzle because it should have been available since 
> 7.3.2. Which user are you using to query it? Also, anyone, I know what 
> x$kglrd does but anyone have any idea what the RD in the table name 
> means? Read? Row? Data? Dependency?
> 
> I'm open to suggestions.
> 
> Regards,
> Mike Hately
> 
> -Original Message-
> Sent: 10 January 2003 15:50
> To: Multiple recipients of list ORACLE-L
> 
> Stephane,
>  My creativity has been stumulated, simulated, and mutated. What 
> version of Oracle are you using?  x$kglrd ...table or view does no 
> exist on 8.1.7 rel 3 Ron
> 
> >>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
> break on proc
> column "QUERY" format A40 word_wrapped
> select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM 
> "QUERY" from x$kglrd where KGLNAOWN != 'SYS' order by 1, kgldepno /
> 
> If it doesn't stimulate your creativity I can do nothing for you :-).
> 
> Regards,
> 
> Stephane Faroult
> Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroult
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Andrey Bronfin
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-12 Thread Naveen Nahata
And how does one find out more information about such cryptic, undocumented
tables??

experience? R&D? be in company of more experienced people?

wat else?

Regards
Naveen

-Original Message-
Sent: Sunday, January 12, 2003 5:29 PM
To: Multiple recipients of list ORACLE-L


Andrey Bronfin wrote:
> 
> And what does KGL stand for ?
> Thanks !

[K]ernel layer [G]eneric layer [L]ibrary cache manager. Feeling better
:-) ?
 
> -Original Message-
> Sent: ? 10 ? 2003 19:45
> To: Multiple recipients of list ORACLE-L
> 
> Read Only Dependencies in the KGL.
> 
> Best Regards,
> K Gopalakrishnan
> 
> 
> 
> -Original Message-
> Mike (NESL-IT)
> Sent: Friday, January 10, 2003 8:39 AM
> To: Multiple recipients of list ORACLE-L
> 
> Ron,
> that's a bit of a puzzle because it should have been available since 7.3.2.
> Which user are you using to query it? Also, anyone, I know what x$kglrd
does
> but anyone have any idea what the RD in the table name means? Read? Row?
> Data? Dependency?
> 
> I'm open to suggestions.
> 
> Regards,
> Mike Hately
> 
> -Original Message-
> Sent: 10 January 2003 15:50
> To: Multiple recipients of list ORACLE-L
> 
> Stephane,
>  My creativity has been stumulated, simulated, and mutated. What version of
> Oracle are you using?  x$kglrd ...table or view does no exist on 8.1.7 rel
3
> Ron
> 
> >>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
> break on proc
> column "QUERY" format A40 word_wrapped
> select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
> from x$kglrd where KGLNAOWN != 'SYS' order by 1, kgldepno /
> 
> If it doesn't stimulate your creativity I can do nothing for you :-).
> 
> Regards,
> 
> Stephane Faroult
> Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroult
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Naveen Nahata
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Re: Some of you may find this useful

2003-01-12 Thread Stephane Faroult
Andrey Bronfin wrote:
> 
> And what does KGL stand for ?
> Thanks !

[K]ernel layer [G]eneric layer [L]ibrary cache manager. Feeling better
:-) ?
 
> -Original Message-
> Sent: ? 10 ? 2003 19:45
> To: Multiple recipients of list ORACLE-L
> 
> Read Only Dependencies in the KGL.
> 
> Best Regards,
> K Gopalakrishnan
> 
> 
> 
> -Original Message-
> Mike (NESL-IT)
> Sent: Friday, January 10, 2003 8:39 AM
> To: Multiple recipients of list ORACLE-L
> 
> Ron,
> that's a bit of a puzzle because it should have been available since 7.3.2.
> Which user are you using to query it? Also, anyone, I know what x$kglrd does
> but anyone have any idea what the RD in the table name means? Read? Row?
> Data? Dependency?
> 
> I'm open to suggestions.
> 
> Regards,
> Mike Hately
> 
> -Original Message-
> Sent: 10 January 2003 15:50
> To: Multiple recipients of list ORACLE-L
> 
> Stephane,
>  My creativity has been stumulated, simulated, and mutated. What version of
> Oracle are you using?  x$kglrd ...table or view does no exist on 8.1.7 rel 3
> Ron
> 
> >>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
> break on proc
> column "QUERY" format A40 word_wrapped
> select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
> from x$kglrd where KGLNAOWN != 'SYS' order by 1, kgldepno /
> 
> If it doesn't stimulate your creativity I can do nothing for you :-).
> 
> Regards,
> 
> Stephane Faroult
> Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroult
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-12 Thread Andrey Bronfin
And what does KGL stand for ?
Thanks !

-Original Message-
Sent: ? 10 ? 2003 19:45
To: Multiple recipients of list ORACLE-L


Read Only Dependencies in the KGL.


Best Regards,
K Gopalakrishnan

 


-Original Message-
Mike (NESL-IT)
Sent: Friday, January 10, 2003 8:39 AM
To: Multiple recipients of list ORACLE-L


Ron, 
that's a bit of a puzzle because it should have been available since 7.3.2.
Which user are you using to query it? Also, anyone, I know what x$kglrd does
but anyone have any idea what the RD in the table name means? Read? Row?
Data? Dependency?

I'm open to suggestions.

Regards,
Mike Hately

-Original Message-
Sent: 10 January 2003 15:50
To: Multiple recipients of list ORACLE-L


Stephane,
 My creativity has been stumulated, simulated, and mutated. What version of
Oracle are you using?  x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
from x$kglrd where KGLNAOWN != 'SYS' order by 1, kgldepno /

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Hately, Mike (NESL-IT)
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: K Gopalakrishnan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Andrey Bronfin
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Steve Rospo


It looks like all of the SQL executed from the named packages.

I found two references to the voodoo that is x$kglrd, both from the
venerable Steve Adams' ixora.com.au:

http://www.ixora.com.au/q+a/0110/31164749.htm
http://www.ixora.com.au/scripts/library.htm#package_sql_executions

S-




On Fri, 10 Jan 2003, Chris Stephens wrote:

>
> what is it that i am looking at after running this query??
>
>
> pardon the ignorance.
> chris
> -Original Message-
> Sent: Friday, January 10, 2003 9:20 AM
> To: Multiple recipients of list ORACLE-L
>
>
> That's pretty cool :)
> Thanks for sharing it, Stephane.
>
> - Kirti
>
> -Original Message-
> Sent: Friday, January 10, 2003 4:04 AM
> To: Multiple recipients of list ORACLE-L
>
>
> break on proc
> column "QUERY" format A40 word_wrapped
> select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
> from x$kglrd
> where KGLNAOWN != 'SYS'
> order by 1, kgldepno
> /
>
> If it doesn't stimulate your creativity I can do nothing for you :-).
>
> Regards,
>
> Stephane Faroult
> Oriole
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Stephane Faroul
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Deshpande, Kirti
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Steve Rospo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Kevin Lange
Not bad at all . but now I get to ask if there is a way to improve it
...

When running the query below, the following was returned :

INSERT INTO TEMP_TABLE (
FIELD_1, FIELD_2, FIELD3 )  VALUES (
:b1,:b2,:b3  )

What I would like to know is is there any way thru Oracle to obtain the
values for the bind variables that the query is using ??

Kevin

-Original Message-
Sent: Friday, January 10, 2003 10:19 AM
To: Multiple recipients of list ORACLE-L


Log on as SYS and run it.  I have it on my 8.1.7 DB.

Dave



-Original Message-
Sent: Friday, January 10, 2003 9:50 AM
To: Multiple recipients of list ORACLE-L


Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Farnsworth, Dave
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kevin Lange
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread K Gopalakrishnan
Read Only Dependencies in the KGL.


Best Regards,
K Gopalakrishnan

 


-Original Message-
Mike (NESL-IT)
Sent: Friday, January 10, 2003 8:39 AM
To: Multiple recipients of list ORACLE-L


Ron, 
that's a bit of a puzzle because it should have been available since 7.3.2.
Which user are you using to query it?
Also, anyone, I know what x$kglrd does but anyone have any idea what the RD
in the table name means? Read? Row? Data? Dependency?

I'm open to suggestions.

Regards,
Mike Hately

-Original Message-
Sent: 10 January 2003 15:50
To: Multiple recipients of list ORACLE-L


Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Hately, Mike (NESL-IT)
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: K Gopalakrishnan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Richard Ji
Thanks for sharing this.

Richard

-Original Message-
Sent: Friday, January 10, 2003 5:04 AM
To: Multiple recipients of list ORACLE-L


break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Richard Ji
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Hately, Mike (NESL-IT)
Ron, 
that's a bit of a puzzle because it should have been available since 7.3.2.
Which user are you using to query it?
Also, anyone, I know what x$kglrd does but anyone have any idea what the RD
in the table name means? Read? Row? Data? Dependency?

I'm open to suggestions.

Regards,
Mike Hately

-Original Message-
Sent: 10 January 2003 15:50
To: Multiple recipients of list ORACLE-L


Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Hately, Mike (NESL-IT)
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Charu Joshi
Stephane and other Gurus,

Apologies if you think I am a spoilsport..

I executed 3/4 PL/SQL blocks and ran the query after each one. Every time I
got the following output. I think 'REPOS' is the OEM repository owner.

Two questions:

1. Is this what Stephane wanted us to see?
2. If yes, what does that indicate? That some component of OEM runs the
procedure 'SMP_VDP' every time we execute a PL/SQL block? (This is total
guesswork, so I may be horribly off target.)

Regards,
Charu

PROCQUERY
--- 
REPOS.SMP_VDP   SELECT NUM_NODES   FROM
SMP_VDP_OMS_NUM_NODES  WHERE (OMS = :b1
)

LOCK TABLE SMP_VDG_GATEWAY_MAP IN
EXCLUSIVE MODE

LOCK TABLE SMP_VDP_NODE_OMS_MAP IN
EXCLUSIVE MODE

SELECT OMS,NUM_NODES   FROM
SMP_VDP_OMS_NUM_NODES  WHERE (OMS != :b1
)ORDER BY NUM_NODES DESC

UPDATE SMP_VDP_NODE_OMS_MAP SET OMS=:b1
WHERE (OMS = :b2 ) AND (ROWNUM <= :b3 )

UPDATE SMP_VDP_OMS_NUM_NODES SET
NUM_NODES=NUM_NODES - :b1  WHERE (OMS =
:b2 )

UPDATE SMP_VDP_OMS_NUM_NODES SET
NUM_NODES=NUM_NODES + :b1  WHERE (OMS =
:b2 )

INSERT INTO SMP_VDP_OMS_NUM_NODES VALUES
( :b1,:b2  )

UPDATE SMP_VDG_NODE_LIST SET
AGENTSTATE='UNK',PROCESSING= NULL  WHERE
NODENAME IN (SELECT NODE   FROM
SMP_VDP_NODE_OMS_MAP  WHERE OMS = :b1 )
AND (AGENTSTATE != 'BAD' )

UPDATE SMP_VDP_NODES SET
TIMESTAMP=SYSDATE WHERE NODE IN (SELECT
NODE   FROM SMP_VDP_NODE_INFO  WHERE
STATUS = 'Y' )

SELECT OMS,NUM_NODES   FROM
SMP_VDP_OMS_NUM_NODES  WHERE (OMS != :b1
)ORDER BY NUM_NODES

DELETE FROM SMP_VDP_OMS_NUM_NODES WHERE
(OMS = :b1 )

-Original Message-
Thomas F
Sent: Friday, January 10, 2003 4:49 PM
To: Multiple recipients of list ORACLE-L

Ron,

did you run it from the SYS account?  worked for me using 8.1.7.2

Tom Mercadante
Oracle Certified Professional

-Original Message-
Sent: Friday, January 10, 2003 10:50 AM
To: Multiple recipients of list ORACLE-L

Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORA

RE: Re: Some of you may find this useful

2003-01-10 Thread Stephane Faroult

>Stephane,
> My creativity has been stumulated, simulated, and
>mutated.
>What version of Oracle are you using?
> x$kglrd ...table or view does no exist on 8.1.7
>rel 3
>Ron

Ron,

  Was on 8.1.7.3 ... sorry to ask for the obvious, but have you connected as SYS or 
INTERNAL ?

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Chris Stephens
Title: RE: Some of you may find this useful






what is it that i am looking at after running this query??



pardon the ignorance.
chris
-Original Message-
From: Deshpande, Kirti [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 10, 2003 9:20 AM
To: Multiple recipients of list ORACLE-L
Subject: RE: Some of you may find this useful



That's pretty cool :) 
Thanks for sharing it, Stephane. 


- Kirti 


-Original Message-
Sent: Friday, January 10, 2003 4:04 AM
To: Multiple recipients of list ORACLE-L



break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/


If it doesn't stimulate your creativity I can do nothing for you :-).


Regards,


Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]


Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California    -- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Deshpande, Kirti
  INET: [EMAIL PROTECTED]


Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California    -- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).





RE: Some of you may find this useful

2003-01-10 Thread Farnsworth, Dave
Log on as SYS and run it.  I have it on my 8.1.7 DB.

Dave



-Original Message-
Sent: Friday, January 10, 2003 9:50 AM
To: Multiple recipients of list ORACLE-L


Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Farnsworth, Dave
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Mercadante, Thomas F
Ron,

did you run it from the SYS account?  worked for me using 8.1.7.2

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Friday, January 10, 2003 10:50 AM
To: Multiple recipients of list ORACLE-L


Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Mercadante, Thomas F
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Re: Some of you may find this useful

2003-01-10 Thread Ron Rogers
Stephane,
 My creativity has been stumulated, simulated, and mutated.
What version of Oracle are you using?
 x$kglrd ...table or view does no exist on 8.1.7 rel 3
Ron

>>> [EMAIL PROTECTED] 01/10/03 05:03AM >>>
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
"QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Rogers
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




RE: Some of you may find this useful

2003-01-10 Thread Deshpande, Kirti
That's pretty cool :) 
Thanks for sharing it, Stephane. 

- Kirti 

-Original Message-
Sent: Friday, January 10, 2003 4:04 AM
To: Multiple recipients of list ORACLE-L


break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Deshpande, Kirti
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Re: Some of you may find this useful

2003-01-10 Thread Rachel Carmichael
ooh lovely!  

I'm gonna have SUCH fun today, playing with this and the results of a
10046 trace :)


--- Stephane Faroult <[EMAIL PROTECTED]> wrote:
> break on proc
> column "QUERY" format A40 word_wrapped
> select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM
> "QUERY"
> from x$kglrd
> where KGLNAOWN != 'SYS'
> order by 1, kgldepno
> /
> 
> If it doesn't stimulate your creativity I can do nothing for you :-).
> 
> Regards,
> 
> Stephane Faroult
> Oriole
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Stephane Faroul
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rachel Carmichael
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




Some of you may find this useful

2003-01-10 Thread Stephane Faroult
break on proc
column "QUERY" format A40 word_wrapped
select substr(KGLNAOWN || '.' || KGLNACNM, 1, 35) proc, KGLNADNM "QUERY"
from x$kglrd
where KGLNAOWN != 'SYS'
order by 1, kgldepno
/

If it doesn't stimulate your creativity I can do nothing for you :-).

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).