Resources  
  • What Is The Difference Between DBMS And RDBMS?Sep 13, 2022. DBMS (Database Management System) and RDBMS (Relational Database Management System) are both software systems used to manage and organize databases. The main difference between the two lies in the way they handle data and the relationships between data. A DBMS is a software application that allows users to interact with databases, providing an interface to create, retrieve, update, and delete data. RDBMS is a specific type of DBMS that manages databases based on the relational data model.
  • Overview Of Oracle Package DBMS METADATAJul 21, 2016. In this article, you will learn about Oracle Package DBMS METADATA.
  • Relations between Dataset in DBMSJun 12, 2024. A relationship in DBMS links two or more data sets. This article explores types of relationships: one-to-one, one-to-many, and many-to-many, and their implementations in databases.
  • What Are The Twelve Codd's Principles In DBMSJun 05, 2024. Edgar F. Codd's twelve rules define relational database management systems (RDBMS), ensuring data integrity and consistency. These guidelines aid in robust database design and management, facilitating efficient and reliable data handling.
  • Entity and Entity Relationships in DBMSMay 21, 2024. An Entity-Relationship (ER) model visually represents data and relationships in a business domain, aiding database design. It simplifies understanding of complex databases and enhances communication between users and designers.
  • Concurrency Control in DBMSNov 26, 2023. A crucial component of database management systems (DBMS) that ensures data integrity and consistency in multi-user situations is concurrency control.
  • Query Processing In DBMSJul 14, 2022. Query Processing in DBMS is the approach of selecting the best strategy or plan which can be used to respond to a database request.
  • Introduction To DBMSJan 01, 2016. A Database Management System (DBMS) is a software tool that enables users to create, manipulate, and manage databases. It acts as an intermediary between the user and the database, providing an organized and efficient way to store, retrieve, and modify data. DBMS allows users to define the data structure, set up relationships between data elements, and control access to the data. It plays a crucial role in modern data-driven applications, providing a secure and scalable platform for data storage and retrieval. Understanding the basics of DBMS is essential for anyone involved in working with data, whether as a developer, data analyst, or database administrator.
  • Introduction to SQL Server & Its HistorySep 02, 2024. Learn how to create, manage, and query databases using SQL Server, with a focus on essential concepts like database design, data storage, and SQL queries. Perfect for beginners aiming to build a strong foundation in database management.
  • Best Practices For Effective Database Design In SQL ServerMay 28, 2024. In this article, we will be exploring the best practices for effective database design in SQL Server. Creating an SQL Server database involves best practices like understanding requirements, normalization, choosing data types, indexing, and security.
  • Understanding OLTP and OLAP for Effective Data ManagementApr 19, 2024. This article explores OLTP and OLAP, two crucial systems for data management. OLTP handles real-time transactions, while OLAP analyzes historical data to uncover valuable insights. Learn how they work together for effective data management.
  • How To Use Cross Join In MySQLMay 12, 2023. We learn cross-joins with the help of an example
  • How To Use Mathematical Functions In Mysql?Apr 24, 2023. By including them in your SQL query, you can use mathematical functions in MySQL. For instance, you can use the ABS() function to determine a number's absolute value or the ROUND() function to round a number to a specified number of decimal places. You can also carry out mathematical operations in MySQL by using the operators +, -, *, and /.
  • Database Machine TaxonomyJun 27, 2022. In the traditional approach of database system, the data is used to be stored in secondary storage devices. Due to this, the ability to perform any arithmetical or logical computing operation is limited to the central processor and the data has to be moved to the main memory from the secondary storage devices, attached to the central processor.
  • Understanding Database Management Systems Sep 20, 2021. In this article, you will learn about Database Management systems.
  • Split Alphabets From Alphanumeric String In SQL ServerFeb 03, 2021. This article gives an explanation about how to split alphabets from the alphanumeric string in an SQL server. Here I'll also explain how to create a function in an SQL server.
  • Cursor In SQL Server With Syntax And ExampleJan 14, 2021. This article provides an explanation about how you can use and set up a basic cursor in SQL Server. many developers/programmers/people those who work with Microsoft SQL Server will have at least heard talk about the cursors. Even if any developers/programmers/people know on a basic level what SQL Server cursors do, they are not always certain when to use cursors and how to write the code to use cursors.
  • SQL Server Create And Execute Parameterized Stored Procedure From Another Stored ProcedureJan 11, 2021. In this article am going to explain how to create and execute parameterized stored procedure From another stored procedure, how to prevent SQL Injection attacks, how to insert data in the table using stored procedure in SQL Server with example. And also show you how you can use the procedure in SQL Server with an example.
  • How To Create Missing Index From Execution PlanJan 07, 2021. In this article, I am going to explain how to create a missing index from an SQL server query execution plan and also show you how you can improve your query execution performance and run your query faster. In performance tuning indexing play an important role and helps to run and execute your query faster so, this article also gives basic information about indexing in SQL server such as what is an index, what are the types of index, how to identify the current index from query execution plan and how to improve query performance and how to run query faster in SQL server database.
  • Introduction To DatabasesOct 02, 2019. This article is for students and newcomers to understand basics and types of databases and their history.
  • What Are NoSQL DatabasesJul 28, 2019. NoSQL databases are the databases that do not use SQL as their primary data access language. Graph database, network database, object database, and document databases are common NoSQL databases. This article answers the question: What is a NoSQL database?
  • What Is A Network Database?Jul 26, 2019. Network databases represent data in a tree-like structure. In this article, we'll learn basics of hierarchical database management systems and how data is represented and stored in a hierarchical database.
  • What Is A Document DatabaseJul 24, 2019. A document database is a NoSQL database. This article explains what a document Db is and what are the most popular document databases.
  • What Is A Column Store DatabaseJul 23, 2019. Column Store Databases store the data in columns rather than rows. In this article, let's understand what column databases are and what are the most popular column store DBMS.
  • What is a Hierarchical DatabaseJul 22, 2019. Hierarchical databases represent data in a tree-like structure. In this article, we'll learn basics of hierarchical database management systems and how data is represented and stored in a hierarchical database.
  • Learn Basics Of PL/SQL Oracle From Scratch In 7 Days - Day TwoMar 27, 2016. This article is based on learning basics of Oracle and SQL concepts in order to be an Oracle PL/SQL developer. This is day two of the article series.
  • SQL For Beginners: NULL ValuesFeb 01, 2016. In this article series 'SQL For Beginners', we will learn about the NULL Values in SQL.
  • SQL For Beginners - DML StatementsJan 25, 2016. In this article of the series "SQL For Beginners", you will learn about the various DML Statements of SQL.
  • SQL For Beginners - DDL StatementsJan 21, 2016. In this article you will learn how to create, alter, and drop tables in SQL.
  • SQL For Beginners - LIKE And IN ClauseJan 19, 2016. This article will help you understand the Like and In Clause of SQL.
  • SQL For Beginners - OperatorsJan 15, 2016. This article gives you an overview of the various SQL Operators.
  • SQL For Beginners - WHERE ClauseJan 09, 2016. This article will help you to learn the WHERE clause and expressions used with it.
  • SQL For Beginners - SELECT StatementJan 06, 2016. This article will help you to learn about SELECT statements in SQL.
  • Learning Microsoft Access: Part 1Jun 05, 2015. In this article you will learn about Microsoft Access.
  • Introduction to Big DataJun 11, 2014. This article provides an introduction to Big Data.
  • How to Select Employees Who Were Born on the Last Day of the Month?Mar 08, 2012. To select employees who were born on the last day of the month from a database or employee records, you'll need to use SQL or a similar query language to filter the data based on the birth dates. Here's a step-by-step guide on how to achieve this:
  • Learning JDBC (Java Database Connectivity)Sep 28, 2011. JDBC is a technology to establish communication between a java program and a DBMS. It uses SQL (structure query language) for storing, updating, or removing data from a DBMS.
  • Registration page in JSPSep 26, 2011. In this article we will learn how create to a simple registration page using JSP.
  • Database and SQL Server FAQ: Part IDec 31, 2007. This article is a primer on databases and Sql Server. Similar to a FAQ, it is written with questions that could potentially be asked in a job interview.