Object Relational Mapping Method in Designing Database Structure for Mosque Management Information System

Size: px
Start display at page:

Download "Object Relational Mapping Method in Designing Database Structure for Mosque Management Information System"

Transcription

1 Object Relational Mapping Method in Designing Database Structure for Mosque Management Information System Nidaul Hasanati 1, Rifal Rinaldi 2, Winangsari Pradani 3 Abstract Mosque for Muslims actually not just for prayers and other rituals of worship, but it s the center of all activities of Muslims. Prosperity of the mosque is a noble thing in Islam, so the mosque has many activities to be undertaken, like praying, da wah, education, healing conseling, Qur an club, Islamic youth and student club, Islamic arts, and so on. Besides praying, many other activities sometimes can not informed easily to the community without coming directly to the mosque. This paper contribute how to build mosque activities management information system, escpecially the database structure, to support data recording, scheduling of activities, as well as providing a good display is essential to attract the attention of external users to access information and also engage in the mosque activities. This paper focus in designing database structure using object-oriented method and then ORM (object Relational Mapping), that will be able to simplify both system developers that use the OODB (Object Oriented Database) or RDBMS (Relational Database Management System) to build this system. Keywords Object Relational Mapping, Mosque, Database I. INTRODUCTION Mosque for Muslims actually not just for prayers and other rituals of worship, but it s the center of all activities of Muslims. At the time of the Messenger Muhammad, the Prophet's Mosque serves as a place of worship, education center, information center, place for settling disputes, economic center, and also social and political center [1]. So, the mosque for Muslims has huge potential to build all aspects of human life. Prosperity of the mosque is a noble thing in Islam, so the mosque has many activities to be undertaken, like praying, da wah, education, healing conseling, Qur an club, Islamic youth and student club, Islamic arts, and so on. Praying is a usual activities in the mosque, but many other activities can not informed easily to the community without coming directly to the mosque. Nidaul Hasanati 1 is Lecturer of Information Engineering, Science and Technology Faculty, University of Al Azhar Indonesia; Phone: ; ( nida@uai.ac.id). Rifal Rinaldi 2, was also from Information Engineering, Science and Technology Faculty, University of Al Azhar Indonesia; (e -mail: rifalsehat@yahoo.com). Winangsari Pradani 3 is is Lecturer of Information Engineering, Science and Technology Faculty, University of Al Azhar Indonesia; (e -mail: winangsari@uai.ac). From the observations and interviews, most of data in mosque are still in the papers, that make difficult to look for. Any difficulties are found when make a schedule, sharing the exact composition of the schedule preacher, and determining the appropriate title or theme of sermon/lecture that has been done or not. Manual content documentation of the sermon, sometimes are difficult to search as well as slow down the performance time. Besides, the presence of preachers sometimes can t be controlled by mosque committee because it s not recorded in a neat yet available. Eventhough the management of the mosque want to know the responsibility of the preacher concerned to meet the schedule of the mosque, and also need decision-making regarding the performance of the preachers. Mosque management information system in this paper helps to manage the activities carried by mosque, include: First, the system can be recording data; such as activities and type of activities, imams, preacher/speaker, title and content of the sermon/lecture. Second, scheduling activities of mosques, both routine activities, such as praying 5 times, 5 minutes speach, sermon on Friday, Eid, Eid al-adha, etc; and additional activities such as assemblies of science, religion consulting, area of youth activities, education, healing conseling, Qur an club, Islamic arts, and so on. Third, providing attractive and good display to internal and external users to access information and also engage in the mosque activities. In 2013, Ministry of Religious Affairs of the Republic of Indonesia inaugurated The Mosque Information Systems called Sistem Informasi Masjid (SIMAK) [2]. This information systems can facilitate the process of data inventory mosques and prayer rooms in Indonesia. Mosque Information System which can be a tool of work units to plan, manage and monitor the management of assistance and data management mosque/prayer rooms in Indonesia. Different from the above, this article regarding how to design management information systems to handle activities in the mosque, particularly to design database structure. Because of many activities will be held in mosque, it s suitable when used object oriented design method. Currrently, information and communication technology is growing rapidly, so it can be a reference for system developers to buiild this system both in web based system [3] or mobile based system; by using the OODB (Object Oriented Database) or structural pattern with RDBMS (Relational Database Management System). This paper contribute how to 142

2 map object oriented design method to structural pattern in relational database, in terms of mosque activities, with still maintaining the performance of the database. examine these attributes and explore association types by these attributes. II. BASIC THEORY Object Relatioal Mapping is how domain model are mapped to structures in the relational database [4]. Mainly, there are patterns and techniques for mapping of objectoriented structures, such as inheritance hierarchies, aggregations, relations. While coping with relations we will consider different kinds of relations by cardinality and orientation. Strategies for mapping of inheritance, there are 3 ways: a) Hierarchy to a single table, this is probably the simplest approach for mapping of inheritance structures. Whole inheritance hierarchy is mapped to a single table, which should be named after most general class in the hierarchy. The table is equal to union of attributes of all classes in a hierarchy. Figure 1. Hierarchy to a single table a) Each class to its own table, every class in inheritance hierarchy is mapped to its own table. Note that also abstract classes have their tables. Every table has attributes of its corresponding class. There are no attributes inherited from super classes here. Figure 4. 1:1 association mapping Figure 5. 1:n association mapping Figure 6. m:n association mapping We can divide object associations into groups by criteria such as multiplicity, orientation or order. We will examine all of these criteria from the view of object-relational mapping. We will not consider deeply how multiplicity, orientation or order could be implemented in object-oriented environments. Instead, we will look how we can map these to relational database. Figure 2. Each class to its own table b) Concrete class to its own table. By this pattern we map every concrete class from inheritance hierarchy to its own table. Attributes of this class as well as attributes of all parent classes are mapped to this table. Figure 3. Concrete class to its own table Objects can be connected together and can reference each other. These connections are called associations, shows in Figure 4-6. Special cases of association are composition and aggregation. Associations have some attributes. We will Figure 7. Foreign key Agregation For mapping agregation, we can join the two class, becoming 1 table, both 1:1 agregattion or 1:n agregation. We can join the table As we need no database join operations, this approach brings good performance. On the other hand, maintainability of such solution is very poor. Imagine, if there is a change in the database schema, will change the structure of the table. For example, the addition or subtraction of attributes, then we will increase or decrease the amount of columns in the table. When using the Foreign key solution of aggregation pattern, we create separate database table for aggregated object type. Of course we have database table for aggregating object type. We add foreign key attribute to this table. 143

3 III. DISCUSSION A. Usecase Diagram These are the highest level of business requirements model of the system, pictured by usecase diagram in Figure 1and 2. This usecase diagram shows the interaction between actors and system. Actors in this systems are head of mosque management who view reports and control activities of mosque and the daily operational management who enter data and manage data in the system. In general, the capabilities of system are : 1) Manage Activities 2) Manage Person in Charge 3) Scheduling Activities 4) Documenting lecture/sermon material 5) Manage Rooms 6) Create Report 7) Print Documents Figure 9. Use Case Diagram (2) Figure 8. Use Case Diagram(1) B. Class Diagram Figure 10 shows the class diagram of The Mosque Management Information System. The structure of the pattern of the strategies used in class diagram using inheritance mapping strategy pattern Each class to its own table. Because it has several advantages, among others: 1. Can observe a heavy load on the root class table. 2. The use of this pattern is convenient in this situations where there is a significant overlap between the types. 3. The relational model is very flexible so maintainable (treatment) and an almost ideal spaceconsumption. But he downside of this pattern is a poor performance, because we need many join table to get full information about the object, roughly equal to the depth of the class inheritance hierarchy. Why we didn t use the Hierarchy to a single table or Concrete class to its own table for mapping inhetitance? If we use Hierarchy to a single table, drawback of resulting database schema is its space consumption. There are lots of NULLs and we can observe that with bigger amount of classes we have bigger amount of wasted space. Mosque has many types of activities, if the becoming only one table, there will be lots of NULLs when it s not a type of activitiy. Eventhough this structure has good performance because we need only one select to get particular object with all its properties. We need no additional joins. It has has maintenance of resulting scheme 144

4 is very easy. We also didn t use Concrete class to its own table, because we can also observe that even a small change causes a change in the object model of the whole object of the child tables turned. The use of this pattern is suitable in a situation where we assume that the object model will not change very often, while it could be activities in the mosque is often change Figure 11. Generic Table Structure C. Generic Table Structure Then generic table structure can be displayed in Figure 11. This section will explain the relationship table database created in this system, indicating the primary key that is marked with PK symbol, and foreign key marked with FK symbol that connect with othertables. IV. CONCLUSION Object Relatioal Mapping is how domain model are mapped to structures in the relational database. Each type of mapping strategies above has positive and negative impact for the performance of database. We have to consider what the best solution for mapping. The mapping strategy that used for mapping inheritance in this system is Each class to its own table. Because mosque has many activities and many types of activites that also can change anytime, so we have to choose the flexible model to maintain the data without changing the database structure and wasted a lot of space consumption. ACKNOWLEDGMENT The author would like to thank Lembaga Penelitian dan Pengabdian Masyarakat Universitas Al Azhar Indonesia (LP2M UAI) and Information Engineering Department UAI for funding the paper to participate in this seminar and to be publish in the proceeding. Figure 10. Class Diagram Mosque Management Information System REFERENCES [1] Aziz Muslim, Manajemen Pengelolaan Masjid, Aplikasia:Jurnal Aplikasi Ilmu-ilmu Agama, Dakwah Faculty UIN Sunan Kalijaga, Vol 5 No.2, December [2] Buku Panduan Sistem Informasi Masjid (SIMAS), Ministry of Religious Affairs of the Republic of Indonesia, [3] Achmad Alfian Hidayat, Sistem Informasi Manajemen Masjid (SIMM), Politeknik Elektronika Negeri Surabaya. [4] Orság Jaroslav, Object-Relational Mapping, Department Of Computer Science, Faculty Of Mathematics, Physics And Informatics, Comenius University, Bratislava, Slovakia, 2006, P [5] Whitten L. Jeffery, System Analysis and Design Methods 6ed, Mc Graw Hill, 2004, ch. 7 &11. Nida ul Hasanati was born in Jakarta, on July She is a lecturer in Information Engineering Department, Faculty of Science and Technology, University of Al Azhar Indonesia. This Author has many experiences in developing Software and Information System. She also interested in Database, Decision Support System, Intelligent System, and Big Data Processing. 145

5

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY International Conference on Information Systems for Business Competitiveness (ICISBC 203) 372 WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY Siti Sa uda ) Qoriani Widayati

More information

THE DESIGN OF FOREIGN LANGUAGE TEACHING SOFTWARE IN SCHOOL COMPUTER LABORATORY

THE DESIGN OF FOREIGN LANGUAGE TEACHING SOFTWARE IN SCHOOL COMPUTER LABORATORY Page200 THE DESIGN OF FOREIGN LANGUAGE TEACHING SOFTWARE IN SCHOOL COMPUTER LABORATORY Yan Watequlis Syaifudin a, Imam Fahrur Rozi b, Atiqah Nurul Asri c State Polytechni c of Malang, East Java, Indonesia

More information

Database Design. IIO30100 Tietokantojen suunnittelu. Michal Zabovsky. Presentation overview

Database Design. IIO30100 Tietokantojen suunnittelu. Michal Zabovsky. Presentation overview Database Design IIO30100 Tietokantojen suunnittelu Michal Zabovsky Department of Informatics Faculty of Management Science and Informatics University of Zilina Slovak Republic Presentation overview Software

More information

Ch 9: Mapping EER to Relational. Follow a seven-step algorithm to convert the basic ER model constructs into relations steps 1-7

Ch 9: Mapping EER to Relational. Follow a seven-step algorithm to convert the basic ER model constructs into relations steps 1-7 Ch 9: Mapping EER to Relational Follow a seven-step algorithm to convert the basic ER model constructs into relations steps 1-7 Additional steps for EER model for specialization/generalization steps 8a

More information

2004 John Mylopoulos. The Entity-Relationship Model John Mylopoulos. The Entity-Relationship Model John Mylopoulos

2004 John Mylopoulos. The Entity-Relationship Model John Mylopoulos. The Entity-Relationship Model John Mylopoulos XVI. The Entity-Relationship Model The Entity Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R

More information

BSc (Honours) Computer Science Curriculum Outline

BSc (Honours) Computer Science Curriculum Outline BSc (Honours) Computer Science Curriculum Outline 1. Introduction: The economic and strategic importance provided by Computer Science and Information Technology is increasing daily. This importance is

More information

FINAL CERTIFICATION AWARDED BY IMRTC - USA CERTIFIED MARKETING PROFESSIONAL CPM. Program is offered by: 3D Educators Trainers & Consultants

FINAL CERTIFICATION AWARDED BY IMRTC - USA CERTIFIED MARKETING PROFESSIONAL CPM. Program is offered by: 3D Educators Trainers & Consultants FINAL CERTIFICATION AWARDED BY IMRTC - USA CERTIFIED MARKETING PROFESSIONAL CPM Training Program Program is offered by: 3D Educators Trainers & Consultants Page # 1 Suite # 7, Noble Heights, Opposite Sales

More information

Course Outline Faculty of Computing and Information Technology

Course Outline Faculty of Computing and Information Technology Course Outline Faculty of Computing and Information Technology Title Code Instructor Name Credit Hours Prerequisite Prerequisite Skill/Knowledge/Understanding Category Course Goals Statement of Course

More information

REVIEW AND OUTLOOKS OF THE MEANS FOR VISUALIZATION OF SYNTAX SEMANTICS AND SOURCE CODE. PROCEDURAL AND OBJECT ORIENTED PARADIGM DIFFERENCES

REVIEW AND OUTLOOKS OF THE MEANS FOR VISUALIZATION OF SYNTAX SEMANTICS AND SOURCE CODE. PROCEDURAL AND OBJECT ORIENTED PARADIGM DIFFERENCES REVIEW AND OUTLOOKS OF THE MEANS FOR VISUALIZATION OF SYNTAX SEMANTICS AND SOURCE CODE. PROCEDURAL AND OBJECT ORIENTED PARADIGM DIFFERENCES Hristo Hristov Abstract. In the article, we have reviewed the

More information

Database Management

Database Management 204320 - Database Management Chapter 9 Relational Database Design by ER and EERto-Relational Mapping Adapted for 204320 by Areerat Trongratsameethong Copyright 2011 Pearson Education, Inc. Publishing as

More information

Development of E-Institute Management System Based on Integrated SSH Framework

Development of E-Institute Management System Based on Integrated SSH Framework Development of E-Institute Management System Based on Integrated SSH Framework ABSTRACT The J2EE platform is a multi-tiered framework that provides system level services to facilitate application development.

More information

Chapter 5 System Implementation and Manual. Purpose of the system is to provide the students a simple and more efficient way to

Chapter 5 System Implementation and Manual. Purpose of the system is to provide the students a simple and more efficient way to Chapter 5 System Implementation and Manual 5.1 Introduction Purpose of the system is to provide the students a simple and more efficient way to submit forms, and observe and trace the progress of their

More information

A Structured Object-Oriented View on Systems Modeling

A Structured Object-Oriented View on Systems Modeling 19 A Structured Object-Oriented View on Systems Modeling G. Wu and G. Dedene Section of Information Systems, Department of Applied Economic Sciences, Katholieke Universiteit Leuven, Naamsestraat 69, 3000

More information

XV. The Entity-Relationship Model

XV. The Entity-Relationship Model XV. The Entity-Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R Diagrams and Business Rules Acknowledgment:

More information

Modeling Systems Using Design Patterns

Modeling Systems Using Design Patterns Modeling Systems Using Design Patterns Jaroslav JAKUBÍK Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovakia jakubik@fiit.stuba.sk

More information

The Comparison of CBA Algorithm and CBS Algorithm for Meteorological Data Classification Mohammad Iqbal, Imam Mukhlash, Hanim Maria Astuti

The Comparison of CBA Algorithm and CBS Algorithm for Meteorological Data Classification Mohammad Iqbal, Imam Mukhlash, Hanim Maria Astuti Information Systems International Conference (ISICO), 2 4 December 2013 The Comparison of CBA Algorithm and CBS Algorithm for Meteorological Data Classification Mohammad Iqbal, Imam Mukhlash, Hanim Maria

More information

Abstract Keyword Searching with Knuth Morris Pratt Algorithm

Abstract Keyword Searching with Knuth Morris Pratt Algorithm Scientific Journal of Informatics Vol. 4, No. 2, November 2017 p-issn 2407-7658 http://journal.unnes.ac.id/nju/index.php/sji e-issn 2460-0040 Abstract Keyword Searching with Knuth Morris Pratt Algorithm

More information

Informatics 1: Data & Analysis

Informatics 1: Data & Analysis Informatics 1: Data & Analysis Lecture 3: The Relational Model Ian Stark School of Informatics The University of Edinburgh Tuesday 24 January 2017 Semester 2 Week 2 https://blog.inf.ed.ac.uk/da17 Lecture

More information

SELECTION OF CREATIVE INDUSTRY SECTOR ICT SUITABLE DEVELOPED IN PESANTREN USING FUZZY - AHP

SELECTION OF CREATIVE INDUSTRY SECTOR ICT SUITABLE DEVELOPED IN PESANTREN USING FUZZY - AHP SELECTION OF CREATIVE INDUSTRY SECTOR ICT SUITABLE DEVELOPED IN PESANTREN USING FUZZY - AHP 1 HOZAIRI, 2 AHMAD 1 Islamic University Of Madura, Faculty Of Engineering, Informatics Engineering Study Program

More information

CURRICULUM VITAE. Address : Kp. Jeprah Rt 01/11 No. 72 Jonggol Bogor Jawa Barat, Indonesia

CURRICULUM VITAE. Address : Kp. Jeprah Rt 01/11 No. 72 Jonggol Bogor Jawa Barat, Indonesia CURRICULUM VITAE Personal Information Full Name : Jon Kartago Lamida Place and Date of Birth : Cianjur, 13 December 1985 Religion Nationality Sex Marital Status : Islam : Indonesia : Male : Single Address

More information

POTENTIAL DIFFERENCES AT RISK ASSESSMENT AND RISK TREATMENT PLANNING BETWEEN ISO/IEC 27001:2005 AND ISO/IEC 27001:2013

POTENTIAL DIFFERENCES AT RISK ASSESSMENT AND RISK TREATMENT PLANNING BETWEEN ISO/IEC 27001:2005 AND ISO/IEC 27001:2013 POTENTIAL DIFFERENCES AT RISK ASSESSMENT AND RISK TREATMENT PLANNING BETWEEN ISO/IEC 27001:2005 AND ISO/IEC 27001:2013 Eka Pramudita Purnomo 1) and R. V. Hari Ginardi 2) Master s Program in Management

More information

Solved MCQ on fundamental of DBMS. Set-1

Solved MCQ on fundamental of DBMS. Set-1 Solved MCQ on fundamental of DBMS Set-1 1) Which of the following is not a characteristic of a relational database model? A. Table B. Tree like structure C. Complex logical relationship D. Records 2) Field

More information

TREASURY BANKING OPERATIONS Certification Program

TREASURY BANKING OPERATIONS Certification Program FINAL CERTIFICATION AWARDED BY IMRTC - USA TREASURY BANKING OPERATIONS Certification Program This highly specialized and concentrated Program is ideally suited to following individuals who: Are fresh University

More information

Tutorial notes on. Object relational structural patterns

Tutorial notes on. Object relational structural patterns Tutorial notes on Object relational structural patterns Dr. C. Constantinides, P.Eng. Computer Science and Software Engineering Concordia University Page 1 of 14 Exercise 1. a) Briefly describe what is

More information

ER-to-Relational Mapping

ER-to-Relational Mapping Lecture 9 1 1. Context 2. The Algorithm Outline 2 Database Design and Implementation Process 3 Data Models 4 Example ERD 5 Resulting Relational Schema 6 Step 1: Regular Entity Types i. For each regular/strong

More information

Chapter 11: Data Management Layer Design

Chapter 11: Data Management Layer Design Systems Analysis and Design With UML 2.0 An Object-Oriented Oriented Approach, Second Edition Chapter 11: Data Management Layer Design Alan Dennis, Barbara Wixom, and David Tegarden 2005 John Wiley & Sons,

More information

Diploma in Graphics & Multimedia

Diploma in Graphics & Multimedia FINAL CERTIFICATION AWARDED BY IMRTC - USA Diploma in Graphics & Multimedia THIS HIGHLY SPECIALIZED AND WORTH FULL DIPLOMA IS IDEALLY SUITED TO FOLLOWING INDIVIDUALS WHO ARE: Fresh Matriculations who would

More information

I. INTRODUCTION II. LITERATURE REVIEW. A. EPSBED 1) EPSBED Definition EPSBED is a reporting media which organized by the study program of each college

I. INTRODUCTION II. LITERATURE REVIEW. A. EPSBED 1) EPSBED Definition EPSBED is a reporting media which organized by the study program of each college Data Warehouse for Study Program Evaluation Reporting Based on Self Evaluation (EPSBED) using EPSBED Data Warehouse Model: Case Study Budi Luhur University Indra, Yudho Giri Sucahyo, Windarto Faculty of

More information

Essay Question: Explain 4 different means by which constrains are represented in the Conceptual Data Model (CDM).

Essay Question: Explain 4 different means by which constrains are represented in the Conceptual Data Model (CDM). Question 1 Essay Question: Explain 4 different means by which constrains are represented in the Conceptual Data Model (CDM). By specifying participation conditions By specifying the degree of relationship

More information

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 8 Data Modeling Advanced Concepts

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 8 Data Modeling Advanced Concepts Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition Chapter 8 Data Modeling Advanced Concepts Objectives In this chapter, students will learn: About the extended entity

More information

Implementation of Dynamic Algebra in Epsilonwriter

Implementation of Dynamic Algebra in Epsilonwriter Implementation of Dynamic Algebra in Epsilonwriter Jean-François Nicaud, Christophe Viudez Aristod, 217 rue de Paris, 91120 Palaiseau, France jeanfrancois.nicaud@laposte.net cviudez@free.fr http://www.epsilonwriter.com

More information

Improving Adaptive Hypermedia by Adding Semantics

Improving Adaptive Hypermedia by Adding Semantics Improving Adaptive Hypermedia by Adding Semantics Anton ANDREJKO Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovak republic andrejko@fiit.stuba.sk

More information

Transaction Management in Fully Temporal System

Transaction Management in Fully Temporal System 2014 UKSim-AMSS 16th International Conference on Computer Modelling and Simulation Transaction Management in Fully Temporal System Michal Kvet, Karol Matiaško University of Zilina, Faculty of Management

More information

Optimal Performance for your MacroView DMF Solution

Optimal Performance for your MacroView DMF Solution Adding Value Paper In this paper we identify 20 points to consider if you want to optimise the performance of your DMF solution. These points also apply to Message, the subset of DMF that runs in Outlook.

More information

MATHEMATICA APPLICATION FOR GRAPH COLORING AT THE INTERSECTION OF JALAN PANGERAN ANTASARI JAKARTA

MATHEMATICA APPLICATION FOR GRAPH COLORING AT THE INTERSECTION OF JALAN PANGERAN ANTASARI JAKARTA MATHEMATICA APPLICATION FOR GRAPH COLORING AT THE INTERSECTION OF JALAN PANGERAN ANTASARI JAKARTA Suwarno Universitas Bina Nusantara E-mail: suwarno001@binus.ac.id Abstract This research examines about

More information

3D EDUCATORS. Page # 1

3D EDUCATORS. Page # 1 3D EDUCATORS Invest in People the Only Asset that Appreciates Certified Plumber Training Program LIVE ONLINE INSTRUCTOR LED ONE TO ONE FACILITY AVAILABLE BUILDING NATIONS A Professional Development Institute

More information

Database Management System Prof. Partha Pratim Das Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur

Database Management System Prof. Partha Pratim Das Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Database Management System Prof. Partha Pratim Das Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Lecture - 01 Course Overview (Refer Slide Time: 00:45) Welcome

More information

Evolution Strategies in the Multipoint Connections Routing

Evolution Strategies in the Multipoint Connections Routing 408 L. KRULIKOVSKÁ, J. FILANOVÁ, J. PAVLOVIČ, EVOLUTION STRATEGIES IN THE MULTIPOINT CONNECTIONS ROUTING Evolution Strategies in the Multipoint Connections Routing Lenka KRULIKOVSKÁ, Jana FILANOVÁ, Juraj

More information

Infrastructure for Multilayer Interoperability to Encourage Use of Heterogeneous Data and Information Sharing between Government Systems

Infrastructure for Multilayer Interoperability to Encourage Use of Heterogeneous Data and Information Sharing between Government Systems Hitachi Review Vol. 65 (2016), No. 1 729 Featured Articles Infrastructure for Multilayer Interoperability to Encourage Use of Heterogeneous Data and Information Sharing between Government Systems Kazuki

More information

Chapter 9: Relational DB Design byer/eer to Relational Mapping Relational Database Design Using ER-to- Relational Mapping Mapping EER Model

Chapter 9: Relational DB Design byer/eer to Relational Mapping Relational Database Design Using ER-to- Relational Mapping Mapping EER Model Chapter 9: Relational DB Design byer/eer to Relational Mapping Relational Database Design Using ER-to- Relational Mapping Mapping EER Model Constructs to Relations Relational Database Design by ER- and

More information

Parent Portal Instructions

Parent Portal Instructions Parent Portal Instructions To access Parent Portal, please go to: www.forsyth.k12.ga.us Click on Parent Portal under Quick Links Parent Portal Webpage If you do not have a Parent Portal account, you must

More information

Designing Information Product (IP) Maps On the Process of Data Processing and Academic Information

Designing Information Product (IP) Maps On the Process of Data Processing and Academic Information Designing Information Product (IP) Maps On the Process of Data Processing and Academic Information Diana Effendi 1 1 Informatics Management Department, Universitas Komputer Indonesia, Bandung, Indonesia

More information

Archives in a Networked Information Society: The Problem of Sustainability in the Digital Information Environment

Archives in a Networked Information Society: The Problem of Sustainability in the Digital Information Environment Archives in a Networked Information Society: The Problem of Sustainability in the Digital Information Environment Shigeo Sugimoto Research Center for Knowledge Communities Graduate School of Library, Information

More information

DESIGNING A TOOL TO MAP UML CLASS DIAGRAM INTO RELATIONAL DATABASE

DESIGNING A TOOL TO MAP UML CLASS DIAGRAM INTO RELATIONAL DATABASE DESIGNING A TOOL TO MAP UML CLASS DIAGRAM INTO RELATIONAL DATABASE Mohd Khalid Awang 1 and Nur Lian Labadu 2 Faculty of Informatics University of Sultan Zainal Abidin (UniSZA) Gong Badak Campus, Kuala

More information

Development of Sistem Informasi Pendataan Warga (Sitawar) for the Realization of Integrated Population Data at RT Level With RW

Development of Sistem Informasi Pendataan Warga (Sitawar) for the Realization of Integrated Population Data at RT Level With RW Development of Sistem Informasi Pendataan Warga (Sitawar) for the Realization of Integrated Population Data at RT Level With RW Diana Effendi 1), Beri Noviansyah 2) Program Studi Manajemen Informatika,

More information

INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN

INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN PUBLIKASI ILMIAH This Final Project is Compiled as a Condition to Complete Bachelor Degree Program at Department of Informatics

More information

OBJECTIVES. How to derive a set of relations from a conceptual data model. How to validate these relations using the technique of normalization.

OBJECTIVES. How to derive a set of relations from a conceptual data model. How to validate these relations using the technique of normalization. 7.5 逻辑数据库设计 OBJECTIVES How to derive a set of relations from a conceptual data model. How to validate these relations using the technique of normalization. 2 OBJECTIVES How to validate a logical data model

More information

DIPLOMA IN PROGRAMMING WITH DOT NET TECHNOLOGIES

DIPLOMA IN PROGRAMMING WITH DOT NET TECHNOLOGIES DIPLOMA IN PROGRAMMING WITH DOT NET TECHNOLOGIES USA This training program is highly specialized training program with the duration of 72 Credit hours, where the program covers all the major areas of C#

More information

ScienceDirect. STA Data Model for Effective Business Process Modelling

ScienceDirect. STA Data Model for Effective Business Process Modelling Available online at www.sciencedirect.com ScienceDirect Procedia Technology 11 ( 2013 ) 1218 1222 The 4th International Conference on Electrical Engineering and Informatics (ICEEI 2013) STA Data Model

More information

Requirement Analysis & Conceptual Database Design

Requirement Analysis & Conceptual Database Design Requirement Analysis & Conceptual Database Design Problem analysis Entity Relationship notation Integrity constraints Generalization Introduction: Lifecycle Requirement analysis Conceptual Design Logical

More information

RELATIONAL STORAGE FOR XML RULES

RELATIONAL STORAGE FOR XML RULES RELATIONAL STORAGE FOR XML RULES A. A. Abd El-Aziz Research Scholar Dept. of Information Science & Technology Anna University Email: abdelazizahmed@auist.net Professor A. Kannan Dept. of Information Science

More information

Mobile Application Buying Ticket For LRT

Mobile Application Buying Ticket For LRT 1 UTM Computing Proceedings Innovation in Computing Technology and Applications Volume: 2 Year: 2017 ISBN: 978-967-0194-95-0 Mobile Application Buying Ticket For LRT 1 2 Nurul Amirah Atikah Binti Muhammad

More information

0. Database Systems 1.1 Introduction to DBMS Information is one of the most valuable resources in this information age! How do we effectively and efficiently manage this information? - How does Wal-Mart

More information

The K-Ring: a versatile model for the design of MIMD computer topology

The K-Ring: a versatile model for the design of MIMD computer topology The K-Ring: a versatile model for the design of MIMD computer topology P. Kuonen Computer Science Department Swiss Federal Institute of Technology CH-115 Lausanne, Switzerland E-mail: Pierre.Kuonen@epfl.ch

More information

DATABASE DESIGN I - 1DL300

DATABASE DESIGN I - 1DL300 DATABASE DESIGN I - 1DL300 Fall 2009 An introductury course on database systems http://user.it.uu.se/~udbl/dbt1-ht2009/ alt. http://www.it.uu.se/edu/course/homepage/dbastekn/ht09/ Kjell Orsborn Uppsala

More information

Database Design and the E-R Model (7.4, )

Database Design and the E-R Model (7.4, ) CSL 451 Introduction to Database Systems Database Design and the E-R Model (7.4, 7.6-7.8) Department of Computer Science and Engineering Indian Institute of Technology Ropar Narayanan (CK) Chatapuram Krishnan!

More information

Informatics 1: Data & Analysis

Informatics 1: Data & Analysis Informatics 1: Data & Analysis Lecture 4: From ER Diagrams to Relational Models Ian Stark School of Informatics The University of Edinburgh Friday 26 January 2018 Semester 2 Week 2 https://blog.inf.ed.ac.uk/da18

More information

Q &A on Entity Relationship Diagrams. What is the Point? 1 Q&A

Q &A on Entity Relationship Diagrams. What is the Point? 1 Q&A 1 Q&A Q &A on Entity Relationship Diagrams The objective of this lecture is to show you how to construct an Entity Relationship (ER) Diagram. We demonstrate these concepts through an example. To break

More information

Database Design for Final Project Monitoring System in Information Management Study Program of Telkom University

Database Design for Final Project Monitoring System in Information Management Study Program of Telkom University Database Design for Final Project Monitoring System in Information Management Study Program of Telkom University Wardani Muhamad Abstract Final Project Monitoring System is an information system that constructed

More information

SEEKING THE ACTUAL REASONS FOR THE "NEW PARADIGM" IN THE AREA OF IS ANALYSIS 2. GENERAL CHARACTERISTICS OF THE "STRUCTURED APPROACH" IN IS DEVELOPMENT

SEEKING THE ACTUAL REASONS FOR THE NEW PARADIGM IN THE AREA OF IS ANALYSIS 2. GENERAL CHARACTERISTICS OF THE STRUCTURED APPROACH IN IS DEVELOPMENT SEEKING THE ACTUAL REASONS FOR THE "NEW PARADIGM" IN THE AREA OF IS ANALYSIS Václav Řepa Prague University of Economics, W.Churchill sq. 4, 130 00 Praha 3, Czech Republic E-mail: REPA@VSE.CZ 1. INTRODUCTION

More information

The Development of Critical Undergraduate Program Selection System (CUPSS) for Admission to Malaysian Public Universities

The Development of Critical Undergraduate Program Selection System (CUPSS) for Admission to Malaysian Public Universities The Development of Critical Undergraduate Program Selection System (CUPSS) for Admission to Malaysian Public Universities Mustaffa Kamal Mohd Nor 1*, Omar Zakaria 1, Chang Sok Kin 1 1 Faculty of Computer

More information

ISO Lead Implementation

ISO Lead Implementation FINAL CERTIFICATION AWARDED BY IMRTC - USA ISO 22000 Lead Implementation Training Program ISO 22000 FOOD SAFETY MANAGEMENT SYSTEM (FSMS) Course Introduction Food safety management systems (FSMS) are intended

More information

6 TOOLS FOR A COMPLETE MARKETING WORKFLOW

6 TOOLS FOR A COMPLETE MARKETING WORKFLOW 6 S FOR A COMPLETE MARKETING WORKFLOW 01 6 S FOR A COMPLETE MARKETING WORKFLOW FROM ALEXA DIFFICULTY DIFFICULTY MATRIX OVERLAP 6 S FOR A COMPLETE MARKETING WORKFLOW 02 INTRODUCTION Marketers use countless

More information

Lab 1 MonarchPress Product Description. Robert O Donnell CS411. Janet Brunelle. September 20, Version #2

Lab 1 MonarchPress Product Description. Robert O Donnell CS411. Janet Brunelle. September 20, Version #2 Lab 1 MonarchPress Description 1 Lab 1 MonarchPress Product Description Robert O Donnell CS411 Janet Brunelle September 20, 2015 Version #2 Lab 1 MonarchPress Description 2 Table of Contents 1 INTRODUCTION...

More information

Optimization Online Analytical Processing (OLAP) Data Sales Door Case Study CV Adilia Lestari

Optimization Online Analytical Processing (OLAP) Data Sales Door Case Study CV Adilia Lestari RESEARCH ARTICLE OPEN ACCESS Optimization Online Analytical Processing (OLAP) Data Sales Door Case Study CV Adilia Lestari Setiawansyah 1, Ayi Bayyinah 2, Nuroji 3 1 (Faculty of Engineering and Computer

More information

The Entity/Relationship (E/R) Model & DB Design. csc343, Introduction to Databases Renée J. Miller and Fatemeh Nargesian and Sina Meraji Winter 2018

The Entity/Relationship (E/R) Model & DB Design. csc343, Introduction to Databases Renée J. Miller and Fatemeh Nargesian and Sina Meraji Winter 2018 The Entity/Relationship (E/R) Model & DB Design csc343, Introduction to Databases Renée J. Miller and Fatemeh Nargesian and Sina Meraji Winter 2018 Overview Using the Entity/Relationship (ER) Model to

More information

Gerri Holden Ministries Executive Summary Student Consultant, Kate Stepp Community Partner, Gerri Holden

Gerri Holden Ministries Executive Summary Student Consultant, Kate Stepp Community Partner, Gerri Holden Gerri Holden Ministries Executive Summary Student Consultant, Kate Stepp Community Partner, Gerri Holden I. Background Information The mission of Gerri Holden Ministries is to provide academic programs

More information

A good example of entities and relationships can be seen below.

A good example of entities and relationships can be seen below. Unit 2: Unit 2: Conceptual Design: Data Modeling and the Entity Relationship Model - Discussion 1 Scroll down and click "Respond" to post your reply to the Discussion questions. Please review the Discussion

More information

Conceptual Data Modeling

Conceptual Data Modeling Conceptual Data odeling A data model is a way to describe the structure of the data. In models that are implemented it includes a set of operations that manipulate the data. A Data odel is a combination

More information

CATHODIC PROTECTION Certification Program (FOUNDATION & INTERMEDIATE LEVEL)

CATHODIC PROTECTION Certification Program (FOUNDATION & INTERMEDIATE LEVEL) FINAL CERTIFICATION AWARDED BY IMRTC - USA CATHODIC PROTECTION Certification Program (FOUNDATION & INTERMEDIATE LEVEL) Cathodic protection is a method of reducing or eliminating the corrosion of metals

More information

E-R Diagram to Relational Schema

E-R Diagram to Relational Schema Database Design ICOM 5016 Database Systems Database Design Amir H. Chinaei Department of Electrical and Computer Engineering University of Puerto Rico, Mayagüez Slides are adapted from: The first step

More information

CATHODIC PROTECTION Training Program (PROFESSIONAL AND ADVANCE LEVEL)

CATHODIC PROTECTION Training Program (PROFESSIONAL AND ADVANCE LEVEL) FINAL CERTIFICATION AWARDED BY IMRTC - USA CATHODIC PROTECTION Training Program (PROFESSIONAL AND ADVANCE LEVEL) The application of protective coatings represents the most widely adopted means of controlling

More information

Middleware for Heterogeneous and Distributed Information Systems Sample Solution Exercise Sheet 5

Middleware for Heterogeneous and Distributed Information Systems Sample Solution Exercise Sheet 5 AG Heterogene Informationssysteme Prof. Dr.-Ing. Stefan Deßloch Fachbereich Informatik Technische Universität Kaiserslautern Middleware for Heterogeneous and Distributed Information Systems Sample Solution

More information

Steps in Designing Queue and Interview Process using Information System: A Case of Re-registration of New Students in Universitas Negeri Makassar

Steps in Designing Queue and Interview Process using Information System: A Case of Re-registration of New Students in Universitas Negeri Makassar Steps in Designing Queue and Interview Process using Information System: A Case of Re-registration of New Students in Universitas Negeri Makassar Ansari Saleh Ahmar 1*, Rusli 2 and Abdul Rahman 2 1Departement

More information

ER to Relational Mapping

ER to Relational Mapping ER to Relational Mapping 1 / 19 ER to Relational Mapping Step 1: Strong Entities Step 2: Weak Entities Step 3: Binary 1:1 Relationships Step 4: Binary 1:N Relationships Step 5: Binary M:N Relationships

More information

Cheadle Hulme Sixth Form Application Form: 2019 Entry

Cheadle Hulme Sixth Form Application Form: 2019 Entry Cheadle Hulme Sixth Form Application Form: 2019 Entry Please complete in black ink Personal Details Surname First name Middle Name Gender of Birth Male Female Have you lived Yes/No in the UK for the last

More information

DATABASE DESIGN I - 1DL300

DATABASE DESIGN I - 1DL300 DATABASE DESIGN I - 1DL300 Spring 2011 An introductory course on database systems http://www.it.uu.se/edu/course/homepage/dbastekn/vt11/ Manivasakan Sabesan Uppsala Database Laboratory Department of Information

More information

Chapter 6. Advanced Data Modeling. Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel

Chapter 6. Advanced Data Modeling. Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel Chapter 6 Advanced Data Modeling Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel 1 In this chapter, you will learn: About the extended entity relationship (EER)

More information

AWERProcedia Information Technology & Computer Science

AWERProcedia Information Technology & Computer Science AWERProcedia Information Technology & Computer Science Vol 04 (2013) 628-633 3 rd World Conference on Innovation and Computer Sciences 2013 Searching under uncertain conditions Bogdan Walek *, Department

More information

Data Migration between Document-Oriented and Relational Databases

Data Migration between Document-Oriented and Relational Databases Abstract Current tools for data migration between documentoriented and relational databases have several disadvantages. We propose a new approach for data migration between documentoriented and relational

More information

DISTRIBUTED ASPECTS OF THE SYSTEM FOR DISCOVERING SIMILAR DOCUMENTS

DISTRIBUTED ASPECTS OF THE SYSTEM FOR DISCOVERING SIMILAR DOCUMENTS DISTRIBUTED ASPECTS OF THE SYSTEM FOR DISCOVERING SIMILAR DOCUMENTS Jan Kasprzak 1, Michal Brandejs 2, Jitka Brandejsová 3 1 Faculty of Informatics, Masaryk University, Czech Republic kas@fi.muni.cz 2

More information

Normalization is based on the concept of functional dependency. A functional dependency is a type of relationship between attributes.

Normalization is based on the concept of functional dependency. A functional dependency is a type of relationship between attributes. Lecture Handout Database Management System Lecture No. 19 Reading Material Database Systems Principles, Design and Implementation written by Catherine Ricardo, Maxwell Macmillan. Section 7.1 7.7 Database

More information

Chapter 10. Object-Oriented Analysis and Modeling Using the UML. McGraw-Hill/Irwin

Chapter 10. Object-Oriented Analysis and Modeling Using the UML. McGraw-Hill/Irwin Chapter 10 Object-Oriented Analysis and Modeling Using the UML McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Objectives 10-2 Define object modeling and explain

More information

Part 5: Introduction to Logical Design

Part 5: Introduction to Logical Design 5. Introduction to Logical Design 5-1 Part 5: Introduction to Logical Design References: Elmasri/Navathe:Fundamentals of Database Systems, 3rd Edition, 1999. Chapter 3, Data Modeling Using the Entity-Relationship

More information

Two days National Seminar On Recent Trends in Knowledge Organization

Two days National Seminar On Recent Trends in Knowledge Organization Two days National Seminar on Recent Trends in Knowledge Organization Organised by Two days National Seminar On Recent Trends in Knowledge Organization Date: 8-9 February, 2019 Department of Library & Information

More information

The Role of Participatory Design in Mobile Application Development

The Role of Participatory Design in Mobile Application Development IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS The Role of Participatory Design in Mobile Application Development To cite this article: Almed Hamzah 2018 IOP Conf. Ser.: Mater.

More information

Chapter 9 Outline. Relational Database Design by ER and EERto-Relational. Mapping Fundamentals of Database Systems

Chapter 9 Outline. Relational Database Design by ER and EERto-Relational. Mapping Fundamentals of Database Systems 204222 - Fundamentals of Database Systems Chapter 9 Relational Database Design by ER and EERto-Relational Mapping Chapter 9 Outline Relational Database Design Using ER-to- Relational Mapping Relational

More information

Assessment of the progress made in the implementation of and follow-up to the outcomes of the World Summit on the Information Society

Assessment of the progress made in the implementation of and follow-up to the outcomes of the World Summit on the Information Society ECOSOC Resolution 2008/3 Assessment of the progress made in the implementation of and follow-up to the outcomes of the World Summit on the Information Society The Economic and Social Council, Recalling

More information

Database Design Process

Database Design Process Database Design Process Real World Functional Requirements Requirements Analysis Database Requirements Functional Analysis Access Specifications Application Pgm Design E-R Modeling Choice of a DBMS Data

More information

DATABASE TECHNOLOGY - 1DL124

DATABASE TECHNOLOGY - 1DL124 1 DATABASE TECHNOLOGY - 1DL124 Summer 2007 An introductury course on database systems http://user.it.uu.se/~udbl/dbt-sommar07/ alt. http://www.it.uu.se/edu/course/homepage/dbdesign/st07/ Kjell Orsborn

More information

LIMITE EN COUNCIL OF THE EUROPEAN UNION. Brussels, 21 October /13 LIMITE CO EUR-PREP 37. NOTE General Secretariat of the Council

LIMITE EN COUNCIL OF THE EUROPEAN UNION. Brussels, 21 October /13 LIMITE CO EUR-PREP 37. NOTE General Secretariat of the Council COUNCIL OF THE EUROPEAN UNION Brussels, 21 October 2013 12397/13 LIMITE CO EUR-PREP 37 NOTE from: To: General Secretariat of the Council Council Subject: European Council (24-25 October 2013) - Draft conclusions

More information

TESSELATIONS. BIG IDEA: Students will create a representational tessellation composition in the style of M.C. Escher ESSENTIAL QUESTIONS:

TESSELATIONS. BIG IDEA: Students will create a representational tessellation composition in the style of M.C. Escher ESSENTIAL QUESTIONS: TESSELATIONS BIG IDEA: Students will create a representational tessellation composition in the style of M.C. Escher ESSENTIAL QUESTIONS: Why might M.C. Escher think like a mathematician? What is the relationship

More information

MIDTERM EXAMINATION Spring 2010 CS403- Database Management Systems (Session - 4) Ref No: Time: 60 min Marks: 38

MIDTERM EXAMINATION Spring 2010 CS403- Database Management Systems (Session - 4) Ref No: Time: 60 min Marks: 38 Student Info StudentID: Center: ExamDate: MIDTERM EXAMINATION Spring 2010 CS403- Database Management Systems (Session - 4) Ref No: 1356458 Time: 60 min Marks: 38 BC080402322 OPKST 5/28/2010 12:00:00 AM

More information

Cyprus Universities: Provision and Web Accessibility

Cyprus Universities: Provision and Web Accessibility einclusion @ Cyprus Universities: Provision and Web Accessibility Eleni Michailidou Department of Multimedia and Graphic Arts Cyprus University of Technology Limassol, Cyprus eleni.michailidou@cut.ac.cy

More information

By China Academy of Fine Art (CAFA) / Media Architecture Institute (MAI)

By China Academy of Fine Art (CAFA) / Media Architecture Institute (MAI) Media Architecture LED Display Wall - The Big Picture By China Academy of Fine Art (CAFA) / Media Architecture Institute (MAI) Media Wall Design: China Academy of Fine Art (CAFA) School of Architecture

More information

DATABASE DESIGN I - 1DL300

DATABASE DESIGN I - 1DL300 DATABASE DESIGN I - 1DL300 Fall 2010 An introductory course on database systems http://www.it.uu.se/edu/course/homepage/dbastekn/ht10/ Manivasakan Sabesan Uppsala Database Laboratory Department of Information

More information

Augmented Reality: Daily Prayers for Preschooler Student

Augmented Reality: Daily Prayers for Preschooler Student Augmented Reality: Daily Prayers for Preschooler Student https://doi.org/10.3991/ijim.v12i1.7269 Hendra Pradibta State Polytechnics of Malang, Indonesia hendra.pardibta@polinema.ac.id Abstract Education

More information

MonarchPress Software Design. Green Team

MonarchPress Software Design. Green Team MonarchPress Software Design 1 Unequipped Digital Journalism explosion of news media consumption on the internet users demand has steadily driven need for: captivating writing and reporting high-quality

More information

User Interface Modelling Based on the Graph Transformations of Conceptual Data Model

User Interface Modelling Based on the Graph Transformations of Conceptual Data Model User Interface Modelling Based on the Graph Transformations of Conceptual Data Model Martin Molhanec Department of e-technology, Faculty of Electrical Engineering Czech Technical University in Prague Technická

More information

Based on a Single Chip Microcomputer to Realize Electronic Clock Design and Analysis

Based on a Single Chip Microcomputer to Realize Electronic Clock Design and Analysis 2016 International Conference on Manufacturing Construction and Energy Engineering (MCEE) ISBN: 978-1-60595-374-8 Based on a Single Chip Microcomputer to Realize Electronic Clock Design and Analysis Shu-Hua

More information