{"id":5945,"date":"2025-09-01T07:00:00","date_gmt":"2025-09-01T04:00:00","guid":{"rendered":"https:\/\/www.dataplatform.gr\/?p=5945"},"modified":"2025-09-01T11:23:33","modified_gmt":"2025-09-01T08:23:33","slug":"pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase","status":"publish","type":"post","link":"https:\/\/www.dataplatform.gr\/en\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/","title":{"rendered":"How to free up reserved space from datafiles \/ tempfiles of an Oracle database"},"content":{"rendered":"<p>In this article we will see a script with which we can easily free up space from datafiles and tempfiles where it is not used in Oracle databases. More specifically, we will reduce the size of the datafiles so that they are within the limit of <a href=\"https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/19\/cncpt\/logical-storage-structures.html#GUID-5050DCC5-DBBD-4B57-AB14-D83A480B9AAE\">High Water Mark (HWM)<\/a> everyone&#039;s.<\/p>\n\n\n\n<p>With this code we can free space from a specific tablespace or from the entire database. By executing it, we will create <strong>change commands<\/strong> with the parameter <strong>resize<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The code<\/h2>\n\n\n\n<p>Running the following code from a command window <strong>alter commands will be generated<\/strong> who will do it <strong>resize<\/strong>, as well as informing us about the total space that will be freed from the filesystem if these commands are executed. We can also define a <strong>threshold<\/strong> so that space is released from only a specific tablespace and only from as many datafiles as are freed above a certain space limit (free space threshold).<\/p>\n\n\n\n<p>For the example, it is set to generate alter statements only for datafiles that will be freed up more than 256mb of space and for those that belong to the tablespace. <code>USERS<\/code>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">set heading on;\nset linesize 300;\nset echo off;\ncolumn cmd format a300 word_wrapped\ncolumn value new_val block_size\nselect value from v$parameter where name = 'db_block_size';\n\n\n\n--generate commands\n\nselect 'alter database datafile '''||file_name||''' resize ' || ceil( (nvl(hwm,1)*&amp;&amp;block_size)\/1024\/1024 )  || 'm;' cmd\nfrom dba_data_files df\ninner join ( select file_id, max(block_id+blocks-1) hwm from dba_extents group by file_id ) de on df.file_id = de.file_id\nwhere 1=1\nand ceil( blocks*&amp;&amp;block_size\/1024\/1024) - ceil( (nvl(hwm,1)*&amp;&amp;block_size)\/1024\/1024 ) > 256 --free space threshold\nand tablespace_name = 'USERS'  --filter tablespace\n;\n     \n--generate tempfile commands\n\nselect 'alter database tempfile '''||file_name||''' resize ' || ceil( (nvl(hwm,1)*&amp;&amp;block_size)\/1024\/1024 )  || 'm;' cmd\nfrom dba_temp_files df\ninner join ( select file_id, max(block_id+blocks-1) hwm from dba_extents group by file_id ) de on df.file_id = de.file_id\nwhere 1=1\nand ceil( blocks*&amp;&amp;block_size\/1024\/1024) - ceil( (nvl(hwm,1)*&amp;&amp;block_size)\/1024\/1024 ) > 512 --free space threshold\n--and file_name like '%TEMPORARY_A%'  \nand tablespace_name = 'TEMPORARY'\n;\n\n--estimate reclaimed space\n\nselect \n      ('Space it ll be saved (MB): ' || sum(ceil( blocks*&amp;&amp;block_size\/1024\/1024) - ceil( (nvl(hwm,1)*&amp;&amp;block_size)\/1024\/1024 ))) space_save\nfrom dba_data_files df\ninner join ( select file_id, max(block_id+blocks-1) hwm from dba_extents group by file_id ) de on df.file_id = de.file_id\nwhere 1=1\nand ceil( blocks*&amp;&amp;block_size\/1024\/1024) - ceil( (nvl(hwm,1)*&amp;&amp;block_size)\/1024\/1024 ) > 256 --free space threshold\nand tablespace_name = 'USERS'  --filter tablespace\n;\n<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>Running the script will show us the block size, the alter commands and the total space it will free up. If we want to proceed with the resizing, we execute all the alter commands it has shown us:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>SQL> \n8192\n\nalter database datafile '\/oracle\/oradata\/users_44.DBF' resize 27158m;\nalter database datafile '\/oracle\/oradata\/users_74.DBF' resize 6094m;\nalter database datafile '\/oracle\/oradata\/users_58.DBF' resize 31390m;\nalter database datafile '\/oracle\/oradata\/users_59.DBF' resize 30227m;\nalter database datafile '\/oracle\/oradata\/users_60.DBF' resize 28979m;\nalter database datafile '\/oracle\/oradata\/users_75.DBF' resize 3465m;\nalter database datafile '\/oracle\/oradata\/users_68.DBF' resize 26756m;\nalter database datafile '\/oracle\/oradata\/users_61.DBF' resize 29126m;\nalter database datafile '\/oracle\/oradata\/users_63.DBF' resize 27440m;\nalter database datafile '\/oracle\/oradata\/users_40.DBF' resize 27479m;\nalter database datafile '\/oracle\/oradata\/users_70.DBF' resize 27351m;\nalter database datafile '\/oracle\/oradata\/users_62.DBF' resize 27587m;\nalter database datafile '\/oracle\/oradata\/users_67.DBF' resize 26682m;\n\n13 rows selected\n\nSpace it ll be saved (MB): 71751\n<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sources:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.oracle.com\/cd\/E18283_01\/server.112\/e17120\/dfiles003.htm\" target=\"_blank\" rel=\"noreferrer noopener\">Changing Datafile Size<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/19\/cncpt\/logical-storage-structures.html#GUID-5050DCC5-DBBD-4B57-AB14-D83A480B9AAE\" target=\"_blank\" rel=\"noreferrer noopener\">Segment Space and the High Water Mark<\/a><\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>In this article we will see a script with which we can easily free up space from datafiles and tempfiles where it is not used in Oracle databases. More specifically, we will reduce the size of the datafiles so that they are at the limit of the High Water Mark (HWM) of each one. With this code we can [\u2026]<\/p>","protected":false},"author":1,"featured_media":704,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11,16],"tags":[29,174,5,48,30],"class_list":["post-5945","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-oracle-db","tag-databases","tag-high-water-mark-hwm","tag-oracle-database","tag-performance_tuning","tag-rdbms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle - DataPlatform.gr<\/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.dataplatform.gr\/en\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle - DataPlatform.gr\" \/>\n<meta property=\"og:description\" content=\"\u03a3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03b8\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03ad\u03bd\u03b1 script \u03bc\u03b5 \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03ad\u03c5\u03ba\u03bf\u03bb\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c3\u03bc\u03b5\u03cd\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc \u03c4\u03b1 datafiles \u03ba\u03b1\u03b9 tempfiles \u03cc\u03c0\u03bf\u03c5 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b4\u03b5\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle. \u03a0\u03b9\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03b8\u03b1 \u03bc\u03b5\u03b9\u03ce\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c4\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c4\u03c9\u03bd datafiles \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 High Water Mark (HWM) \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b8\u03b5\u03bd\u03cc\u03c2. \u039c\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b1\u03c5\u03c4\u03cc \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dataplatform.gr\/en\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/\" \/>\n<meta property=\"og:site_name\" content=\"DataPlatform.gr\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dataplatform.gr\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-01T04:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-01T08:23:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Stratos Matzouranis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stratos Matzouranis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/\"},\"author\":{\"name\":\"Stratos Matzouranis\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\"},\"headline\":\"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \\\/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle\",\"datePublished\":\"2025-09-01T04:00:00+00:00\",\"dateModified\":\"2025-09-01T08:23:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/\"},\"wordCount\":53,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"keywords\":[\"Databases\",\"High Water Mark (HWM)\",\"Oracle Database\",\"Performance Tuning\",\"RDBMS\"],\"articleSection\":[\"Databases\",\"Oracle Database\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/\",\"name\":\"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \\\/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle - DataPlatform.gr\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"datePublished\":\"2025-09-01T04:00:00+00:00\",\"dateModified\":\"2025-09-01T08:23:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Databases\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \\\/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"name\":\"dataplatform.gr - Sky is not the limit!\",\"description\":\"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dataplatform.gr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\",\"name\":\"dataplatform.gr\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"width\":322,\"height\":139,\"caption\":\"dataplatform.gr\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dataplatform.gr\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dataplatform-gr\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\",\"name\":\"Stratos Matzouranis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"caption\":\"Stratos Matzouranis\"},\"sameAs\":[\"https:\\\/\\\/www.dataplatform.gr\"],\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/en\\\/author\\\/stratos-matzouranis\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle - DataPlatform.gr","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.dataplatform.gr\/en\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/","og_locale":"en_US","og_type":"article","og_title":"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle - DataPlatform.gr","og_description":"\u03a3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03b8\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03ad\u03bd\u03b1 script \u03bc\u03b5 \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03ad\u03c5\u03ba\u03bf\u03bb\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c3\u03bc\u03b5\u03cd\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc \u03c4\u03b1 datafiles \u03ba\u03b1\u03b9 tempfiles \u03cc\u03c0\u03bf\u03c5 \u03b1\u03c5\u03c4\u03cc\u03c2 \u03b4\u03b5\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle. \u03a0\u03b9\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03b8\u03b1 \u03bc\u03b5\u03b9\u03ce\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c4\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c4\u03c9\u03bd datafiles \u03ce\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 High Water Mark (HWM) \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b8\u03b5\u03bd\u03cc\u03c2. \u039c\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b1\u03c5\u03c4\u03cc \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 [&hellip;]","og_url":"https:\/\/www.dataplatform.gr\/en\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/","og_site_name":"DataPlatform.gr","article_publisher":"https:\/\/www.facebook.com\/dataplatform.gr\/","article_published_time":"2025-09-01T04:00:00+00:00","article_modified_time":"2025-09-01T08:23:33+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","type":"image\/png"}],"author":"Stratos Matzouranis","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stratos Matzouranis","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#article","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/"},"author":{"name":"Stratos Matzouranis","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf"},"headline":"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle","datePublished":"2025-09-01T04:00:00+00:00","dateModified":"2025-09-01T08:23:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/"},"wordCount":53,"commentCount":0,"publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","keywords":["Databases","High Water Mark (HWM)","Oracle Database","Performance Tuning","RDBMS"],"articleSection":["Databases","Oracle Database"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/","url":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/","name":"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle - DataPlatform.gr","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#primaryimage"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","datePublished":"2025-09-01T04:00:00+00:00","dateModified":"2025-09-01T08:23:33+00:00","breadcrumb":{"@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#primaryimage","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.dataplatform.gr\/pws-apeleutheronoume-desmeumeno-xoro-apo-datafiles-tempfiles-se-oracledatabase\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae","item":"https:\/\/www.dataplatform.gr\/"},{"@type":"ListItem","position":2,"name":"Databases","item":"https:\/\/www.dataplatform.gr\/category\/databases\/"},{"@type":"ListItem","position":3,"name":"\u03a0\u03ce\u03c2 \u03b1\u03c0\u03b5\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03c3\u03bc\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03b1\u03c0\u03cc datafiles \/ tempfiles \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b7\u03c2 Oracle"}]},{"@type":"WebSite","@id":"https:\/\/www.dataplatform.gr\/#website","url":"https:\/\/www.dataplatform.gr\/","name":"dataplatform.gr - Sky is not the limit!","description":"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.","publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dataplatform.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dataplatform.gr\/#organization","name":"dataplatform.gr","url":"https:\/\/www.dataplatform.gr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","width":322,"height":139,"caption":"dataplatform.gr"},"image":{"@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dataplatform.gr\/","https:\/\/www.linkedin.com\/company\/dataplatform-gr\/"]},{"@type":"Person","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf","name":"Stratos Matzouranis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","caption":"Stratos Matzouranis"},"sameAs":["https:\/\/www.dataplatform.gr"],"url":"https:\/\/www.dataplatform.gr\/en\/author\/stratos-matzouranis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/5945","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/comments?post=5945"}],"version-history":[{"count":1,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/5945\/revisions"}],"predecessor-version":[{"id":5946,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/5945\/revisions\/5946"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media\/704"}],"wp:attachment":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media?parent=5945"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/categories?post=5945"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/tags?post=5945"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}