{"id":21780,"date":"2022-12-21T06:58:00","date_gmt":"2022-12-21T05:58:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=21780"},"modified":"2023-01-17T12:22:39","modified_gmt":"2023-01-17T11:22:39","slug":"sql-server-error-login-timeout-expired","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/","title":{"rendered":"SQL Server error login timeout expired with code 0x80004005"},"content":{"rendered":"\n<p>The SQL Server error code 0x80004005 login timeout expired is a common error that occurs when trying to connect to a SQL Server instance. This error is usually caused by a problem with the connection settings or a problem with the SQL Server instance itself. There are several reasons why this error may occur.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 ez-toc-wrap-center counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#1-incorrect-sql-server-connection-string\" >1. Incorrect SQL Server connection string<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#2-sql-server-error-login-timeout-instance-issue\" >2. SQL Server error login timeout instance issue<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#3-client-side-settings-not-properly-set\" >3. Client side settings not properly set<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#conclusion-on-the-sql-server-error-login-timeout\" >Conclusion on the SQL Server error login timeout<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\" id=\"h-1-incorrect-sql-server-connection-string\"><span class=\"ez-toc-section\" id=\"1-incorrect-sql-server-connection-string\"><\/span>1. Incorrect SQL Server connection string<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>One of the most common causes of login issues is an incorrect connection string. This can happen when the server name, port number, or <a href=\"https:\/\/www.lawinsider.com\/dictionary\/login-information\" target=\"_blank\" rel=\"noreferrer noopener\">login<\/a> credentials are incorrect. To resolve this issue, double-check your connection string and make sure that it is correct.<\/p>\n\n\n\n<p>For example, in this tutorial on how to <a href=\"https:\/\/expert-only.com\/en\/python\/work-with-sql-server-using-python\/\">connect to SQL Server using Python<\/a>, a SQL Server connection string looks like this: <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import pyodbc\n\nconnection = pyodbc.connect('Driver={SQL Server};'\n                            'Server=localhost;'\n                            'Database=Expert-Only;'\n                            'Trusted_Connection=yes;')\n<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"800\" src=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/01\/python-sql-server-pyodbc-insert-query.jpg\" alt=\"Check the connection string to avoid SQL Server error code 0x80004005 login timeout expired\" class=\"wp-image-21758\" srcset=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/01\/python-sql-server-pyodbc-insert-query.jpg 720w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/01\/python-sql-server-pyodbc-insert-query-270x300.jpg 270w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><figcaption class=\"wp-element-caption\"><strong><em>Check the connection string to avoid SQL Server error code 0x80004005 login timeout expired<\/em><\/strong><\/figcaption><\/figure><\/div>\n\n\n<p>Whereas with <a href=\"https:\/\/expert-only.com\/en\/ssis\/how-to-connect-to-sql-server-with-ssis\/\">SSIS connections<\/a>, a connection string looks like this. Exemple taken from the ConnectionString property of a Native OLE DB 11.0 conneciton to SQL Server.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Data Source=localhost;Initial Catalog=Expert-Only;Provider=SQLNCLI11.1;Integrated Security=SSPI;Application Name=SSIS-Package1-{49247E1C-7749-4A4C-B9BC-8A83F7A1190F}localhost.Expert-Only;Auto Translate=False;<\/pre>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"XVD6dbuNZd\"><a href=\"https:\/\/expert-only.com\/en\/ssis\/import-xml-file-into-a-table-with-ssis\/\">Import an XML file into a SQL table with SSIS<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Import an XML file into a SQL table with SSIS&#8221; &#8212; SQL and IT Tutorials\" src=\"https:\/\/expert-only.com\/en\/ssis\/import-xml-file-into-a-table-with-ssis\/embed\/#?secret=qI897TiPg0#?secret=XVD6dbuNZd\" data-secret=\"XVD6dbuNZd\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"2-sql-server-error-login-timeout-instance-issue\"><\/span>2. SQL Server error login timeout instance issue<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Another common cause of the <strong><em>SQL Server error login timeout expired<\/em><\/strong> is a problem with the SQL Server instance. I.e., on server side. This can be caused by a number of things such as the SQL Server service not running, the server being down for maintenance, or a problem with the network connection.<\/p>\n\n\n\n<p>In this case, you should check the status of the SQL Server service, check the server&#8217;s event logs, and check the network connection.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"3-client-side-settings-not-properly-set\"><\/span>3. Client side settings not properly set<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>A third cause of this error is a problem with the client-side settings. This can be caused by a problem with the client-side network settings or a problem with the client-side firewall. To resolve this issue, check the client-side network settings and make sure that they are configured correctly, and check the client-side firewall to make sure that it is not blocking the connection.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"conclusion-on-the-sql-server-error-login-timeout\"><\/span>Conclusion on the SQL Server error login timeout<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In conclusion, the SQL Server <strong>error code 0x80004005 login timeout expired<\/strong> is a common error that can be caused by several different issues. By checking the connection settings, the SQL Server instance, and the client-side settings, you can often resolve this error and restore the connection to the SQL Server instance.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">More tutorials on SQL Server and T-SQL<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-data-types\/\">SQL Server data types with code examples<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-string-longer-than-8000-chars\/\">Manage strings with more than 8000 characters<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/store-a-sql-server-column-in-a-variable\/\">Store a SQL Server column in a variable<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/dba\/create-a-sql-server-database-with-a-script\/\">Create a SQL Server database with a script<\/a><\/li>\n<\/ul>\n\n\n\n<p>To go further and use programming to manage data, you can <a href=\"https:\/\/expert-only.com\/en\/python\/work-with-sql-server-using-python\/\">use Python and T-SQL to manage SQL Server tables<\/a> and data.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"TrlPkTH8Te\"><a href=\"https:\/\/expert-only.com\/en\/python\/work-with-sql-server-using-python\/\">Work with SQL Server using Python and pyodbc<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Work with SQL Server using Python and pyodbc&#8221; &#8212; SQL and IT Tutorials\" src=\"https:\/\/expert-only.com\/en\/python\/work-with-sql-server-using-python\/embed\/#?secret=L5ktRJS6t3#?secret=TrlPkTH8Te\" data-secret=\"TrlPkTH8Te\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>The SQL Server error code 0x80004005 login timeout expired is a common error that occurs when trying to connect to a SQL Server instance. This error is usually caused by a problem with the connection settings or a problem <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\" title=\"SQL Server error login timeout expired with code 0x80004005\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":10829,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[486],"tags":[],"class_list":{"0":"post-21780","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-errors"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL Server error login timeout expired - SQL Server errors<\/title>\n<meta name=\"description\" content=\"How to fix the SQL Server error code 0x80004005 login timeout expired when trying to connect to a SQL Server instance?\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server error login timeout expired with code 0x80004005\" \/>\n<meta property=\"og:description\" content=\"How to fix the SQL Server error code 0x80004005 login timeout expired when trying to connect to a SQL Server instance?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-21T05:58:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-17T11:22:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"SQL Server error login timeout expired with code 0x80004005\",\"datePublished\":\"2022-12-21T05:58:00+00:00\",\"dateModified\":\"2023-01-17T11:22:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\"},\"wordCount\":456,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg\",\"articleSection\":[\"SQL Server errors\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\",\"url\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\",\"name\":\"SQL Server error login timeout expired - SQL Server errors\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg\",\"datePublished\":\"2022-12-21T05:58:00+00:00\",\"dateModified\":\"2023-01-17T11:22:39+00:00\",\"description\":\"How to fix the SQL Server error code 0x80004005 login timeout expired when trying to connect to a SQL Server instance?\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server error login timeout expired with code 0x80004005\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Server error login timeout expired - SQL Server errors","description":"How to fix the SQL Server error code 0x80004005 login timeout expired when trying to connect to a SQL Server instance?","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:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server error login timeout expired with code 0x80004005","og_description":"How to fix the SQL Server error code 0x80004005 login timeout expired when trying to connect to a SQL Server instance?","og_url":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-12-21T05:58:00+00:00","article_modified_time":"2023-01-17T11:22:39+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"SQL Server error login timeout expired with code 0x80004005","datePublished":"2022-12-21T05:58:00+00:00","dateModified":"2023-01-17T11:22:39+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/"},"wordCount":456,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg","articleSection":["SQL Server errors"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/","url":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/","name":"SQL Server error login timeout expired - SQL Server errors","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg","datePublished":"2022-12-21T05:58:00+00:00","dateModified":"2023-01-17T11:22:39+00:00","description":"How to fix the SQL Server error code 0x80004005 login timeout expired when trying to connect to a SQL Server instance?","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/pocket-watch-on-black-46ECE144EB3_1920x1080.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/errors\/sql-server-error-login-timeout-expired\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"SQL Server error login timeout expired with code 0x80004005"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/21780","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=21780"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/21780\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/10829"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=21780"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=21780"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=21780"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}