{"id":34787,"date":"2018-04-18T14:26:11","date_gmt":"2018-04-18T21:26:11","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=34787"},"modified":"2021-02-10T18:08:59","modified_gmt":"2021-02-11T01:08:59","slug":"linux-commands-ms-sql-server-dbas","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/","title":{"rendered":"Top Linux Commands for MS SQL Server DBAs"},"content":{"rendered":"<p>These are the ten most important commands to know as a DBA working in a Linux environment. This is not specific to any Linux distribution or single database platform necessarily, however, I have added some really good links specific to MSSQL Server running on Linux at the end. The commands presented here are available for all Linux flavors and typically are pre-installed.<\/p>\n<p>This article assumes a basic working knowledge of the Linux command line interface i.e., logging in, basic directory structure and navigation, and basic file management.<\/p>\n<p>Here is a link to a basic primer on Linux\/Unix to get you up to speed in case you need it:<\/p>\n<p><a href=\"http:\/\/www.ee.surrey.ac.uk\/Teaching\/Unix\/\" rel=\"noopener\" target=\"_blank\">Unix Tutorial<\/a><\/p>\n<p>As we move forward there are two special tools that will help you immensely. These are necessary tools that every Linux user should be aware of.<\/p>\n<p><strong>man<\/strong><\/p>\n<p>Man (manual) pages are help files. Personally, I&#8217;ve never used an MS help file, I have used man pages extensively for over twenty years. They are a quick and concise source of documentation that take only a few seconds of skimming to find what you need. They follow a simple syntax: man command_name<\/p>\n<p><strong>Vi<\/strong><\/p>\n<p>Vi is actually an application so I&#8217;m not really counting it in the list of ten either. Obviously, a text editor is an essential tool. Vi is universally available and is quite functional. It has a somewhat steep learning curve and can be cumbersome, especially at first. However, it is fast, clean, and was designed to be used in a command line environment. Refer to the following tutorial.<\/p>\n<p><a href=\"http:\/\/heather.cs.ucdavis.edu\/~matloff\/UnixAndC\/Editors\/ViIntro.html\" rel=\"noopener\" target=\"_blank\">An Extremely Quick and Easy Introduction to the Vi Text Editor<\/a><\/p>\n<ol>\n<li><strong>ssh<\/strong> (Secure Shell)<br \/>\nIt&#8217;s often necessary to log into a Linux system remotely, whether it&#8217;s in a different geographical location, or you just don&#8217;t feel like walking to the other side of the data center, ssh is a Linux command that allows you to establish a secure remote connection to another Linux based system. Provided security features ( passwords and or encryption keys) are configured on both systems you can administer the remote system as if it were local using the now familiar terminal. Security is the main concern here as ssh encrypts your traffic in order to protect the two systems.<br \/>\n<a href=\"https:\/\/www.digitalocean.com\/community\/tutorials\/ssh-essentials-working-with-ssh-servers-clients-and-keys\" rel=\"noopener\" target=\"_blank\">SSH Essentials<\/a><\/li>\n<p><strong>Configuration and log files:<\/strong><\/p>\n<li><strong>cat and more\/less<\/strong><br \/>\nThe &#8216;cat&#8217; commands most basic use is to simply view a text file. It&#8217;s real strength is in its ability to connect (concatenate) multiple text files and send them as an input to standard output. This is a simple yet essential tool, especially for aggregating data from multiple sources. The downside to &#8216;cat&#8217; when viewing a file is that it simply dumps the file contents to your screen with no control. Because of this. I&#8217;ve included the &#8216;more&#8217; and &#8216;less&#8217; commands as they can be used to view a single file by themselves just like &#8216;cat,&#8217; but they also allow you to view the cat output one page at a time.<br \/>\nAs an example:<\/p>\n<p>$ cat file1.txt file2.txt | less<\/p>\n<p>Notice the | (pipe) &#8211; This command string will concatenate (cat) file1.txt and file2.txt and pipe or send them to the less command and allow you to page through the information at your own pace instead of just dumping it all on your screen too quickly to read.<\/li>\n<li><strong>tail<\/strong><br \/>\nThis is another utility that allows the admin to view text files. As the name implies, &#8216;tail&#8217; looks at the end of a file, rather than the whole file. The benefit to this is that it can be used to actively monitor the file\/log as it changes. That is to say, it allows you to watch the output of whatever process is logging the data as the file is being written.<br \/>\nExample:<\/p>\n<p>tail -f \/var\/log\/logfile.txt<\/li>\n<p><strong>Resource Utilization:<\/strong><br \/>\nKnowing if a particular process is running, how much of a given resource is being utilized or which are available are absolutely essential.<\/p>\n<li><strong>Ps<\/strong><br \/>\nps displays a snapshot of user and system processes that are currently running. It displays the user who initiated the process, the process ID, percentage of cpu usage, percentage of memory usage, and more depending on the options you use with the command. The information is helpful to quickly determine if a process is running, or if it is taking up more resources than might be reasonable.<\/li>\n<li><strong>Top<\/strong><br \/>\nFor real-time monitoring of Linux processes &#8216;top&#8217; is very helpful. This command shows a great deal more information than ps does with many options for displaying other system resource information. It&#8217;s a good idea, as always, to know the available options (man) to pass to the command, as well as hotkeys to use while it&#8217;s running in order to maximize the power of this tool.<\/li>\n<li><strong>Mpstat<\/strong><br \/>\nFor monitoring output activity of each available processor, mpstat is a great tool. Offering a number of reporting options, the quick default is a simple utilization report. The available level of detail is pretty impressive, however, the basic information is enough to determine if processor resources are being overtaxed.<br \/>\n<a href=\"https:\/\/linuxconfig.org\/learning-linux-commands-top\" rel=\"noopener\" target=\"_blank\">Linuxconfig.org &#8211; top<\/a><\/li>\n<li><strong>df<\/strong><br \/>\ndf shows how much disk space the file system is using and how it is distributed across volumes. Depending on your distribution the default information may differ, however, many command options can be passed along to customize the information displayed.<\/li>\n<li><strong>du<\/strong><br \/>\ndu displays estimated file or directory space usage. It takes the argument of a directory or a file. If no path is provided it will use the present working directory. With both df and du the -h option provides \u201chuman readable\u201d output&#8230;bytes rather than blocks<\/li>\n<li><strong>Ifconfig<\/strong><br \/>\nIfconfig (might be called ip addr depending on your distribution) displays basic information about your network interfaces and allows some control over starting and stopping them. This is usually one of the first steps towards troubleshooting potential network issues.<\/li>\n<li><strong>grep\/egrep<\/strong><br \/>\nOne of the most powerful commands in Linux is grep. With the impossible amount of information to dig through in Linux systems narrowing down results using customized criteria is a huge timesaver. Whether you wish to find a particular string(s) in a file, a specific running process or service, audit a log file, etc.., the uses are quite extensive.<\/li>\n<\/ol>\n<p>A very simple example: If you want to find a running process whose name begins with rpc and show detailed information:<\/p>\n<p>ps -aux | grep rpc*<\/p>\n<p>grep can do this with a lot of different data sources. Additionally, grep utilizes regular expressions or, similarly, with egrep you can use extended expressions. When combined with the &#8216;sed&#8217; utility this becomes a powerful set of search and editing tools. Make your life easier, read the following tutorial.<br \/>\n<a href=\"https:\/\/linuxconfig.org\/learning-linux-commands-top\" rel=\"noopener\" target=\"_blank\">Grep tutorial<\/a><\/p>\n<p>Beyond the list:<br \/>\nThere are a couple of other extremely helpful commands. They are a little more advanced, however learning to use them will certainly be very helpful.<\/p>\n<p><strong>Systemctl<\/strong><br \/>\nsystemctl is a great tool for displaying and controlling system processes. It\u2019s kind of advanced and can be really dangerous, however all the cool kids are using it.<\/p>\n<p><strong>Dstat<\/strong><br \/>\nDstat might have to be installed, but it is highly recommended as it has nearly every reporting tool you might need.<\/p>\n<p>Obviously there are many more tools available either installed by default, available freely for download, or from third party commercial vendors. Your particular platform and personal preferences will determine which tools best suit your needs. This list is far from comprehensive, but it is a good start towards increasing competency and reducing downtime.<\/p>\n<p><strong>Links:<\/strong><\/p>\n<p><a href=\"https:\/\/oracle-base.com\/articles\/misc\/unix-for-dbas#BasicFileNavigation\" rel=\"noopener\" target=\"_blank\">Unix commands for DBAs<\/a> &#8211; Oracle-Base: knowledge base article<\/p>\n<p>Microsoft&#8217;s attempt at being helpful  &#8211; <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/linux\/sql-server-linux-troubleshooting-guide\" rel=\"noopener\" target=\"_blank\">https:\/\/docs.microsoft.com\/en-us\/sql\/linux\/sql-server-linux-troubleshooting-guide<\/a><br \/>\nA really great video. Includes all the necessary tools, goes into setup of MSSQL and even discusses PowerShell in Linux (in beta at the time of this writing). I highly recommend watching it.<\/p>\n<p><a href=\"https:\/\/www.youtube.com\/watch?v=DXQrK2QNoZo\" rel=\"noopener\" target=\"_blank\">https:\/\/www.youtube.com\/watch?v=DXQrK2QNoZo<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>These are the ten most important commands to know as a DBA working in a Linux environment. This is not specific to any Linux distribution or single database platform necessarily, however, I have added some really good links specific to MSSQL Server running on Linux at the end. The commands presented here are available for [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":34799,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,55],"tags":[3721,60,3722],"class_list":["post-34787","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-sql-server","tag-linux-commands","tag-sql-server","tag-vi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Top Ten Linux Commands for MS SQL Server DBAs<\/title>\n<meta name=\"description\" content=\"These are the ten most important Linux commands to know as a DBA and are not specific to any Linux distribution or single database platform.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Top Linux Commands for MS SQL Server DBAs\" \/>\n<meta property=\"og:description\" content=\"These are the ten most important Linux commands to know as a DBA and are not specific to any Linux distribution or single database platform.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-18T21:26:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:08:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XTIVIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"Top Linux Commands for MS SQL Server DBAs\",\"datePublished\":\"2018-04-18T21:26:11+00:00\",\"dateModified\":\"2021-02-11T01:08:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\"},\"wordCount\":1328,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg\",\"keywords\":[\"linux commands\",\"sql server\",\"VI\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\",\"name\":\"Top Ten Linux Commands for MS SQL Server DBAs\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg\",\"datePublished\":\"2018-04-18T21:26:11+00:00\",\"dateModified\":\"2021-02-11T01:08:59+00:00\",\"description\":\"These are the ten most important Linux commands to know as a DBA and are not specific to any Linux distribution or single database platform.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg\",\"width\":557,\"height\":291,\"caption\":\"Linux Commands for MS SQL Server DBAs\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Top Linux Commands for MS SQL Server DBAs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Top Ten Linux Commands for MS SQL Server DBAs","description":"These are the ten most important Linux commands to know as a DBA and are not specific to any Linux distribution or single database platform.","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:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/","og_locale":"en_US","og_type":"article","og_title":"Top Linux Commands for MS SQL Server DBAs","og_description":"These are the ten most important Linux commands to know as a DBA and are not specific to any Linux distribution or single database platform.","og_url":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2018-04-18T21:26:11+00:00","article_modified_time":"2021-02-11T01:08:59+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"Top Linux Commands for MS SQL Server DBAs","datePublished":"2018-04-18T21:26:11+00:00","dateModified":"2021-02-11T01:08:59+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/"},"wordCount":1328,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg","keywords":["linux commands","sql server","VI"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/","url":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/","name":"Top Ten Linux Commands for MS SQL Server DBAs","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg","datePublished":"2018-04-18T21:26:11+00:00","dateModified":"2021-02-11T01:08:59+00:00","description":"These are the ten most important Linux commands to know as a DBA and are not specific to any Linux distribution or single database platform.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Top-Linux-Commands-for-MS-SQL-Server-DBAs.jpg","width":557,"height":291,"caption":"Linux Commands for MS SQL Server DBAs"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/linux-commands-ms-sql-server-dbas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Top Linux Commands for MS SQL Server DBAs"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/34787","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=34787"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/34787\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/34799"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=34787"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=34787"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=34787"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}