{"id":54532,"date":"2023-05-20T19:41:07","date_gmt":"2023-05-20T19:41:07","guid":{"rendered":"https:\/\/dbtut.com\/?p=54532"},"modified":"2023-05-20T19:42:38","modified_gmt":"2023-05-20T19:42:38","slug":"how-to-increase-the-number-of-control-files","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/","title":{"rendered":"How To Increase The Number Of Control Files?"},"content":{"rendered":"<p>In today&#8217;s article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.<\/p>\n<p>A. If we are using SPFile parameter file.<\/p>\n<p>1. The control_files parameter in our spfile parameter file is updated as follows.<\/p>\n<pre class=\"lang:default decode:true\">SQL&gt; ALTER SYSTEM SET CONTROL_FILES= '\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control01.ctl' ,\r\n'\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control02.ctl', \r\n'\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control03.ctl' SCOPE=SPFILE;\r\n\t\t\r\nSystem altered.\r\n<\/pre>\n<p>2. The database is closed.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; SHUTDOWN IMMEDIATE;\r\nDatabase closed.\r\nDatabase dismounted.\r\nORACLE instance shut down.\r\n<\/pre>\n<p>3. A new control file is created in the specified directory.<\/p>\n<pre class=\"lang:default decode:true \">-bash-3.2$ cp control02.ctl control03.ctl\r\n<\/pre>\n<p>4. The database opens.<\/p>\n<pre class=\"lang:default decode:true \">SQL&gt; startup;\r\nORACLE instance started.\r\n\t\t\r\nTotal System Global Area 1653518336 bytes\r\nFixed Size                  2253784 bytes\r\nVariable Size             989858856 bytes\r\nDatabase Buffers          654311424 bytes\r\nRedo Buffers                7094272 bytes\r\nDatabase mounted.\r\nDatabase opened.<\/pre>\n<p>5. It is checked whether the parameter file is updated or not.<\/p>\n<pre class=\"lang:default decode:true \">\t\tSQL&gt; show parameter control_files\r\n\t\t\r\n\t\tNAME                                 TYPE        VALUE\r\n\t\t------------------------------------ ----------- ------------------------------\r\n\t\tcontrol_files                        string      \/oracle\/ora11g\/data_ONURDB\/ONU\r\n\t\t                                                 RDB\/control01.ctl, \/oracle\/ora\r\n\t\t                                                 11g\/data_ONURDB\/ONURDB\/control\r\n\t\t                                                 02.ctl, \/oracle\/ora11g\/data_ON\r\n\t\t                                                 URDB\/ONURDB\/control03.ctl\r\n<\/pre>\n<p>When we try to open our database with pfile without updating our pfile parameter file (init&lt;ORACLE_SID&gt;.ora), it opens without problems, but it does not see the newly added control_file.<\/p>\n<p>B. If we are using PFILE,<\/p>\n<p>1. The database is closed.<\/p>\n<pre class=\"lang:default decode:true \">\t\tSQL&gt; SHUTDOWN IMMEDIATE;\r\n\t\tDatabase closed.\r\n\t\tDatabase dismounted.\r\nORACLE instance shut down.<\/pre>\n<p>2. The Pfile parameter file is opened with the vi text editor and the control_files are updated.<\/p>\n<pre class=\"lang:default decode:true \">\t\tONURDB.__db_cache_size=654311424\r\n\t\tONURDB.__java_pool_size=16777216\r\n\t\tONURDB.__large_pool_size=33554432\r\n\t\tONURDB.__oracle_base='\/oracle'#ORACLE_BASE set from environment\r\n\t\tONURDB.__pga_aggregate_target=637534208\r\n\t\tONURDB.__sga_target=1023410176\r\n\t\tONURDB.__shared_io_pool_size=0\r\n\t\tONURDB.__shared_pool_size=301989888\r\n\t\tONURDB.__streams_pool_size=0\r\n\t\t*.audit_file_dest='\/oracle\/admin\/ONURDB\/adump'\r\n\t\t*.audit_trail='db'\r\n\t\t*.compatible='11.2.0.4.0'\r\n\t\t*.control_files='\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control01.ctl','\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control02.ctl', '\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control03.ctl'\r\n\t\t*.db_block_size=8192\r\n\t\t*.db_domain=''\r\n\t\t*.db_name='ONURDB'\r\n\t\t*.diagnostic_dest='\/oracle'\r\n\t\t*.dispatchers='(PROTOCOL=TCP) (SERVICE=ONURDBXDB)'\r\n\t\t*.log_archive_dest_1='location=\/oracle\/ora11g\/backup_ONURDB'\r\n\t\t*.log_archive_format='ONURDB_%t_%s_%r.arc'\r\n\t\t*.memory_target=1655701504\r\n\t\t*.open_cursors=300\r\n\t\t*.processes=150\r\n\t\t*.remote_login_passwordfile='EXCLUSIVE'\r\n\t\t*.undo_tablespace='UNDOTBS1'\r\n<\/pre>\n<p>3. A new control file is created in the specified directory.<\/p>\n<pre class=\"lang:default decode:true \">\t\t-bash-3.2$ cp control02.ctl control03.ctl\r\n<\/pre>\n<p>In this step, if you do not create a control file named control03.ctl in the specified directory, but want to use the control file created in A, an error will be received when opening the database.<\/p>\n<p>The reason is that the checkpoint information in the control files is not the same. The error is as follows.<\/p>\n<pre class=\"lang:default decode:true \">\t\tSQL&gt; STARTUP PFILE = '\/oracle\/ora11g\/dbs\/initONURDB.ora';\r\n\t\tORACLE instance started.\r\n\t\t\r\n\t\tTotal System Global Area 1653518336 bytes\r\n\t\tFixed Size                  2253784 bytes\r\n\t\tVariable Size             989858856 bytes\r\n\t\tDatabase Buffers          654311424 bytes\r\n\t\tRedo Buffers                7094272 bytes\r\n\t\tORA-00214: control file '\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control01.ctl'\r\n\t\tversion 19149 inconsistent with file\r\n\t\t'\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control03.ctl' version 19135\r\n<\/pre>\n<p>4. The database opens.<\/p>\n<pre class=\"lang:default decode:true\">\t\tSQL&gt; STARTUP PFILE = '\/oracle\/ora11g\/dbs\/initONURDB.ora';\r\n\t\tORACLE instance started.\r\n\t\t\r\n\t\tTotal System Global Area 1653518336 bytes\r\n\t\tFixed Size                  2253784 bytes\r\n\t\tVariable Size             989858856 bytes\r\n\t\tDatabase Buffers          654311424 bytes\r\n\t\tRedo Buffers                7094272 bytes\r\n\t\tDatabase mounted.\r\n\t\tDatabase opened.\r\n<\/pre>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_54532\" class=\"pvc_stats all  \" data-element-id=\"54532\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?. A. If we are using SPFile parameter file. 1. The control_files parameter in our spfile parameter file is updated as follows. SQL&gt; ALTER SYSTEM SET CONTROL_FILES= &#8216;\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control01.ctl&#8217; , &#8216;\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control02.ctl&#8217;, &#8216;\/oracle\/ora11g\/data_ONURDB\/ONURDB\/control03.ctl&#8217; SCOPE=SPFILE; System altered. 2. The database &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_54532\" class=\"pvc_stats all  \" data-element-id=\"54532\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":484,"featured_media":54533,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-54532","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Increase The Number Of Control Files? - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Increase The Number Of Control Files? - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-20T19:41:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-20T19:42:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png\" \/>\n\t<meta property=\"og:image:width\" content=\"661\" \/>\n\t<meta property=\"og:image:height\" content=\"278\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Onur ARDAHANLI\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Onur ARDAHANLI\" \/>\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:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\"},\"author\":{\"name\":\"Onur ARDAHANLI\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6\"},\"headline\":\"How To Increase The Number Of Control Files?\",\"datePublished\":\"2023-05-20T19:41:07+00:00\",\"dateModified\":\"2023-05-20T19:42:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\"},\"wordCount\":208,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\",\"name\":\"How To Increase The Number Of Control Files? - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png\",\"datePublished\":\"2023-05-20T19:41:07+00:00\",\"dateModified\":\"2023-05-20T19:42:38+00:00\",\"description\":\"In today's article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png\",\"width\":661,\"height\":278},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Increase The Number Of Control Files?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6\",\"name\":\"Onur ARDAHANLI\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g\",\"caption\":\"Onur ARDAHANLI\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/onurardahanli\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Increase The Number Of Control Files? - Database Tutorials","description":"In today's article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.","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:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/","og_locale":"en_US","og_type":"article","og_title":"How To Increase The Number Of Control Files? - Database Tutorials","og_description":"In today's article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.","og_url":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/","og_site_name":"Database Tutorials","article_published_time":"2023-05-20T19:41:07+00:00","article_modified_time":"2023-05-20T19:42:38+00:00","og_image":[{"width":661,"height":278,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png","type":"image\/png"}],"author":"Onur ARDAHANLI","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Onur ARDAHANLI","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/"},"author":{"name":"Onur ARDAHANLI","@id":"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6"},"headline":"How To Increase The Number Of Control Files?","datePublished":"2023-05-20T19:41:07+00:00","dateModified":"2023-05-20T19:42:38+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/"},"wordCount":208,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/","url":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/","name":"How To Increase The Number Of Control Files? - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png","datePublished":"2023-05-20T19:41:07+00:00","dateModified":"2023-05-20T19:42:38+00:00","description":"In today's article, We will explain the topic How to Increase the Number of Control Files in Oracle Databese?.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/05\/Ekran-goruntusu-2023-05-20-223938.png","width":661,"height":278},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2023\/05\/20\/how-to-increase-the-number-of-control-files\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Increase The Number Of Control Files?"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/7fcd466cd0d347ec64aaa48f18f780c6","name":"Onur ARDAHANLI","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ecd20c3e1374ced4e1aefc82101cce4cd437be8fd957d1be3d106668b8a1b990?s=96&d=mm&r=g","caption":"Onur ARDAHANLI"},"url":"https:\/\/dbtut.com\/index.php\/author\/onurardahanli\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/54532","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/484"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=54532"}],"version-history":[{"count":1,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/54532\/revisions"}],"predecessor-version":[{"id":54534,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/54532\/revisions\/54534"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/54533"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=54532"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=54532"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=54532"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}