{"id":41556,"date":"2022-05-20T08:45:51","date_gmt":"2022-05-20T08:45:51","guid":{"rendered":"https:\/\/dbtut.com\/?p=41556"},"modified":"2022-05-20T08:46:50","modified_gmt":"2022-05-20T08:46:50","slug":"postgresql-upgrade-from-9-6-to-11","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/","title":{"rendered":"PostgreSQL Upgrade From 9.6 To 11"},"content":{"rendered":"<p>In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/miro.medium.com\/max\/1344\/1*ZrW6Cq1YKdtpznsF-nqSog.png\" \/><\/p>\n<p>We are creating a new database called &#8220;test&#8221; for testing purposes.<\/p>\n<pre class=\"lang:default decode:true \">[root@test ~]# su - postgres\r\n-bash-4.2$ psql\r\npostgres=# create database test;\r\nCREATE DATABASE<\/pre>\n<p>We create a table in the database we have created and add records to it.<\/p>\n<pre class=\"lang:default decode:true \">postgres=# \\c test\r\nYou are now connected to database \"test\" as user \"postgres\".\r\ntest=# create table test(id int);\r\nCREATE TABLE\r\ntest=# insert into test values(1);\r\nINSERT 0 1\r\ntest=# insert into test values(2);\r\nINSERT 0 1<\/pre>\n<p>We can see the table we created and the records we added as follows.<\/p>\n<pre class=\"lang:default decode:true \">test=# \\dt\r\n        List of relations\r\n Schema | Name | Type  |  Owner   \r\n--------+------+-------+----------\r\n public | test | table | postgres\r\n(1 row)\r\ntest=# table test;\r\n id \r\n----\r\n  1\r\n  2\r\n(2 rows)<\/pre>\n<p>After these operations, we take a backup of our database.<\/p>\n<pre class=\"lang:default decode:true \">-bash-4.2$ pg_dumpall &gt;\/backups\/yedek_testdb\r\n<\/pre>\n<p>After completing the backup process, we stop the PostgreSQL 9.6 service and delete all the packages related to PostgreSQL.<\/p>\n<pre class=\"lang:default decode:true \">[root@test]# systemctl stop postgresql-9.6.service\r\n[root@test]# yum remove postgresql*<\/pre>\n<p>We are backing up the data directory.<\/p>\n<pre class=\"lang:default decode:true \">[root@test]# mv \/var\/lib\/pgsql\/9.6\/data \/var\/lib\/pgsql\/9.6\/data.old\r\n<\/pre>\n<p>We install PostgreSQL 11 with the commands below.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# yum install -y https:\/\/download.postgresql.org\/pub\/repos\/yum\/reporpms\/EL-7-x86_64\/pgdg-redhat-repo-latest.noarch.rpm\r\n[root@orcl ~]# yum install -y postgresql11-server<\/pre>\n<p>We start the database, then start the service.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# \/usr\/pgsql-11\/bin\/postgresql-11-setup initdb\r\n[root@orcl ~]# systemctl enable postgresql-11\r\n[root@orcl ~]# systemctl start postgresql-11<\/pre>\n<p>We are restoring the backup we took earlier.<\/p>\n<pre class=\"lang:default decode:true \">-bash-4.2$ psql -d postgres -f \/backups\/yedek_testdb\r\n<\/pre>\n<p>We reboot the server.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# reboot\r\n<\/pre>\n<p>We connect to the database and check whether the test database we created before exists.<\/p>\n<pre class=\"lang:default decode:true \">-bash-4.2$ psql\r\npsql (11.12)\r\nType \"help\" for help.\r\npostgres=# \\l\r\n                                  List of databases\r\n   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   \r\n-----------+----------+----------+-------------+-------------+-----------------------\r\n postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | \r\n template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c\/postgres          +\r\n           |          |          |             |             | postgres=CTc\/postgres\r\n template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | postgres=CTc\/postgres+\r\n           |          |          |             |             | =c\/postgres\r\n test      | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | \r\n(4 rows)<\/pre>\n<p>As we can see above, we have a test database. Let&#8217;s check the table we created.<\/p>\n<pre class=\"lang:default decode:true \">postgres=# \\c test\r\nYou are now connected to database \"test\" as user \"postgres\".\r\n\r\ntest=# \\dt\r\n        List of relations\r\n Schema | Name | Type  |  Owner   \r\n--------+------+-------+----------\r\n public | test | table | postgres\r\n(1 row)\r\ntest=# table test;\r\n id \r\n----\r\n  1\r\n  2\r\n(2 rows)\r\n<\/pre>\n<p>We are deleting the data directory of PostgreSQL 9.6 as the upgrade process has been completed successfully.<\/p>\n<pre class=\"lang:default decode:true \">[root@test]# rm -rf \/var\/lib\/pgsql\/9.6\/data.old\r\n<\/pre>\n<p>I hope it will be useful for you.<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_41556\" class=\"pvc_stats all  \" data-element-id=\"41556\" 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 this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system. We are creating a new database called &#8220;test&#8221; for testing purposes. [root@test ~]# su &#8211; postgres -bash-4.2$ psql postgres=# create database test; CREATE DATABASE We create a table in the database we have &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_41556\" class=\"pvc_stats all  \" data-element-id=\"41556\" 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":3068,"featured_media":41558,"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":[5],"tags":[],"class_list":["post-41556","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-postgres"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PostgreSQL Upgrade From 9.6 To 11 - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.\" \/>\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\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PostgreSQL Upgrade From 9.6 To 11 - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-20T08:45:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-20T08:46:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"828\" \/>\n\t<meta property=\"og:image:height\" content=\"347\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Melek Durdu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Melek Durdu\" \/>\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\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\"},\"author\":{\"name\":\"Melek Durdu\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b\"},\"headline\":\"PostgreSQL Upgrade From 9.6 To 11\",\"datePublished\":\"2022-05-20T08:45:51+00:00\",\"dateModified\":\"2022-05-20T08:46:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\"},\"wordCount\":182,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg\",\"articleSection\":[\"PostgreSQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\",\"name\":\"PostgreSQL Upgrade From 9.6 To 11 - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg\",\"datePublished\":\"2022-05-20T08:45:51+00:00\",\"dateModified\":\"2022-05-20T08:46:50+00:00\",\"description\":\"In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg\",\"width\":828,\"height\":347},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PostgreSQL Upgrade From 9.6 To 11\"}]},{\"@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\/f9c7aff3fe68fef0255caa38a944ce4b\",\"name\":\"Melek Durdu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g\",\"caption\":\"Melek Durdu\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/melekdurdu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PostgreSQL Upgrade From 9.6 To 11 - Database Tutorials","description":"In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.","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\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/","og_locale":"en_US","og_type":"article","og_title":"PostgreSQL Upgrade From 9.6 To 11 - Database Tutorials","og_description":"In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.","og_url":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/","og_site_name":"Database Tutorials","article_published_time":"2022-05-20T08:45:51+00:00","article_modified_time":"2022-05-20T08:46:50+00:00","og_image":[{"width":828,"height":347,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg","type":"image\/jpeg"}],"author":"Melek Durdu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Melek Durdu","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/"},"author":{"name":"Melek Durdu","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b"},"headline":"PostgreSQL Upgrade From 9.6 To 11","datePublished":"2022-05-20T08:45:51+00:00","dateModified":"2022-05-20T08:46:50+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/"},"wordCount":182,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg","articleSection":["PostgreSQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/","url":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/","name":"PostgreSQL Upgrade From 9.6 To 11 - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg","datePublished":"2022-05-20T08:45:51+00:00","dateModified":"2022-05-20T08:46:50+00:00","description":"In this article, I will talk about how to PostgreSQL Upgrade From 9.6 To 11 using pg_dumpall on Linux 7 operating system.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/05\/Ekran-Alintisi-14.jpg","width":828,"height":347},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/05\/20\/postgresql-upgrade-from-9-6-to-11\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"PostgreSQL Upgrade From 9.6 To 11"}]},{"@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\/f9c7aff3fe68fef0255caa38a944ce4b","name":"Melek Durdu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g","caption":"Melek Durdu"},"url":"https:\/\/dbtut.com\/index.php\/author\/melekdurdu\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/41556","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\/3068"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=41556"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/41556\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/41558"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=41556"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=41556"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=41556"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}