{"id":35185,"date":"2018-10-18T10:18:09","date_gmt":"2018-10-18T17:18:09","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=35185"},"modified":"2026-01-12T15:15:17","modified_gmt":"2026-01-12T22:15:17","slug":"database-101-database-glossary-of-terms","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/","title":{"rendered":"Database 101, Part 1: Database Glossary of Terms"},"content":{"rendered":"\n<p>This series is designed to be a database reference guide, covering databases from the very beginning. We&#8217;re calling it Database 101. There will be eight sections in this series.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-part-1-database-glossary-of-terms\">Part 1: Database Glossary of Terms<\/h2>\n\n\n\n<p>Let&#8217;s start with some background for people who know nothing about databases. If you already know this stuff, you might be bored, or it may be good information for a junior DBA or tech person. These are some basic terms you should know if you want to talk about databases with others. This is in no way an all-inclusive or advanced topic list.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\n<ul class=\"wp-block-list\">\n<li><strong>Database<\/strong> &#8211; This is an electronically organized collection of data. Technically, without adding the &#8220;electronic&#8221;, a Rolodex is a database (if you are old enough to know what that is). <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database<\/a> (bonus: <a href=\"https:\/\/en.wikipedia.org\/wiki\/Rolodex\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Rolodex<\/a>)<\/li>\n\n\n\n<li><strong>Relational Database<\/strong> &#8211; This is still an organized collection of data, but the organization has defined relationships between the data allowing it to be used in different ways. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Relational_database\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Relational_database<\/a><\/li>\n\n\n\n<li><strong>RDBMS<\/strong> &#8211; This is an initialism for Relational Database Management System: it&#8217;s a Relational Database, usually in the form of a software package.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/en.wikipedia.org\/wiki\/Relational_database_management_system\n<\/div><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\n<ul class=\"wp-block-list\">\n<li><strong>Engine<\/strong> &#8211; Sometimes used as &#8220;Database Engine.&#8221; Each vendor has their own, it&#8217;s the software package that manipulates that data that you want to put into or pull out of the database. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_engine\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_engine<\/a><\/li>\n\n\n\n<li><strong>SQL<\/strong> &#8211; Another acronym, this time for Structured Query Language. Think of it as the language you use to work with an RDBMS. But, you need to be careful what SQL you are talking about since each vendor makes their own tweaks or extensions to it. Some basic examples of SQL statements would be things like &#8220;select \u2026&#8221;, &#8220;Insert \u2026&#8221;, &#8220;update \u2026&#8221;, &#8220;delete \u2026&#8221; <a href=\"https:\/\/en.wikipedia.org\/wiki\/SQL\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/SQL<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p>&#8211; Bonus SQL tidbit: You might want to know how to pronounce &#8220;SQL&#8221;. Do you say the letters &#8220;S-Q-L&#8221; or do you say &#8220;Sequel&#8221;? There is plenty of debate, you can Google it and have a boatload of reading material, but it pretty much comes down to saying it however you like. The ISO Standard describing the language says you say the letters &#8220;S-Q-L&#8221;. Depending on which software vendor you choose, they might go either way. There actually used to be a &#8220;SEQUEL&#8221; which was shortened to &#8220;SQL&#8221; once lawyers got involved, which is why people still pronounce it with all the extra vowels.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>ANSI SQL<\/strong> &#8211; Or ANSI Database SQL, this is the standard defined for SQL, that again, not all vendors exactly meet for various reasons. Just know that not all SQL is portable between vendor database platforms, you most likely need to tweak it and in some cases rewrite it. <a href=\"https:\/\/en.wikipedia.org\/wiki\/SQL#Interoperability_and_standardization\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/SQL#Interoperability_and_standardization<\/a><\/li>\n\n\n\n<li><strong>Query<\/strong> &#8211; This is how you ask a database a question using SQL, actually, it&#8217;s the actual question. How you ask (execute) it will be different (and how you write it due to the above-mentioned SQL differences) for each database vendor.<\/li>\n\n\n\n<li><strong>Table<\/strong> &#8211; this is an organized set of related data stored within a database and is made up of columns and rows. An example might be all the names or addresses in an address book database. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Table_(database)\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Table_(database)<\/a><\/li>\n\n\n\n<li><strong>Row<\/strong> &#8211; This is a set of grouped related data in a table in a relational database. Like your entry in an address book, your name, address, telephone number, and email address in the address book table. Also referred to as a &#8220;tuple.&#8221; <a href=\"https:\/\/en.wikipedia.org\/wiki\/Row_(database)\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Row_(database)<\/a><\/li>\n\n\n\n<li><strong>Column<\/strong> &#8211; This is a set of data values representing the same item across multiple rows in a table of a relational database. So, in the address book example, where we had your name, address, telephone number, and email address being a row in a table, all the email addresses across all the &#8220;address book&#8221; rows would be considered a column. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Column_(database)\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Column_(database)<\/a><\/li>\n\n\n\n<li><strong>Schema<\/strong> &#8211; This is the definition of the database you are working with, this defines all the tables, rows, columns, and other mysterious things that make up the database. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_schema\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_schema<\/a><\/li>\n\n\n\n<li><strong>Index<\/strong> &#8211; This is a feature of most database engines that provides you a shortcut way (think &#8220;faster&#8221;) to find your data in the tables. Think about it in the address book example again, to find someone you would need to go row by row. With an index, you can jump to all the names that start with an &#8220;S.&#8221; <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_index\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_index<\/a><\/li>\n\n\n\n<li><strong>Encryption<\/strong> &#8211; Same as with your mobile phone (you have your phone encrypted, right?), except it encrypts stuff in the database to make it harder for people to see or steal, but allows you to still work with the data when you need to do so. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_encryption\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_encryption<\/a><\/li>\n\n\n\n<li><strong>NULL<\/strong> &#8211; this is nothing, literally. When talking databases and the value of something, it&#8217;s not true or false, it&#8217;s not a positive, negative or zero number, it&#8217;s not a zero-length string of characters. It&#8217;s nothing, nada, the value is nonexistent. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Null_(SQL)\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Null_(SQL)<\/a><\/li>\n\n\n\n<li><strong>OLTP<\/strong> &#8211; An acronym for Online Transaction Processing. This is usually used to define how a database is used. If the database processes mostly transactions (units of work, like credit card charge records) it&#8217;s considered OLTP. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Online_transaction_processing\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Online_transaction_processing<\/a><\/li>\n\n\n\n<li><strong>OLAP<\/strong> &#8211; An acronym for Online Analytical Processing, which usually defines a database system that is more designed to process data for reporting as opposed to doing transactions. These are the kind of database all those TPS reports run against. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Online_analytical_processing\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Online_analytical_processing<\/a><\/li>\n\n\n\n<li><strong>NoSQL<\/strong> &#8211; Basically a non-relational database where the &#8220;relationship&#8221; aspect of organizing data is not used. It&#8217;s newer technology than relational and there are many reasons why you would want one. If you have a lot of different types of data you want to store together, like images, PDF files, or videos where the structure of the data isn&#8217;t just numbers and strings of letters, a NOSQL database is probably a better choice. <a href=\"https:\/\/en.wikipedia.org\/wiki\/NoSQL\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/NoSQL<\/a><\/li>\n\n\n\n<li><strong>Backup\/Archive<\/strong> &#8211; How do you archive your database, keep it safe so that you can get it back (&#8220;restore&#8221; it) if there is an issue and avoid any loss of data. You should always, and I mean <em>always<\/em>, have a backup and make sure you not only know how to restore it, but test the process regularly. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Backup\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Backup<\/a><\/li>\n\n\n\n<li><strong>Replication<\/strong> &#8211; At the basic level related to a database, replication is storing your data in more than one spot. Most database engines have a native method to put another copy on another server for reporting, redundancy, or other reasons. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Replication_(computing)#Database_replication\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Replication_(computing)#Database_replication<\/a><\/li>\n\n\n\n<li><strong>Disaster Recovery<\/strong> &#8211; Otherwise known as DR, this encompasses all the tools and procedures involved with protecting your database investment. In terms of a database, it&#8217;s how you keep it running when there is a software problem, the computer crashes, or a disk drive goes bad. You have a database disaster, so how do you recover from it? You should always have a DR Plan. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Disaster_recovery\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Disaster_recovery<\/a><\/li>\n\n\n\n<li><strong>High Availability<\/strong> &#8211; Very often abbreviated as just HA, it covers the qualities of a database (or other) system that allows it to be resilient and keep providing service to its users. This could involve redundant hardware and\/or redundant copies of the data (replication). Think about having the ability to have your regular processing failover to another place so it can keep going. <a href=\"https:\/\/en.wikipedia.org\/wiki\/High_availability\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/High_availability<\/a><\/li>\n\n\n\n<li><strong>Administrator<\/strong> &#8211; Otherwise known as a DBA (Database Administrator), that&#8217;s the person that takes care of your database, they make sure it&#8217;s backed up, try to keep it tuned so it runs fast, and resilient so it&#8217;s always available. That&#8217;s what we do for people like you. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_administrator\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_administrator<\/a><\/li>\n\n\n\n<li><strong>Tuning<\/strong> &#8211; Tuning is something that the XTIVIA team excels at and, usually, something DBAs take care of for you. It&#8217;s making sure the database runs as fast as it can. Very often, when you ask the database a question (query) the database needs some help, maybe an &#8220;index&#8221; or some other tweaking to make the answer come back really fast. Think: what they used to do to car engines before they all got onboard computers. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_tuning\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_tuning<\/a><\/li>\n\n\n\n<li><strong>Maintenance<\/strong> &#8211; For a database, maintenance is taking care of it by doing all the stuff a DBA does. In a car, this is changing the oil, filters, and checking the tire pressure of a car when the car has no &#8220;check engine&#8221; light and you can&#8217;t see the tires. With a database, with no maintenance, it might be slow, you might lose data, or it might just not work. We do this for clients all the time. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Database_tuning#Database_maintenance\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Database_tuning#Database_maintenance<\/a><\/li>\n\n\n\n<li><strong>RTO<\/strong> &#8211; Another acronym that is for Recovery Time Objective. When used in context of a database it basically means how long a business can afford to have a database not functioning if it stops working and stay in business. <a href=\"https:\/\/en.wikipedia.org\/wiki\/Recovery_time_objective\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Recovery_time_objective<\/a><\/li>\n\n\n\n<li><strong>RPO<\/strong> &#8211; Acronym for Recovery Point Objectives, and when talking databases refers to the amount of data, as a period of time, a business can afford to lose if there is a problem. Is it OK if we lose a day&#8217;s worth of data (think credit card transactions), even if it&#8217;s only for a few hours or a few seconds? <a href=\"https:\/\/en.wikipedia.org\/wiki\/Recovery_point_objective\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Recovery_point_objective<\/a><\/li>\n<\/ul>\n\n\n\n<p>So, you need a database or have a database, but what you need is an expert that knows how to wrangle that database. Maybe you have a team of DBAs and they need an extra set of hands or you need someone to be on call when your staff is off-duty. We can help you set it up right from the start and manage it going forward. You need to spend time managing your business, not learning how to tune or troubleshoot a database\u2014that&#8217;s where XTIVIA comes in to be part of your team.<\/p>\n\n\n\n<p>See part 2 of this series, Popular Databases, <a href=\"https:\/\/virtual-dba.com\/database-101-popular-databases-microsoft-sql-server\/\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This series is designed to be a database reference guide, covering databases from the very beginning. We&#8217;re calling it Database 101. There will be eight sections in this series. Part 1: Database Glossary of Terms Let&#8217;s start with some background for people who know nothing about databases. If you already know this stuff, you might [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":35192,"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,3918],"tags":[3917],"class_list":["post-35185","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-database","tag-database-terms"],"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>Database 101, Part 1: Database Glossary of Terms - Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts<\/title>\n<meta name=\"description\" content=\"New to databases? Learn the basics with our Database 101 series. Part 1 covers essential terms, from database types to SQL, backup, and recovery.\" \/>\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\/database-101-database-glossary-of-terms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Database 101, Part 1: Database Glossary of Terms\" \/>\n<meta property=\"og:description\" content=\"New to databases? Learn the basics with our Database 101 series. Part 1 covers essential terms, from database types to SQL, backup, and recovery.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/\" \/>\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-10-18T17:18:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-12T22:15:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.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=\"Tony Salerno\" \/>\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=\"Tony Salerno\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/\"},\"author\":{\"name\":\"Tony Salerno\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/03894f16979251d8919bad024a0f06c1\"},\"headline\":\"Database 101, Part 1: Database Glossary of Terms\",\"datePublished\":\"2018-10-18T17:18:09+00:00\",\"dateModified\":\"2026-01-12T22:15:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/\"},\"wordCount\":1777,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg\",\"keywords\":[\"database terms\"],\"articleSection\":[\"Blog\",\"Database\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/\",\"name\":\"Database 101, Part 1: Database Glossary of Terms - Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg\",\"datePublished\":\"2018-10-18T17:18:09+00:00\",\"dateModified\":\"2026-01-12T22:15:17+00:00\",\"description\":\"New to databases? Learn the basics with our Database 101 series. Part 1 covers essential terms, from database types to SQL, backup, and recovery.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg\",\"width\":557,\"height\":291},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Database 101, Part 1: Database Glossary of Terms\"}]},{\"@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\/03894f16979251d8919bad024a0f06c1\",\"name\":\"Tony Salerno\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/247462c60c14b05b2a5241e6034e66bf1a5a328abfa4a7c5f80b7d85ae37124c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/247462c60c14b05b2a5241e6034e66bf1a5a328abfa4a7c5f80b7d85ae37124c?s=96&d=mm&r=g\",\"caption\":\"Tony Salerno\"},\"url\":\"https:\/\/virtual-dba.com\/author\/tony-salerno\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Database 101, Part 1: Database Glossary of Terms - Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"New to databases? Learn the basics with our Database 101 series. Part 1 covers essential terms, from database types to SQL, backup, and recovery.","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\/database-101-database-glossary-of-terms\/","og_locale":"en_US","og_type":"article","og_title":"Database 101, Part 1: Database Glossary of Terms","og_description":"New to databases? Learn the basics with our Database 101 series. Part 1 covers essential terms, from database types to SQL, backup, and recovery.","og_url":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2018-10-18T17:18:09+00:00","article_modified_time":"2026-01-12T22:15:17+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg","type":"image\/jpeg"}],"author":"Tony Salerno","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Tony Salerno","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/"},"author":{"name":"Tony Salerno","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/03894f16979251d8919bad024a0f06c1"},"headline":"Database 101, Part 1: Database Glossary of Terms","datePublished":"2018-10-18T17:18:09+00:00","dateModified":"2026-01-12T22:15:17+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/"},"wordCount":1777,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg","keywords":["database terms"],"articleSection":["Blog","Database"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/","url":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/","name":"Database 101, Part 1: Database Glossary of Terms - Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg","datePublished":"2018-10-18T17:18:09+00:00","dateModified":"2026-01-12T22:15:17+00:00","description":"New to databases? Learn the basics with our Database 101 series. Part 1 covers essential terms, from database types to SQL, backup, and recovery.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Database-101-Part-1-Database-Glossary-of-Terms.jpg","width":557,"height":291},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/database-101-database-glossary-of-terms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Database 101, Part 1: Database Glossary of Terms"}]},{"@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\/03894f16979251d8919bad024a0f06c1","name":"Tony Salerno","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/247462c60c14b05b2a5241e6034e66bf1a5a328abfa4a7c5f80b7d85ae37124c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/247462c60c14b05b2a5241e6034e66bf1a5a328abfa4a7c5f80b7d85ae37124c?s=96&d=mm&r=g","caption":"Tony Salerno"},"url":"https:\/\/virtual-dba.com\/author\/tony-salerno\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/35185","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\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=35185"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/35185\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/35192"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=35185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=35185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=35185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}