{"id":4238,"date":"2018-10-27T09:22:27","date_gmt":"2018-10-27T09:22:27","guid":{"rendered":"https:\/\/dbtut.com\/?p=4238"},"modified":"2018-11-27T21:39:21","modified_gmt":"2018-11-27T21:39:21","slug":"how-to-start-and-stop-teradata-database","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/","title":{"rendered":"How To Start and Stop Teradata Database"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>There can be different scenario&#8217;s where Teradata database needs to be stopped and started by database administrator or the database restarted automatically. So there are basically two types of restarts:<\/p>\n<ol>\n<li>Scheduled restarts : User may input command to bring the database down for maintenance or software patch upgrades and bring it up and running once activity complete.<\/li>\n<li>Unscheduled restarts : System reboots automatically without user input. This may happen due to different reasons like power failure, hardware failure etc.<\/li>\n<\/ol>\n<p>In both the cases, database administrator needs to execute commands to check the status of the system and take appropriate actions depending on its current state.<\/p>\n<p>This can be done by using below command:<\/p>\n<pre class=\"lang:default decode:true \"># pdestate -a<\/pre>\n<p>&nbsp;<\/p>\n<p>1) If the teradata is already in ruuning state the the following message will be displayed:<\/p>\n<p><em>PDE state is RUN\/STARTED.<\/em><br \/>\n<em>DBS state is 5: Logons are enabled &#8211; The system is quiescent<\/em><\/p>\n<p>2) If the teradata in not in running state than either of the following messages will be dispayed:<\/p>\n<p><em>a) PDE state is STOP\/KILLTASKS &#8211; indicates database has been intentionally stopped due to some reason.<\/em><br \/>\n<em>b) PDE state is DOWN\/HARDSTOP\u00a0 &#8212; indicates system is halted due to some problem instead of controlled shutdown<\/em><\/p>\n<p>&nbsp;<\/p>\n<h3><span style=\"font-size: 14pt;\">User-initiated\/Scheduled restarts<\/span><\/h3>\n<p>If you want to stop the Teradata database due to some reason like software patch upgrade, then use the below command:<\/p>\n<pre class=\"lang:default decode:true\">#tpareset -x {comments } --- comments show the reason to bring down the database later if someone needs to know the cause for database down.\r\n<em>You are about to shutdown the database<\/em>\r\n<em>on the system\u00a0<\/em><em>'&lt;systemname&gt;'<\/em>\r\n<em>Do you wish to continue (default: n) [y,n] y<\/em><\/pre>\n<p>&nbsp;<\/p>\n<p>Now check its current state to make sure that database is down.<\/p>\n<pre class=\"lang:default decode:true\">#pdestate -a\r\nPDE state is STOP\/KILLTASKS<\/pre>\n<p>&nbsp;<\/p>\n<p>Now, once the schedule activity is completed, the Teradata Database needs to be started using below command:<\/p>\n<pre class=\"lang:default decode:true\">#\/etc\/init.d\/tpa start\r\n<em>Teradata Database Initiator service is starting...<\/em>\r\n<em>Teradata Database Initiator service started successfully.<\/em><\/pre>\n<p>&nbsp;<\/p>\n<h3><span style=\"font-size: 14pt;\">Automatic\/Unscheduled Restarts<\/span><\/h3>\n<p>If database is halted due to some problem and current pdestate is DOWN\/HARDSTOP. Should you bring back the teradata database up and running, use the below command:<\/p>\n<pre class=\"lang:default decode:true \"># tpareset -f\r\nYou are about to restart the database\r\non the system\u00a0'&lt;systemname&gt;'\r\nDo you wish to continue (default: n) [y,n] y<\/pre>\n<p>&nbsp;<\/p>\n<p>If still the pdestate is like DOWN\/HARD\/KILLTASK than you can troubleshoot the problem by checking the log file by using the following command:<\/p>\n<p>Debug the problem as per the log message and do another tpa start and check the pdestate if it started running.<\/p>\n<pre class=\"lang:default decode:true\">tail \/var\/log\/messages<\/pre>\n<p>You will get a below error in the end.<\/p>\n<p>#PdeMain NOT started, PANIC-LOOP-DETECTED.<\/p>\n<p>Please delete file <span style=\"color: #000000;\">&#8220;\/var\/opt\/teradata\/tdtemp\/PanicLoopDetected<\/span>&#8220;, after resolving the panic issue.<\/p>\n<p>Remove the file PanicLoopDetected using below command:<\/p>\n<pre class=\"lang:default decode:true \">rm \/var\/opt\/teradata\/tdtemp\/PanicLoopDetected<\/pre>\n<p>&nbsp;<\/p>\n<p>Now start the teradata database again using:<\/p>\n<pre class=\"lang:default decode:true  \">service tpa start or \/etc\/init.d\/tpa start<\/pre>\n<pre class=\"lang:default decode:true\">#pdestate -a\r\nPDE state is RUN\/STARTED.\r\nDBS state is 5: Logons are enabled - The system is quiescent<\/pre>\n<p>&nbsp;<\/p>\n<p>The issue will be resolve hopefully.<\/p>\n<p>You can also check the storage using :<\/p>\n<pre class=\"lang:default decode:true\">#verify_pdisks<\/pre>\n<p>You will get message something like.<\/p>\n<p>Unable to open TVSA file <span style=\"color: #000000;\">\/etc\/opt\/teradata\/tdconfig\/tvsa_data<\/span> for reading.<br \/>\nError getting TVSA system-id from \/tvsa_data file. But will continue to verify Pdisks.<\/p>\n<p>All pdisks on this node verified.<\/p>\n<p>If all the nodes on the system are not getting verified then troubleshoot the problem as per the error message generated after verifying pdisks.<\/p>\n<p>&nbsp;<\/p>\n<p>The various start up level of pdestate you can see after submitting the pdestate -a commands are:<\/p>\n<p>1) <code>#pdestate -a<\/code><br \/>\n<em>PDE state is START\/RECONCILE.<\/em><\/p>\n<p>2) <code>#pdestate -a<\/code><br \/>\n<em>PDE state is START\/STARTTPA.<\/em><\/p>\n<p>3) <code>#pdestate -a<\/code><br \/>\n<em>PDE state is RUN\/STARTED.<\/em><br \/>\n<em>DBS state is 1\/5: DBS Startup &#8211; Voting for Transaction Recovery<\/em><\/p>\n<p>4) <code>#pdestate -a<\/code><br \/>\n<em>PDE state is RUN\/STARTED.<\/em><br \/>\n<em>DBS state is 1\/4: DBS Startup &#8211; Starting PE Partitions<\/em><\/p>\n<p>5) <code>#pdestate -a<\/code><br \/>\n<em>PDE state is RUN\/STARTED.<\/em><br \/>\n<em>DBS state is 5: Logons are enabled &#8211; The system is quiescent<\/em><\/p>\n<p>&nbsp;<\/p>\n<h3><span style=\"font-size: 14pt;\">Tracking Restarts<\/span><\/h3>\n<p>To check the restart that have occurred in the past:<\/p>\n<ol>\n<li>&#8220;tpatrace&#8221; command can be used to see information about restarts. For example &#8220;<code>#tpatrace 5<\/code>&#8221; show last 5 restart information.<\/li>\n<li>\u00a0DBC.Software_Event_LogV view can be used to view past restarts.<\/li>\n<\/ol>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_4238\" class=\"pvc_stats all  \" data-element-id=\"4238\" 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>&nbsp; There can be different scenario&#8217;s where Teradata database needs to be stopped and started by database administrator or the database restarted automatically. So there are basically two types of restarts: Scheduled restarts : User may input command to bring the database down for maintenance or software patch upgrades and bring it up and running &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_4238\" class=\"pvc_stats all  \" data-element-id=\"4238\" 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":106,"featured_media":0,"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":[1307],"tags":[1544,1545,1543,1354,1542],"class_list":["post-4238","post","type-post","status-publish","format-standard","","category-teradata","tag-hardstop-teradata","tag-pdestate","tag-shut-down-teradata","tag-teradata","tag-teradata-restart"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":8541,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Start and Stop Teradata Database - Database Tutorials<\/title>\n<meta name=\"description\" content=\"How To Start and Stop Teradata Database\" \/>\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\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Start and Stop Teradata Database - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"How To Start and Stop Teradata Database\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-27T09:22:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-27T21:39:21+00:00\" \/>\n<meta name=\"author\" content=\"Sharib Hussain\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sharib Hussain\" \/>\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:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\"},\"author\":{\"name\":\"Sharib Hussain\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/e376016550fd4bef4bfbc2abbd0197b0\"},\"headline\":\"How To Start and Stop Teradata Database\",\"datePublished\":\"2018-10-27T09:22:27+00:00\",\"dateModified\":\"2018-11-27T21:39:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\"},\"wordCount\":574,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"keywords\":[\"HARDSTOP teradata\",\"pdestate\",\"shut down Teradata\",\"Teradata\",\"Teradata restart\"],\"articleSection\":[\"TERADATA\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\",\"name\":\"How To Start and Stop Teradata Database - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-10-27T09:22:27+00:00\",\"dateModified\":\"2018-11-27T21:39:21+00:00\",\"description\":\"How To Start and Stop Teradata Database\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Start and Stop Teradata Database\"}]},{\"@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\/e376016550fd4bef4bfbc2abbd0197b0\",\"name\":\"Sharib Hussain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b54607895a39d3c5ebb544c604bbffcee38df60a56199d63bf353dd73c6fc582?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b54607895a39d3c5ebb544c604bbffcee38df60a56199d63bf353dd73c6fc582?s=96&d=mm&r=g\",\"caption\":\"Sharib Hussain\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/sharibhussain\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Start and Stop Teradata Database - Database Tutorials","description":"How To Start and Stop Teradata Database","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\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/","og_locale":"en_US","og_type":"article","og_title":"How To Start and Stop Teradata Database - Database Tutorials","og_description":"How To Start and Stop Teradata Database","og_url":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/","og_site_name":"Database Tutorials","article_published_time":"2018-10-27T09:22:27+00:00","article_modified_time":"2018-11-27T21:39:21+00:00","author":"Sharib Hussain","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sharib Hussain","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/"},"author":{"name":"Sharib Hussain","@id":"https:\/\/dbtut.com\/#\/schema\/person\/e376016550fd4bef4bfbc2abbd0197b0"},"headline":"How To Start and Stop Teradata Database","datePublished":"2018-10-27T09:22:27+00:00","dateModified":"2018-11-27T21:39:21+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/"},"wordCount":574,"commentCount":2,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"keywords":["HARDSTOP teradata","pdestate","shut down Teradata","Teradata","Teradata restart"],"articleSection":["TERADATA"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/","url":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/","name":"How To Start and Stop Teradata Database - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-10-27T09:22:27+00:00","dateModified":"2018-11-27T21:39:21+00:00","description":"How To Start and Stop Teradata Database","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/27\/how-to-start-and-stop-teradata-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Start and Stop Teradata Database"}]},{"@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\/e376016550fd4bef4bfbc2abbd0197b0","name":"Sharib Hussain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b54607895a39d3c5ebb544c604bbffcee38df60a56199d63bf353dd73c6fc582?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b54607895a39d3c5ebb544c604bbffcee38df60a56199d63bf353dd73c6fc582?s=96&d=mm&r=g","caption":"Sharib Hussain"},"url":"https:\/\/dbtut.com\/index.php\/author\/sharibhussain\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/4238","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\/106"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=4238"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/4238\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=4238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=4238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=4238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}