{"id":9919,"date":"2017-08-20T20:20:38","date_gmt":"2017-08-20T18:20:38","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/"},"modified":"2017-08-20T20:20:38","modified_gmt":"2017-08-20T18:20:38","slug":"get-trace-file-from-server-to-client","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/","title":{"rendered":"Get trace file from server to client"},"content":{"rendered":"<h2>By Franck Pachot<\/h2>\n<p>.<br \/>\nThe old way to get a user dump trace file, for sql_trace (10046), Optimizer compilation trace (10053), lock trace (10704), Optimizer execution trace (10507),&#8230; is to go to the server trace directory. But if you don&#8217;t have access to the server (as in the &#9729;) the modern (12<em>c<\/em>R2) way is to select from V$DIAG_TRACE_FILE_CONTENTS. Before everybody is on 12.2 I&#8217;m sharing here a sqlplus script that I use for a long time to get the trace file to the client.<br \/>\n<!--more--><br \/>\nThis is a script to run with sqlplus passing as a parameter the name of the trace file you want to write to (because the original name on the server is not very meaningful). I close all cursors to get all info such as STAT lines. I get the trace file name from v$diag_info. If a directory exists I use it. If not I create one, named UDUMP, which I&#8217;ll remove at the end. Then the file is read by utl_file and spooled on client though dbms_output. At the end, I remove the trace file from the server.<\/p>\n<p>Here is the script &#8211; comments welcome.<\/p>\n<pre><code>set serveroutput on feedback off verify off termout off linesize 1024 trimspool on echo off\nspool &amp;1..trc\ndeclare\n fd utl_file.file_type;\n line varchar2(1024);\n l_tracename varchar2(512);\n l_directory_path all_directories.directory_path%TYPE;\n l_directory_name all_directories.directory_name%TYPE;\n l_directory_created boolean;\n procedure t (msg in varchar2) is begin dbms_output.put_line(msg); end;\nbegin\n \/* use old parameter _cached_open_cursors to close all open cursors *\/\n for r in (select 1 from v$session_cursor_cache where count&gt;0) loop\n  dbms_session.set_close_cached_open_cursors(true);\n  rollback;\n  commit;\n  dbms_session.set_close_cached_open_cursors(false);\n end loop;\n \/* get trace directory and trace file name *\/\n select value into l_directory_path from v$diag_info where name='Diag Trace';\n select substr(replace(value,l_directory_path,''),2) into l_tracename from v$diag_info where name='Default Trace File';\n \/* get directory name for it, or try to create it *\/\n l_directory_created:=false;\n begin\n  select directory_name into l_directory_name from all_directories where directory_path = l_directory_path and rownum=1;\n exception\n  when no_data_found then\n   begin\n    l_directory_name:='UDUMP';\n    execute immediate 'create directory '||l_directory_name||' as '''||l_directory_path||'''';\n    l_directory_created:=true;\n   exception when others then\n    raise_application_error(-20000,'You must CREATE DIRECTORY '||l_directory_name||' as ''' ||l_directory_path||'''; or be granted CREATE DIRECTORY.');\n   end;\n end;\n \/* opens the trace file *\/\n begin\n  fd:=utl_file.fopen(l_directory_name,l_tracename,'R');\n exception when others then\n    raise_application_error(-20001,'Impossible to open file: '||l_tracename||' in '||l_directory_name||' ( '||l_directory_path||' )');\n end;\n \/* read the trace file and prints it *\/\n begin\n  loop\n   begin\n    utl_file.get_line(fd,line);\n    dbms_output.put_line(line);\n   exception\n    when no_data_found then exit;\n    when others then\n     dbms_output.put_line('!!! error while reading file '||l_tracename||' in '||l_directory_name||' ( '||l_directory_path||' )');\n   end;\n  end loop;\n  \/* close and remove the file from the server *\/\n  utl_file.fclose(fd);\n  utl_file.fremove(l_directory_name,l_tracename);\n exception\n  when others then\n   raise_application_error(-20002,'Impossible to remove: '||l_tracename||' in '||l_directory_name||' ( '||l_directory_path||' )');\n end;\n begin\n  \/* drop directory if created *\/\n  if l_directory_created then execute immediate 'drop directory '||l_directory_name; end if;\n exception\n  when others then\n   raise_application_error(-20002,'Impossible to remove directory: '||l_directory_name||' ( '||l_directory_path||' )'||sqlerrm);\n end;\nend;\n\/\nspool off\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>By Franck Pachot . The old way to get a user dump trace file, for sql_trace (10046), Optimizer compilation trace (10053), lock trace (10704), Optimizer execution trace (10507),&#8230; is to go to the server trace directory. But if you don&#8217;t have access to the server (as in the &#9729;) the modern (12cR2) way is to [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[96],"type_dbi":[],"class_list":["post-9919","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","tag-oracle"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Get trace file from server to client - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get trace file from server to client\" \/>\n<meta property=\"og:description\" content=\"By Franck Pachot . The old way to get a user dump trace file, for sql_trace (10046), Optimizer compilation trace (10053), lock trace (10704), Optimizer execution trace (10507),&#8230; is to go to the server trace directory. But if you don&#8217;t have access to the server (as in the &#9729;) the modern (12cR2) way is to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-08-20T18:20:38+00:00\" \/>\n<meta name=\"author\" content=\"Oracle Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oracle Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Get trace file from server to client\",\"datePublished\":\"2017-08-20T18:20:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\"},\"wordCount\":201,\"commentCount\":0,\"keywords\":[\"Oracle\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\",\"name\":\"Get trace file from server to client - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-08-20T18:20:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get trace file from server to client\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Get trace file from server to client - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/","og_locale":"en_US","og_type":"article","og_title":"Get trace file from server to client","og_description":"By Franck Pachot . The old way to get a user dump trace file, for sql_trace (10046), Optimizer compilation trace (10053), lock trace (10704), Optimizer execution trace (10507),&#8230; is to go to the server trace directory. But if you don&#8217;t have access to the server (as in the &#9729;) the modern (12cR2) way is to [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/","og_site_name":"dbi Blog","article_published_time":"2017-08-20T18:20:38+00:00","author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Get trace file from server to client","datePublished":"2017-08-20T18:20:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/"},"wordCount":201,"commentCount":0,"keywords":["Oracle"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/","url":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/","name":"Get trace file from server to client - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-08-20T18:20:38+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/get-trace-file-from-server-to-client\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Get trace file from server to client"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9919","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=9919"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9919\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=9919"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=9919"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=9919"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=9919"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}