
RDBMS In-Depth
Mastering SQL and PL/SQL Concepts, Database Design, ACID Transactions, and Practice Real Implementation of RDBM (English Edition)
- English
- ePUB (mobile friendly)
- Available on iOS & Android
RDBMS In-Depth
Mastering SQL and PL/SQL Concepts, Database Design, ACID Transactions, and Practice Real Implementation of RDBM (English Edition)
About this book
Understanding and implementing the database management systems concepts in SQL and PL/SQL
Key Features
- Practice SQL concepts by writing queries and perform your own data visualization and analysis.
- Gain insights on Entity Relationship Model and how to implement in your business environment.
- Series of question banks and case-studies to develop strong hold on RDBMS concepts.
Description
Relational Database Management Systems In-Depth brings the fundamental concepts of database management systems to you in more elaborated learning with conceptual clarity of RDBMS. This book brings an extensive coverage of theoretical concepts on types of databases, concepts of relational database management systems, normalization and many more. You will explore exemplification of Entity Relational Model concepts that would teach the readers to design accurate business systems. Backed with a series of examples, you can practice the fundamental concepts of RDBMS and SQL queries including Oracle's SQL queries, MySQL and SQL Server.In addition to the illustration of concepts on SQL, there is an implementation of crucial business rules using PL/SQL based stored procedures and database triggers.Finally, by the end of this book there is a mention of the useful data oriented technologies like Big Data, Data Lake etc and the crucial role played by such techniques in the current data driven decisions.Throughout the book, you will come across key learnings and key terms that will help you to understand and revise the concepts learned. Along with this, you will also come across questions and case studies by the end of every chapter to prepare for job interviews and certifications.
What you will learn
- Depiction of Entity Relationship Model with various business case studies.
- Illustration of the normalization concept to make the database stronger and consistent.
- Designing the successful client-server applications using PL/SQL concepts.
- Learning the concepts of OODBS and Database Design with Normalization and Relationships.
Who this book is for
This book is meant for academicians, students, developers and administrators including beginners and readers experienced in some other programming languages and database systems.
Table of Contents
1. Database Systems Architecture
2. Database Management System Models
3. Relational query languages
4. Relational Database Design
5. Query Processing and Optimization
6. Transaction Processing
7. Implementation Techniques
8. SQL Concepts
9. PL/SQL Concepts
10. Collections in PL/SQL
11. What Next?
About the Author
Dr. Madhavi Vaidya is an experienced and qualified Assistant Professor with a demonstrated history of working in the education management industry. Skilled in programming languages like C, Python, SQL, Oracle Database, Dr. Madhavi has understanding and knowledge of Data Analytics, Information Retrieval, Software Engineering and Project Management.She has strong education professional with a Master of Computer Applications and Doctor of Philosophy in the subject of Computer Science and Engineering. One of the key areas of her research is Big Data analytics using Hadoop-MapReduce and various Big Data technologies. She is a Content Writer @Udemy and various other online courses are in her credit including BPB publications.Ample research papers are in her credit, presented and published in various National and International conference along with research chapters and articles in ACM, IEEE, Elsevier and Developer IQ magazine. Reviewing articles and research papers- Acting as a reviewer for the journals like IEEE Access, ASSA, IGI Global and many other prestigious journals. LinkedIn Profile: https://www.linkedin.com/in/dr-madhavi-v-01882327
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
CHAPTER 1
Database Systems Architecture
Introduction
Structure
- Introduction
- Purpose of database system
- Network architecture
- Views of data
- Database system architecture
- Data models
- Conclusion
- Questions
Objectives
- Understand the need for database management system (DBMS)
- Discuss the use of DBMS over file system
- Know the data models, like hierarchical, network, and relational models
- Identify the relational model along with the advantages
Database management system
- Banking: Customers, accounts, loan, transactions
- Airlines: Reservations, schedules
- Universities: Registration, grades
- Sales: Customers, products, purchases
- Manufacturing: Production, inventory, orders, supply chain
- Human resources: Employee records, salaries, tax deductions
| CustNum | CustName | Address |
| 1 | A | Mumbai |
| 2 | B | Delhi |
| 3 | C | Jaipur |
| OrderNum | OrderDate | Amount |
| 101 | 01-01-2009 | 12340 |
| 102 | 02-02-2009 | 20075 |
| 103 | 13-06-2009 | 9740 |
| OrderNum | OrderDate | Amount | CustNum | CustName | Addr |
| 101 | 01-01-2009 | 12340 | 1 | A | Mumbai |
| 102 | 02-02-2009 | 20075 | 2 | B | Delhi |
| 103 | 13-06-2009 | 9740 | 1 | A | Mumbai |
- If the customer with custnum 1 shifts to Indore, then this change should be done not only in customerās file but in all the records of
Ordersfile. This can be a difficult task, since otherwise data will be inconsistent. CustNum & OrderNumidentify a particular customer or order. While giving these numbers, there are chances that the same number is given to another customer or order. There are chances that a user may delete the customerās record from the customerās file when his/her orders are pending.- If the same file is accessed by many users ā the administrative office and the proprietor ā then the proprietor as well as office person can modify it. It is difficult to set read/write/modify permissions for owner and read permissions for clerk.
- One more important point is to check whether the values entered under columns, such as
order_amt < 0or customer address may be entered as blank too.
- Difficulty in accessing data: Suppose one wants to find the data of those orders which were placed on 1st January 2009, and the order amount>10000 in such cases. A conventional file processing environment does not allow the needed data to be retrieved in a convenient and efficient manner. This can be done easily by using databaseās management system.
- Atomicity of updates: Failures may leave database in an inconsistent state with partial updates carried out. For example, transfer of funds from one account to another should either complete or not happen at all.
- Simultaneous (concurrent) access by multiple users: Uncontrolled concurrent accesses can lead to inconsistencies. For example, the orders placed by the proprietor and/or the administrative staff; both would not come to know which order was placed at what time, and how many items were there in balance or in store.
- Supervision and regulations: On data it can be difficult since many application programs should be coordinated.
- Security problems: Enforcing security constraints could be difficult in an ad-hoc manner.
Advantages of DBMS
- Reduction of redundancies: Centralized control of the data by the DBA avoids unnecessary duplication of data. DBA reduces the total amount of data storage required. In this manner, the redundancies that exist are controlled and the system ensures that these multiple copies are consistent.
- Reduction in keeping number of files: When the same data is stored in a number of files, it brings in data duplication. In such cases, if the data is modified at one place, the data would be copied in each of the files. This happens as follows:
- Storage space gets wasted.
- Processing time may be wasted as more data is to be handled.
- Inconsistencies may be created.
- Shared data: Sharing of data is allowed by any number of application programs or users.
- Integrity: Data integrity means that the data contained in the database is both accurate and consistent. Data values being entered are checked to ensure that they fall within a specified range, and are of the correct format.
- Security: Data is very important for an organization and it should be kept confidential. Any unauthorized person must not access such confidential data. The DBA, who has the ultimate responsibility to take care of the data in DBMS, can ensure the...
Table of contents
- Cover Page
- Title Page
- Copyright Page
- Dedication Page
- About the Author
- About the Reviewers
- Acknowledgement
- Preface
- Errata
- Table of Contents
- 1. Database Systems Architecture
- 2. Database Management System Models
- 3. Relational Query Languages
- 4. Relational Database Design
- 5. Query Processing and Optimization
- 6. Transaction Processing
- 7. Implementation Techniques
- 8. SQL Concepts
- 9. PL/SQL Concepts
- 10. Collections in PL/SQL
- 11. Whatās Next?
- Index