How to determine an Oracle query without access to source code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:23:00Zhttp://stackoverflow.com/feeds/question/442634http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code1How to determine an Oracle query without access to source code?inferis2009-01-14T11:21:28Z2009-01-14T22:10:58Z
<p>We have a system with an Oracle backend to which we have access (though possibly not administrative access) and a front end to which we do not have the source code. The database is quite large and not easily understood - we have no documentation. I'm also not particularly knowledgable about Oracle in general.</p>
<p>One aspect of the front end queries the database for a particular set of data and displays it. We have a need to determine what query is being made so that we can replicate and automate it without the front end (e.g. by generating a csv file periodically).</p>
<p>What methods would you use to determine the SQL required to retrieve this set of data?</p>
<p>Currently I'm leaning towards the use of an EeePC, Wireshark and a hub (installing Wireshark on the client machines may not be possible), but I'm curious to hear any other ideas and whether anyone can think of any pitfalls with this particular approach.</p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/442648#4426487Answer by tuinstoel for How to determine an Oracle query without access to source code?tuinstoel2009-01-14T11:30:41Z2009-01-14T11:30:41Z<p>Start with querying Oracle system views like V$SQL, v$sqlarea and
v$sqltext. </p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/442852#4428522Answer by bortzmeyer for How to determine an Oracle query without access to source code?bortzmeyer2009-01-14T13:00:21Z2009-01-14T16:11:25Z<p><a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a> is indeed a good idea, it has Oracle support and nicely displays the whole conversation.</p>
<p>A packet sniffer like Wireshark is especially interesting if you don't have admin' access to the database server but you have access to the network (for instance because there is port mirroring on the Ethernet switch).</p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/442912#4429122Answer by zendar for How to determine an Oracle query without access to source code?zendar2009-01-14T13:24:14Z2009-01-14T13:24:14Z<p>Which version of Oracle? If it is 10+ and if you have administrative access (sysdba), then you can relatively easy find executed queries through Oracle enterprise manager. </p>
<p>For older versions, you'll need access to views that tuinstoel mentioned in his answer.</p>
<p>Same data you can get through <a href="http://www.quest.com/toad-for-oracle/" rel="nofollow">TOAD for oracle</a> which is quite capable piece of software, but expensive.</p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/443022#4430228Answer by Dave Costa for How to determine an Oracle query without access to source code?Dave Costa2009-01-14T13:53:56Z2009-01-14T13:59:26Z<p>Clearly there are many methods. The one that I find easiest is:</p>
<p>(1) Connect to the database as SYS or SYSTEM</p>
<p>(2) Query V$SESSION to identify the database session you are interested in.
Record the SID and SERIAL# values.</p>
<p>(3) Execute the following commands to activate tracing for the session:</p>
<pre><code>exec sys.dbms_system.set_bool_param_in_session( *sid*, *serial#*, 'timed_statistics', true )
exec sys.dbms_system.set_int_param_in_session( *sid*, *serial#*, 'max_dump_file_size', 2000000000 )
exec sys.dbms_system.set_ev( *sid*, *serial#*, 10046, 5, '' )
</code></pre>
<p>(4) Perform some actions in the client app</p>
<p>(5) Either terminate the database session (e.g. by closing the client) or deactivate tracing ( exec sys.dbms_system.set_ev( <em>sid</em>, <em>serial#</em>, 10046, 0, '' ) )</p>
<p>(6) Locate the udump folder on the database server. There will be a trace file for the database session showing the statements executed and the bind values used in each execution.</p>
<p>This method does not require any access to the client machine, which could be a benefit. It does require access to the database server, which may be problematic if you're not the DBA and they don't let you onto the machine. Also, identifying the proper session to trace can be difficult if you have many clients or if the client application opens more than one session.</p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/443579#4435791Answer by JosephStyons for How to determine an Oracle query without access to source code?JosephStyons2009-01-14T16:14:21Z2009-01-14T16:14:21Z<p>I have used these instructions successfully several times:
<a href="http://www.orafaq.com/wiki/SQL_Trace#Tracing_a_SQL_session" rel="nofollow">http://www.orafaq.com/wiki/SQL_Trace#Tracing_a_SQL_session</a></p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/444841#4448410Answer by WW for How to determine an Oracle query without access to source code?WW2009-01-14T21:50:42Z2009-01-14T21:50:42Z<p>A quick and dirty way to do this, if you can catch the SQL statement(s) in the act, is to run this in SQL*Plus:-</p>
<pre><code>set verify off lines 140 head on pagesize 300
column sql_text format a65
column username format a12
column osuser format a15
break on username on sid on osuser
select S.USERNAME, s.sid, s.osuser,sql_text
from v$sqltext_with_newlines t,V$SESSION s
where t.address =s.sql_address
and t.hash_value = s.sql_hash_value
order by s.sid,t.piece
/
</code></pre>
<p>You need access those v$ views for this to work. Generally that means connecting as system.</p>
http://stackoverflow.com/questions/442634/how-to-determine-an-oracle-query-without-access-to-source-code/444898#4448981Answer by Gary for How to determine an Oracle query without access to source code?Gary2009-01-14T22:10:58Z2009-01-14T22:10:58Z<p>"though possibly not administrative access". Someone should have administrative access, probably whoever is responsible for backups. At the very least, I expect you'd have a user with root/Administrator access to the machine on which the oracle database is running. Administrator should be able to login with a
"SQLPLUS / AS SYSDBA" syntax which will give full access (which can be quite dangerous). root could 'su' to the oracle user and do the same.</p>
<p>If you really can't get admin access then as an alternative to wireshark, if your front-end connects to the database through an Oracle client, look for the file sqlnet.ora. You can set trace_level_client, trace_file_client and trace_directory_client and get it to log the Oracle network traffic between the client and database server.</p>
<p>However it is possible that the client will call a stored procedure and retrieve the data as output parameters or a ref cursor, which means you may not see the query being executed through that mechanism. If so, you will need admin access to the db server, and trace as per Dave Costa's answer</p>