{"id":12362,"date":"2019-04-24T17:23:17","date_gmt":"2019-04-24T15:23:17","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/"},"modified":"2019-04-24T17:23:17","modified_gmt":"2019-04-24T15:23:17","slug":"direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/","title":{"rendered":"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart"},"content":{"rendered":"<p>A customer had an interesting case recently. Since Oracle 12.2. he got archiver stuck situations after a shutdown abort and restart. I reproduced the issue and it is caused by direct NFS since running ODM 4.0 (i.e. since 12.2.). The issue also reproduced on 18.5. When direct NFS is enabled then the archiver-process writes to a file with a preceding dot in its name. E.g.<\/p>\n<p><code><br \/>\n.arch_1_90_985274359.arc<br \/>\n<\/code><\/p>\n<p>When the file has been fully copied from the online redolog, then it is renamed to not contain the preceding dot anymore. I.e. using the previous example:<\/p>\n<p><code><br \/>\narch_1_90_985274359.arc<br \/>\n<\/code><\/p>\n<p>When I do a &#8220;shutdown abort&#8221; while the archiver is in process of writing to the archive-file (with the leading dot in its name) and I do restart the database then Oracle is not able to cope with that file. I.e. in the alert-log I do get the following errors:<\/p>\n<p><code><br \/>\n2019-04-17T10:22:33.190330+02:00<br \/>\nARC0 (PID:12598): Unable to create archive log file '\/arch_backup\/gen183\/archivelog\/arch_1_90_985274359.arc'<br \/>\n2019-04-17T10:22:33.253476+02:00<br \/>\nErrors in file \/u01\/app\/oracle\/diag\/rdbms\/gen183\/gen183\/trace\/gen183_arc0_12598.trc:<br \/>\nORA-19504: failed to create file \"\/arch_backup\/gen183\/archivelog\/arch_1_90_985274359.arc\"<br \/>\nORA-17502: ksfdcre:8 Failed to create file \/arch_backup\/gen183\/archivelog\/arch_1_90_985274359.arc<br \/>\nORA-17500: ODM err:File exists<br \/>\n2019-04-17T10:22:33.254078+02:00<br \/>\nARC0 (PID:12598): Error 19504 Creating archive log file to '\/arch_backup\/gen183\/archivelog\/arch_1_90_985274359.arc'<br \/>\nARC0 (PID:12598): Stuck archiver: inactive mandatory LAD:1<br \/>\nARC0 (PID:12598): Stuck archiver condition declared<br \/>\n<\/code><\/p>\n<p>The DB continues to operate normal until it has to overwrite the online redologfile, which has not been fully archived yet. At that point the archiver becomes stuck and modifications on the DB are no longer possible.<\/p>\n<p>When I remove the incomplete archive-file then the DB continues to operate normally:<\/p>\n<p><code><br \/>\nrm .arch_1_90_985274359.arc<br \/>\n<\/code><\/p>\n<p>Using a 12.1-Database with ODM 3.0 I didn&#8217;t see that behavior. I.e. I could also see an archived redologfile with a preceding dot in its name, but when I shutdown abort and restart then Oracle removed the file itself and there was no archiver problem.<\/p>\n<p>Testcase:<\/p>\n<p>1.) make sure you have direct NFS enabled<\/p>\n<p><code><br \/>\ncd $ORACLE_HOME\/rdbms\/lib<br \/>\nmake -f ins_rdbms.mk dnfs_on<br \/>\n<\/code><\/p>\n<p>2.) configure a mandatory log archive destination pointing to a NFS-mounted filesystem. E.g.<\/p>\n<p><code><br \/>\n[root]# mount -t nfs -o rw,bg,hard,rsize=32768,wsize=32768,vers=3,nointr,timeo=600,proto=tcp,suid,nolock,noac nfs_server:\/arch_backup \/arch_backup<br \/>\n&nbsp;<br \/>\nSQL&gt; alter system set log_archive_dest_1='location=\/arch_backup\/gen183\/archivelog mandatory reopen=30';<br \/>\n<\/code><\/p>\n<p>3.) Produce some DML-load on the DB<\/p>\n<p>I created 2 tables t3 and t4 as a copy of all_objects with approx 600&#8217;000 rows:<\/p>\n<p><code><br \/>\nSQL&gt; create table t3 as select * from all_objects;<br \/>\nSQL&gt; insert into t3 select * from t3;<br \/>\nSQL&gt; -- repeat above insert until you have 600K rows in t3<br \/>\nSQL&gt; commit;<br \/>\nSQL&gt; create table t4 as select * from t3;<br \/>\n<\/code><\/p>\n<p>Run the following PLSQL-block to produce redo:<\/p>\n<p><code><br \/>\nbegin<br \/>\n   for i in 1..20 loop<br \/>\n      delete from t3;<br \/>\n      commit;<br \/>\n      insert into t3 select * from t4;<br \/>\n      commit;<br \/>\n   end loop;<br \/>\nend;<br \/>\n\/<br \/>\n<\/code><\/p>\n<p>4.) While the PLSQL-block of 3.) is running check the archive-files produced in your log archive destination<\/p>\n<p><code><br \/>\nls -ltra \/arch_backup\/gen183\/archivelog<br \/>\n<\/code><\/p>\n<p>Once you see a file created with a preceding dot in its name then shutdown abort the database:<\/p>\n<p><code><br \/>\noracle@18cR0:\/arch_backup\/gen183\/archivelog\/ [gen183] ls -ltra \/arch_backup\/gen183\/archivelog<br \/>\ntotal 2308988<br \/>\ndrwxr-xr-x. 3 oracle oinstall         23 Apr 17 10:13 ..<br \/>\n-r--r-----. 1 oracle oinstall 2136861184 Apr 24 18:24 arch_1_104_985274359.arc<br \/>\ndrwxr-xr-x. 2 oracle oinstall         69 Apr 24 18:59 .<br \/>\n-rw-r-----. 1 oracle oinstall 2090587648 Apr 24 18:59 .arch_1_105_985274359.arc<br \/>\n&nbsp;<br \/>\nSQL&gt; shutdown abort<br \/>\n<\/code><\/p>\n<p>5.) If the file with the preceding dot is still there after the shutdown then you reproduced the issue. Just startup the DB and &#8220;tail -f&#8221; your alert-log-file.<\/p>\n<p><code><br \/>\noracle@18cR0:\/arch_backup\/gen183\/archivelog\/ [gen183] cdal<br \/>\noracle@18cR0:\/u01\/app\/oracle\/diag\/rdbms\/gen183\/gen183\/trace\/ [gen183] tail -f alert_gen183.log<br \/>\n...<br \/>\n2019-04-24T19:01:24.775991+02:00<br \/>\nOracle instance running with ODM: Oracle Direct NFS ODM Library Version 4.0<br \/>\n...<br \/>\n2019-04-24T19:01:43.770196+02:00<br \/>\nARC0 (PID:8876): Unable to create archive log file '\/arch_backup\/gen183\/archivelog\/arch_1_105_985274359.arc'<br \/>\n2019-04-24T19:01:43.790546+02:00<br \/>\nErrors in file \/u01\/app\/oracle\/diag\/rdbms\/gen183\/gen183\/trace\/gen183_arc0_8876.trc:<br \/>\nORA-19504: failed to create file \"\/arch_backup\/gen183\/archivelog\/arch_1_105_985274359.arc\"<br \/>\nORA-17502: ksfdcre:8 Failed to create file \/arch_backup\/gen183\/archivelog\/arch_1_105_985274359.arc<br \/>\nORA-17500: ODM err:File exists<br \/>\nARC0 (PID:8876): Error 19504 Creating archive log file to '\/arch_backup\/gen183\/archivelog\/arch_1_105_985274359.arc'<br \/>\nARC0 (PID:8876): Stuck archiver: inactive mandatory LAD:1<br \/>\nARC0 (PID:8876): Stuck archiver condition declared<br \/>\n...<br \/>\n<\/code><\/p>\n<p>This is a serious problem, because it may cause an archiver stuck problem after a crash. I opened a Service Request at Oracle. The SR has been assigned to the ODM-team now. Once I get a resolution I&#8217;ll update this Blog.<\/p>\n<p>UPDATE 14-May-2019:<br \/>\nOracle Support updated the SR that the issue is caused by internal bug 27044169. A patch for Linux x86-64 is currently available for<br \/>\n12.2.0.1.190115 DBJAN2019RU<br \/>\n12.2.0.1.190416 DBAPR2019RU<br \/>\n12.2.0.1.181016 DBOCT2018RU<br \/>\n12.2.0.1.170814 DBRU<br \/>\n12.2.0.1.0<\/p>\n<p>See also MOS Note &#8220;The instance hangs in RAC environment with archiver issues ORA-19504,ORA-17502,ORA-17500 (Doc ID 2378546.1)&#8221;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A customer had an interesting case recently. Since Oracle 12.2. he got archiver stuck situations after a shutdown abort and restart. I reproduced the issue and it is caused by direct NFS since running ODM 4.0 (i.e. since 12.2.). The issue also reproduced on 18.5. When direct NFS is enabled then the archiver-process writes to [&hellip;]<\/p>\n","protected":false},"author":35,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,198,59],"tags":[1604,1605,1606,1607],"type_dbi":[],"class_list":["post-12362","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","category-database-management","category-oracle","tag-archiver-stuck","tag-direct-nfs","tag-odm","tag-odm-4-0"],"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>Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart - 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\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart\" \/>\n<meta property=\"og:description\" content=\"A customer had an interesting case recently. Since Oracle 12.2. he got archiver stuck situations after a shutdown abort and restart. I reproduced the issue and it is caused by direct NFS since running ODM 4.0 (i.e. since 12.2.). The issue also reproduced on 18.5. When direct NFS is enabled then the archiver-process writes to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-24T15:23:17+00:00\" \/>\n<meta name=\"author\" content=\"Clemens Bleile\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ifgtxD2SrQ8r!YuXj\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Clemens Bleile\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 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\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\"},\"author\":{\"name\":\"Clemens Bleile\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da\"},\"headline\":\"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart\",\"datePublished\":\"2019-04-24T15:23:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\"},\"wordCount\":452,\"commentCount\":0,\"keywords\":[\"archiver stuck\",\"direct nfs\",\"ODM\",\"ODM 4.0\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"Database management\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\",\"name\":\"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2019-04-24T15:23:17+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart\"}]},{\"@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\/0ac04011f60f2e93c115358d0789c2da\",\"name\":\"Clemens Bleile\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g\",\"caption\":\"Clemens Bleile\"},\"description\":\"Clemens Bleile has more than 30 years of IT experience, thirteen in Oracle Support and fifteen in Oracle Consulting. He is specialized in Oracle Database Performance Tuning (SQL Tuning, DB Tuning) and developing an Oracle DB IT architecture (highly available, low-maintenance, cost efficient storage of data). He is an expert in problem analysis and resolution. Prior to joining dbi services, Clemens Bleile was Manager of the EMEA Database Performance team at the Oracle Global Customer Support Services. Clemens Bleile is Oracle Certified Professional 11g, 12c and Oracle Certified Expert for Performance Management and Tuning and holds a Master Degree, Business Information Systems from the Fachhochschule Furtwangen, Germany.\",\"sameAs\":[\"https:\/\/www.dbi-services.com\",\"https:\/\/x.com\/ifgtxD2SrQ8r!YuXj\"],\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/clemens-bleile\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart - 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\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/","og_locale":"en_US","og_type":"article","og_title":"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart","og_description":"A customer had an interesting case recently. Since Oracle 12.2. he got archiver stuck situations after a shutdown abort and restart. I reproduced the issue and it is caused by direct NFS since running ODM 4.0 (i.e. since 12.2.). The issue also reproduced on 18.5. When direct NFS is enabled then the archiver-process writes to [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/","og_site_name":"dbi Blog","article_published_time":"2019-04-24T15:23:17+00:00","author":"Clemens Bleile","twitter_card":"summary_large_image","twitter_creator":"@ifgtxD2SrQ8r!YuXj","twitter_misc":{"Written by":"Clemens Bleile","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/"},"author":{"name":"Clemens Bleile","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da"},"headline":"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart","datePublished":"2019-04-24T15:23:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/"},"wordCount":452,"commentCount":0,"keywords":["archiver stuck","direct nfs","ODM","ODM 4.0"],"articleSection":["Database Administration &amp; Monitoring","Database management","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/","url":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/","name":"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2019-04-24T15:23:17+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/0ac04011f60f2e93c115358d0789c2da"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/direct-nfs-odm-4-0-in-12-2-archiver-stuck-situation-after-a-shutdown-abort-and-restart\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Direct NFS, ODM 4.0 in 12.2: archiver stuck situation after a shutdown abort and restart"}]},{"@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\/0ac04011f60f2e93c115358d0789c2da","name":"Clemens Bleile","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1f596609fc67cb28ed714e7bccc81ed4cd73b8582a8148a490c77daeb2fde21a?s=96&d=mm&r=g","caption":"Clemens Bleile"},"description":"Clemens Bleile has more than 30 years of IT experience, thirteen in Oracle Support and fifteen in Oracle Consulting. He is specialized in Oracle Database Performance Tuning (SQL Tuning, DB Tuning) and developing an Oracle DB IT architecture (highly available, low-maintenance, cost efficient storage of data). He is an expert in problem analysis and resolution. Prior to joining dbi services, Clemens Bleile was Manager of the EMEA Database Performance team at the Oracle Global Customer Support Services. Clemens Bleile is Oracle Certified Professional 11g, 12c and Oracle Certified Expert for Performance Management and Tuning and holds a Master Degree, Business Information Systems from the Fachhochschule Furtwangen, Germany.","sameAs":["https:\/\/www.dbi-services.com","https:\/\/x.com\/ifgtxD2SrQ8r!YuXj"],"url":"https:\/\/www.dbi-services.com\/blog\/author\/clemens-bleile\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/12362","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\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=12362"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/12362\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=12362"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=12362"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=12362"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=12362"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}