Test-L[Iuen Lleuelopment Ol Belational Llatabases

Total Page:16

File Type:pdf, Size:1020Kb

Test-L[Iuen Lleuelopment Ol Belational Llatabases I0$l-[[ill0[ ll 0 ll s I ll I lll 0 ll I . o . Test-l[iuen lleuelopment ol Belational llatabases Scott W. Ambler, rrM n test-first development, developers formulate and implement a de- lmplemenling tailed design iteratively one test at a time.1,2 Test-driven development lesl-driven (also called test-driven design) combines TFD with refactoring,3 dolshuse design wherein developers make small changes (refactorings) to improve involves dolobose code design without changing the code's semantics.'Sfhen developers decide refocloring, to use TDD to implement a new feature, they must first ask whether the cur- regression lesling, rent design is the easiest possible design to enable the feature's addition. If ond conlinuous so, they implement the feature via TFD. If not, because sometimes you'll write a developer test inlegrolion. they first refactor the code, then use TFD. In that specifies application code behavior, while Although technicolly the behavior-driven deveiopment4 approach to other times it will specify database behavior. naming and TDDD is important for several reasons. slroightforword, TDD, the conventions terminology make the developer's primary goal explicit: to First, a1l of application TDD's benefits apply to TDDD involves specify, rather than validate, the system. TDDD: you can take small, safe steps; refactor- culturol chollenges Test-driven database design applies TDD to ing lets you maintain high-quality design database development. In TDDD, developers throughout the life cycle; regression testing lets lhot slow ils implement critical behaviors (including business you detect defects earlier in the li{e cycle; and, odoplion. rules about data invariants, such as "The only because TDDD gives you an executable system valid colors are red, blue, and purple") and specification,you'remotivatedtokeepitup-to- business functionality within relational data- date (unlike with traditional design documenta- bases. Theret nothing special about relational tion). Moreover, with TDD, your database de- databases-we specify database behaviors via velopment efforts effectively dovetail into your database tests in the same way we implement overali application development efforts. The IT application-code behaviors via developer tests. community has long suffered because of the TDDD is not a stand-alone activity. Itt best cultural mismatch between application devel- viewed as simply the database aspects of TDD. opers and data professionals.5 This mismatch That is, you should develop your database results largely from differing philosophies and schema in lock-step with your application codes ways of working. Modern methodologies, in- 0740-74591071$25.00 @ 2007 rEEE May/June 2007 IEEE s0FTWABE 37 r SQL statement calculations return the ex- pected results, a particular user ID can't access specific information, or I a particular user ID can access specific in- formation. Interface tests are fairly straightforward to implement because good tools exist for many platforms, especially the xUnit framework. Commercial tools are also viable options. My - Clear-box testing advice: use the same tools that you're using for o Stored procedures/funGlions a pplication regression resring. Black-box teslingl . Triggers . Data values being persisted o Views o Dala values being relrieued . Constrainls lnternal testing. Internai database tests specify . Stored procedures/functions . Existing quality data both behaviors that the database implements 4... Relerential inte0rityidata consistency 4... and data validity. There's nothing special about stored procedure code-if you can write Figure l. Testing a tests for Java code, surely you can write tests relational database. cluding Rational Unified Process, Extreme Pro- for procedural language extensions to SQL llevelopers must test gramming, and Dynamic System Development (PLSQL) code. According to current rhetoric, the database both Method, work in an evolutionary (iterative and data is a corporate asset-shouldn't you there- internally and at its incremental) manner. It therefore behooves us fore specify what kind of data you intend to interface-the to find techniques that let data professionals store, along with the data's invariants? From equivalent oI clear-box work in an evolutionary manner with their ap- the database's viewpoint, these are effectively testing and black-box plication developer counterparts. TDDD is one clear-box tests. Such tests might specify testing, respectively. such technique. r some of a stored procedure's behavior, Extending Tllll to database r a validity check for a paramerer being development passed to a stored procedure, To extend TDD to database development, r a validity check for the value that a stored we need database equivalents of regression test- procedure returns, ing, refactoring, and continuous integration. I a stored procedure to return an expected error code, Ilatabase legression testing I a column invariant, In database regression testing,6,7 you regu- I a referentiai integrity rule, and larly validate the database by running a com- I a column default. prehensive test suite-ideally whenever you change the database schema itself or access the Tools for internal database testing are a bit database in a new way. As the threat bound- harder to come by, but that's changing. For ex- (dashed ariess lines) in figure 1 show, you must ample, tools such as Quest's Qute validate Or- test both the database interface and the database acle PLSQL code and Microsoft's Visual Stu- itself. dio Team System for Database Professionals includes testing tools for SQL Server. 'We hfurtace testing. use database interface tests to specify how systems will access the database. Testing example. The following example illus- From the database's viewpoint, these are effec- trates regression testing. Assume that we're tively black-box tests. Such a test might specify building a banking system and have two fea- a portion of a hard-coded SQL statemenr that tures to implement: Retrieve Account from you might submit to the database. It might also Database and Save Account to Database. Let's specify that also assume that this is the first time we've run into the Account concept and that we're im- r an SQL statement returns an expected result, plementing these two features. For account re- r a view produces an expected result, trieval, we'd run several database tests (one at a 3 8 tEEE s0FTWARE www.computer.org/software time), including shouldExistOneOrMoreAccounts- ForCustomer, shouldExistOneorMorecustomers- ForAccount, shouldHaveUniqueAccountlD, and shouldHavePositiveAccountBalance. For saving an account into the database, we'd add tlvo new tests: shouldBeAssignedUniqueAccountlDOn- Creation and shouldBeAssignedZeroBalanceOn- Creation. I'm using the BBD "should" naming conventions4 here, but the "traditional" TDD naming convention (stating tests with "test") would also work fine. With a TDDD approach, we'd write each of these tests one at a time, then evolve the data- base schema to fulfill the test-specified function- ality. Consider the test shouldHavePositiveAc- countBalance. If this is the first time we've considered the account-balance concept, we'd add the Account.Balance column. Depending on our database design standards, implementing such a data-oriented business rule could moti- vate us to also add a column constraint or an update trigger that checks the value of Ac- count.Balance. Regardless of the implementa- tion strategy, it's critical to validate that your database properly supports the business ruie. There's no magic to identifying a database Figure 2.Ilatabase test-the advice presented in this special is- renaming a column, splitting a multiple-use col- relactoring. Ileuelopers sue's other articles, as well as in TDD books, umn, and parameterizing a database method to euolue the database is pertinent to TDDD.1,2 The primary differ- consolidate several similar ones. sehema in their own ence in TDDD is that we must recognize how Conceptually, a database refactoring is more sandboxes belore important it is to validate both the functional- difficult than a code refactoring because you sharing the change ity implemented by, and the data contained must preserve informational semantics along with their teammates. within, the database. A database is nothing with behavioral semantics. Preserving informa- special-like any other system component. it tional semantics implies that if you change the must be validated. values of a column's data, the change shouldn't materially affect that information's clients. For Ilatabase rcIactoring example, assume that a phone number is stored Refactoring is a disciplined approach to re- in character-based format. If you change the structuring code: you make small changes to value from "(416) 555-1212" to "416555121.2," improve the code's design, without changing its you haven't materially changed the informa- behavioral semantics-that is, you neither re- tion's semantics, as long as all that column's move nor add behavior.3,e Refactoring lets you clients can still work with the new format. In improve your code over time in a safe, evolu- contrast, changing the value to "(416) 555- tionary manner. Similarly in database refactor- 5555" clearly changes the informational se- ing, you make a simple change to a database mantics. Similarly, to preserve behavioral se- that improves its design, while retaining both mantics, you must keep the same black-box its behavioral and informational semantics. functionality. The implication? You must re- Databases include structural
Recommended publications
  • Ssql-Schema-Comparer: Support of Multi-Language Refactoring With
    2013 IEEE 13th International Working Conference on Source Code Analysis and Manipulation (SCAM) sql-schema-comparer: Support of Multi-Language Refactoring with Relational Databases Hagen Schink Institute of Technical and Business Information Systems Otto-von-Guericke-University Magdeburg, Germany [email protected] Abstract—Refactoring is a method to change a source-code’s State-of-the-art IDEs provide information about syntactical structure without modifying its semantics and was first intro- changes or errors before integration or runtime tests take duced for object-oriented code. Since then refactorings were effect. Hence, the information can enable software developers defined for relational databases too. But database refactorings must be treated differently because a database schema’s structure to recognize and correct syntactic and some semantic errors defines semantics used by other applications to access the data already during development. We argue that information about in the schema. Thus, many database refactorings may break syntactical changes in database schemes can ease the problems interaction with other applications if not treated appropriately. of database refactoring. We discuss problems of database refactoring in regard to Java In the following we first present two techniques for ac- code and present sql-schema-comparer, a library to detect refac- torings of database schemes. The sql-schema-comparer library cessing a relational database with the programming language is our first step to more advanced tools supporting developers in Java. Then, we describe how database refactoring affects their database refactoring efforts. database access from Java. In Sec. III we give a more general explanation of problems resulting from database refactorings.
    [Show full text]
  • Automated Testing of Database Schema Migrations
    DEGREE PROJECT IN COMPUTER SCIENCE AND ENGINEERING, SECOND CYCLE, 30 CREDITS STOCKHOLM, SWEDEN 2019 Automated Testing of Database Schema Migrations PETER JONSSON KTH ROYAL INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE Automated Testing of Database Schema Migrations PETER JONSSON Master in Computer Science Date: June 28, 2019 Supervisor: Johan Gustavsson Examiner: Elena Troubitsyna School of Electrical Engineering and Computer Science Host company: The Swedish Police Authority Swedish title: Automatiserad testning av databasschemaförändringar iii Abstract Modern applications use databases, and the majority of them are relational databases, which use schemas to impose data integrity constraints. As appli- cations change, so do their databases. Database schemas are changed using migrations. Certain conditions can result in migrations failing in production environments, leading to a broken database state and testing can be problem- atic without accessing production data which can be sensitive. Two migration validation methods were proposed and implemented to au- tomatically reject invalid migrations that are not compatible with the database state. The methods were based on, and compared to, a default method that used Liquibase to structure and perform migrations. The assertion method used knowledge of what a valid state would look like to generate pre-conditions from assertions to verify that the database’s state matched expectations and that the migrations were compatible with a database’s state prior to migra- tion. The schema method, used a copy of the production database’s schema to perform migrations on an empty database in order to test the compatibility of the old and new schemas. 108 test cases consisting of a migration and a database state were used to test all methods.
    [Show full text]
  • LESSQL: an Approach to Deal with Database Schema Changes in Continuous Deployment / Ariel Antony Afonso
    LESSQL: AN APPROACH TO DEAL WITH DATABASE SCHEMA EVOLUTION IN CONTINUOUS DEPLOYMENT ARIEL ANTONY AFONSO LESSQL: AN APPROACH TO DEAL WITH DATABASE SCHEMA EVOLUTION IN CONTINUOUS DEPLOYMENT Dissertation presented to the Graduate Program in Informatics of the Universidade Federal do Amazonas in partial fulfillment of the requirements for the degree of Master in Informatics. Advisor: Altigran Soares da Silva Manaus April 2020 Ficha Catalográfica Ficha catalográfica elaborada automaticamente de acordo com os dados fornecidos pelo(a) autor(a). Afonso, Ariel Antony A257l LESSQL: An approach to deal with Database Schema Changes in Continuous Deployment / Ariel Antony Afonso . 2020 55 f.: il. color; 31 cm. Orientador: Altigran Soares da Silva Dissertação (Ciência da Computação) - Universidade Federal do Amazonas. 1. schema changes. 2. continuous deployment. 3. database decay. 4. query language. I. Silva, Altigran Soares da. II. Universidade Federal do Amazonas III. Título PODER EXECUTIVO MINISTÉRIO DA EDUCAÇÃO INSTITUTO DE COMPUTAÇÃO PROGRAMA DE PÓS-GRADUAÇÃO EM INFORMÁTICA FOLHA DE APROVAÇÃO " " Dissertação de Mestrado defendida e aprovada pela banca examinadora constituída pelos Professores: - PRESIDENTE Prof - MEMBRO INTERNO - MEMBRO EXTERNO - MEMBRO EXTERNO Manaus, de de 20 Av. Rodrigo Otávio, 6.200 - Campus Universitário Senador Arthur Virgílio Filho - CEP 690-00 - Manaus, AM, Brasil Tel. (092) 3305 1193 E-mail: [email protected] www.ppgi.ufam.edu.br “Embora ninguém possa voltar atrás e fazer um novo começo, qualquer um pode começar agora e fazer um novo fim.” (Chico Xavier) vii Abstract The adoption of Continuous Deployment (CD) aims at allowing software systems to quickly evolve to accommodate new features. However, structural changes to the database schema are frequent and may incur in systems’ services downtime.
    [Show full text]
  • Devops for the Database
    eBOOK DevOps for the Database By Baron Schwartz E-BOOK: DEVOPS FOR THE DATABASE Table of Contents Meet the Author 1 Introduction 2 Who This Book Is For 3 Database DevOps Stories 3 What Is DevOps 6 Database DevOps Capabilities 8 What Kinds of Companies Can Apply DevOps to the Database? 12 Benefits of DevOps for the Database 14 Why Is it Hard to Apply DevOps to the Database? 15 You Can’t Buy DevOps 25 Achieving Continuous Delivery With Databases 27 Schema as Code for Monoliths and Microservices 29 Automating Database Migrations 31 Loosening the Application/Database Coupling 40 Improving Database Observability 44 Democratizing Database Knowledge and Skill 50 Realigning Software Development Teams 55 The Importance of the Second Age of DevOps 60 Your Journey Towards Database DevOps 63 Three Steps on the Journey 68 Acknowledgments 69 E-BOOK: DEVOPS FOR THE DATABASE Meet the Author Baron Schwartz Baron, the founder of VividCortex, is a performance and scalability expert who participates in various database, open-source, and distributed systems communities. He has helped build and scale many large, high-traffic services for Fortune 1000 clients. He has written several books, including O’Reilly’s best-selling High Performance MySQL. Baron has a Computer Science degree from the University of Virginia. page 1 E-BOOK: DEVOPS FOR THE DATABASE Introduction When it comes to the database, some teams innovate faster, break things less, make more money, and have happier humans. I tried to discover what distinguishes the high and low performers. Then, I struggled to find words for it. Eventually, I realized it’s DevOps.
    [Show full text]
  • Enhancing Database-Centric Web Applications Through Informed Code Generation
    Utah State University DigitalCommons@USU All Graduate Theses and Dissertations Graduate Studies 8-2017 Database Auto Awesome: Enhancing Database-Centric Web Applications through Informed Code Generation Jonathan Adams Utah State University Follow this and additional works at: https://digitalcommons.usu.edu/etd Part of the Other Computer Sciences Commons Recommended Citation Adams, Jonathan, "Database Auto Awesome: Enhancing Database-Centric Web Applications through Informed Code Generation" (2017). All Graduate Theses and Dissertations. 6265. https://digitalcommons.usu.edu/etd/6265 This Thesis is brought to you for free and open access by the Graduate Studies at DigitalCommons@USU. It has been accepted for inclusion in All Graduate Theses and Dissertations by an authorized administrator of DigitalCommons@USU. For more information, please contact [email protected]. DATABASE AUTO AWESOME: ENHANCING DATABASE-CENTRIC WEB APPLICATIONS THROUGH INFORMED CODE GENERATION by Jonathan Adams A thesis submitted in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE in Computer Science Approved: Curtis Dyreson, Ph.D. Minghui Jiang, Ph.D. Major Professor Committee Member Kyumin Lee, Ph.D. Mark R. McLellan, Ph.D. Committee Member Vice President for Research and Dean of the School of Graduate Studies UTAH STATE UNIVERSITY Logan, Utah 2017 ii Copyright c Jonathan Adams 2017 All Rights Reserved iii ABSTRACT Database Auto Awesome: Enhancing Database-Centric Web Applications through Informed Code Generation by Jonathan Adams, Master of Science Utah State University, 2017 Major Professor: Curtis Dyreson, Ph.D. Department: Computer Science Database Auto Awesome is an approach to enhancing in-situ, web-based, relational database applications through informed code generation.
    [Show full text]
  • Artificial Intelligence and Knowledge Engineering
    AUTOMATING SUPPORT FOR REFACTORING SQL DATABASES Jyrki Nummenmaa, Ari Seppi, Peter Thanisch University of Tampere, Department of Computer Sciences, 33014 University of Tampere, Tampere, Finland, [email protected], [email protected], [email protected] Abstract. We present a method to automate at least partly the operations needed to refactor an SQL database in the case where a new schema is designed for an existing SQL database that contains data. We base our database refactoring method on intuitive database design operations, such as normalize and denormalize. Keywords: SQL databases, database maintenance, database refactoring, database evolution. 1 Introduction Relational database design is a much studied and classical problem. Often the relational database model is based on some higher•level conceptual model. Over time, the concepts and the conceptual level model change and there is a need to update the database. There is solid research on how, for example, the database schema evolution should be designed based on an ER schema. However, although there is quite a lot of work on schema evolution, we could not find solid research on how an existing relational (or SQL) database should be re•organised, when there is a need to change the database schema. Our conjecture is that this topic has been neglected because researchers were of the opinion that a viable solution to the problem was to redesign the schema at the entity•relationship model level and to migrate the data to the new schema. However, in many production environments, such an upheaval would not be practical. The practical significance of the approach that we propose derives from the fact that schema changes continue to be necessary even after the database has been populated and is in the production environment.
    [Show full text]
  • Database Schema Software Open Source
    Database Schema Software Open Source Unsubstantiated Serge whammed his empiricists aquaplaned digestedly. Ambidextrous and wordless Tomkin uptearing, but Freemon biyearly inches her cookhouse. Verisimilar and covariant Levon always incarcerates wofully and bethinking his filth. Sybase and relationships between the open source software requirements, pretty diagrams is quite Pg admin is what source and rod do some basic diagram stuff 4 share can Save. Toad's database modeling tools simplify design maintenance and documentation at a price your organization can afford Download Free or Buy. Yes no server software to install and waiter service to eager to. Opensource Collaborative Environment then Database Management Host a web version of similar tool whose team commitment to databases or affirm a software package of the. When playing open SQLite Database Browser, ADO. It allows you to do entity relationship diagram. This mapping relates the external schema with the logical schema. Directus ships with database schema control tools require a visual form so long as a single purpose of open the. Is schema same exact database? It does generate or include binary log file and log positions which is very helpful book you setup the fishing destination platform to assert as a replica of exercise current item and production environment. Modern, but intractable, and optimize your processes. Allow you carefully save and drill your diagrams online. 15 Best Free Database Software that poke Your booze Better. Melbourne and garlic a candle at both RMIT University, analyze, can be expensive. Learn therefore about Calibrum. The Liquibase product portfolio is designed with speed, patches, eventually becoming available refer the entire cluster.
    [Show full text]
  • Refactoring Rules for Graph Databases Regras De
    i ADRIANE DE MARTINI FONSECA REFACTORING RULES FOR GRAPH DATABASES REGRAS DE REFATORAÇÃO PARA BANCO DE DADOS BASEADO EM GRAFOS LIMEIRA 2015 ii iii UNIVERSIDADE ESTADUAL DE CAMPINAS Faculdade de Tecnologia ADRIANE DE MARTINI FONSECA REFACTORING RULES FOR GRAPH DATABASES REGRAS DE REFATORAÇÃO PARA BANCO DE DADOS BASEADO EM GRAFOS Dissertation presented to the School of Technology of the University of Campinas in partial fulfillment of the requirements for the degree of Master, in the area of Technology Dissertação apresentada à Faculdade de Tecnologia da Universidade Estadual de Campinas como parte dos requisitos exigidos para a obtenção do título de Mestra em Tecnologia, na Área de Tecnologia e Inovação Supervisor/Orientador: Prof. Dr. Luiz Camolesi Jr. ESTE EXEMPLAR CORRESPONDE À VERSÃO FINAL DISSERTAÇÃO DEFENDIDA PELA ALUNA ADRIANE DE MARTINI FONSECA, E ORIENTADA PELO PROF. DR. LUIZ CAMOLESI JR. _____________________________ LIMEIRA 2015 iv v vi vii ABSTRACT The information produced nowadays does not stop growing in volume and complexity, representing a technological challenge which demands more than the relational model for databases can currently offer. This situation stimulates the use of different forms of storage, such as Graph Databases. Current Graph Databases allow automatic database evolution, but do not provide adequate resources for the information organization. This is mostly left under the responsibility of the applications which access the database, compromising the data integrity and reliability. The goal of this work is the definition of refactoring rules to support the management of the evolution of Graph Databases. The rules presented in this document are adaptations and extensions of the existent refactoring rules for relational databases to meet the requirements of the Graph Databases features.
    [Show full text]
  • Database Refactoring with Liquibase
    Database Refactoring with Liquibase Michael Le Feuvre, OnBelay Consulting Agenda • What is Database refactoring • Introducing Liquibase • Liquibase example • Questions OnBelay Consulting 2 Database Refactoring Evolutionary change OnBelay Consulting 3 Traditional approach • Traditional approach to changing the database schema. • Make an appointment to see the DBA. • Plead that you want to add a column to an existing table • DBA considers your request • Decides to grant it but first must update the ER diagram in a horribly expensive Database Architecture and Design tool that maintains a logical data model. The model is then rendered in to a physical model. Great for wall charts. • DBA generates or hand-codes the database changes into SQL scripts. • DBA then updates each database directly that requires the changes. OnBelay Consulting 4 Consequences of traditional approach • Because the overhead in the traditional process is so onerous, many organizations required that database design be done up front so that the database was “ready” for programmers to use. • Database artifacts may not be in source control. • If database objects are in source control they aren’t necessarily in the same repository as the application source code. application code changes and database changes are not committed together in the same commit. • The above process is entirely antithetical to an Agile development process and since the database requirements must be known in advance of starting development • Most organizations manage database changes somewhere between traditional and database refactoring. OnBelay Consulting 5 Database refactoring • Based on the concept of refactoring popularized by Martin Fowler: • described as a “refactoring as a small change to your source code that improves its design without changing its semantics.” (Refactoring, Martin, James, 1999) • Evolutionary approaches to database maintenance have been discussed since the 2000’s.
    [Show full text]
  • Refactoring Has Proven Its Value in a Wide Range of Development
    Refactoring Databases: Evolutionary Database Design By Scott W. Ambler, Pramod J. Sadalage ............................................... Publisher: Addison Wesley Professional Pub Date: March 06, 2006 Print ISBN-10: 0-321-29353-3 Print ISBN-13: 978-0-321-29353-4 Pages: 384 Table of Contents | Index Refactoring has proven its value in a wide range of development projectshelping software professionals improve system designs, maintainability, extensibility, and performance. Now, for the first time, leading agile methodologist Scott Ambler and renowned consultant Pramodkumar Sadalage introduce powerful refactoring techniques specifically designed for database systems. Ambler and Sadalage demonstrate how small changes to table structures, data, stored procedures, and triggers can significantly enhance virtually any database designwithout changing semantics. You'll learn how to evolve database schemas in step with source codeand become far more effective in projects relying on iterative, agile methodologies. This comprehensive guide and reference helps you overcome the practical obstacles to refactoring real-world databases by covering every fundamental concept underlying database refactoring. Using start-to-finish examples, the authors walk you through refactoring simple standalone database applications as well as sophisticated multi-application scenarios. You'll master every task involved in refactoring database schemas, and discover best practices for deploying refactorings in even the most complex production environments. The second half of this book systematically covers five major categories of database refactorings. You'll learn how to use refactoring to enhance database structure, data quality, and referential integrity; and how to refactor both architectures and methods. This book provides an extensive set of examples built with Oracle and Java and easily adaptable for other languages, such as C#, C++, or VB.NET, and other databases, such as DB2, SQL Server, MySQL, and Sybase.
    [Show full text]
  • Database Schema Design Best Practices
    Database Schema Design Best Practices Incapacitating Wheeler blubber minutely. Meaningfully squirarchical, Maurits objurgating cyprus and trembling pollutions. Welsh usually dawdles femininely or spoliates diabolically when close-fisted Fredrick chumps concordantly and unrecognisable. The Transaction Item table only has a link to the Product table, which is numerical. GB fully in parallel. The diagram shows these layers together. Data still resides on storage media burdened with the same hardware related caveats. You can then add the primary key from the Categories table to the Products table as a foreign key. In essence, it allows designers to incorporate objects into the familiar table structure. If a human being could not pick which row they want from a table without knowledge of the surrogate key, then you need to reconsider your design. This is the contrast between planned and evolutionary design. That comes up as attributes attached to design database schema best practices to recover the buffer to. In this guide, we will learn what is an instance and schema in DBMS. Conversation applications and systems development suite for virtual agents. While you consider suspending a warehouse to save credits, remember that you would be letting go of the data in the cache too. From an ER Schema to a Relational. We can transfer objects to different schemas, as well. If you must merge all country data then a better way would be a table of countries having fields of country code, currency code, and currency name, and then provide indices on both code fields. PKs, instead, to use integer PK makes things a lot easier.
    [Show full text]
  • Database Refactoring to Increase/Retrieve Information from Precision Agriculture Information System
    Database Refactoring to Increase/Retrieve Information From Precision Agriculture Information System Marcia Beatriz Pereira Domingues, Jorge Rady Almeira Junior, Wilian Franca Costa, and Antonio Saraiva Department of Electrical Engineering Polytechnic School, University of Sao Paulo, Sao Paulo, Brazil [email protected], [email protected], [email protected], [email protected] ABSTRACT Precision Agriculture (PA) Information Systems improve farm management helping to make the best decisions based on all available information, keeping, controlling, and optimizing resources, returns, and preserving the environment. These systems need to archive, retrieve, and process large amounts of data from many different farms for future analyses. It has to be done without neglecting aspects of entity-relationship model (ER model) at the same time describing all crop cycle’s stages. With minor changes in the database schema, the performance of geospatial queries can be improved by refactoring tasks in the literature related to Agile Software Development. A refactoring represents structural, architectural, integrity or data quality change that preserves the system functionalities. As a case study, a PA Information Portal System database that dynamically generates models based on input data was created to represent the relations of input data generated for a Spatial Data Infrastructure used in a PA. In this context, we redesigned this database introducing refactoring techniques in order to improve PA queries performance. Keywords: Precision Agriculture, Database Refactoring, Evolutionary Databases, Spatial Databases, Query Performance, Brazil. 1. INTRODUCTION Precision Agriculture (PA) Information Systems improve farm management helping to make the best decisions based on all available information, keeping, controlling, and optimizing resources, returns, and preserving the environment.
    [Show full text]