Skip to main content

Related Articles

No More Database Programming Needed !

Are you tired in writing complex code for your database design? Want to be little relax? This article will help you to enjoy your job.

In early days we had to write coding from the scratch to implement our database designs. Later people moved to database designing graphical tools. The latest trend of designing databases is use database navigation maps where you can visually feel your database design. This method is very useful if your database is little complex and you have lot of key constraints, referential integrity constraints, indexes and triggers etc. Using database navigation maps you can see either the entire database or part of it, how the tables are integrate each other, what are the keys you have defined for tables and references etc. Most importantly you don't need to write any single code or no need to remember complex SQL syntax.



Database Navigator Maps in IBM iSeries Navigator is providing very easy and flexible way of designing you database. Sometimes you might use this tool as visual tool but here I am explaining how you can use this tool as development tool to implement your database physically. Login to iSeries Navigator and browse databases section. If you are not familiar with the iSeries Navigator read this article. Under database section you can see Database Navigation Maps in tree view.

Fig 1: Select Database Navigator Maps
Once you select database navigation maps you will see existing maps in right hand side pane. Double clicking on the map you can open it and see. But let see how you can design new database using this tool. Right click on Database Navigation Maps and browse New -> Map.
Fig 2: Create New Database Navigation Map

This will open Database Navigator window which allow you to design your entire database. There it will list all the existing schemas and you can design your database under any schema listed there.
Fig 3: Database Navigator Window

Drawing area is the place you can use to draw or design your database. Right click on the drawing area and brows Create and select which you want to create. You have options to create database table, view, index, journal, alias, materialized query table and user defined relationship. By default user defined relationship is disabled and later will discuss how to write user defined relationship with the navigator.

Fig 4: Create Objects in Database Design
Once you create new element it is again open same window as iSeries Navigator opens to create new elements. I have already discussed to work them and design your database. You read more details from this article.
Once you designed you database using this tool it will look like this.

Fig 5: Sample Database Navigator Map
Final step is save the successfully design database into you DB2 database management system. Select save option from the file menu then give a name for your map select schema in which you need to save the database.
Later if you want you can change this design any time and save it. Please note that if you save the Database Navigator Map that mean your are physically change your database.
While your friend is spending days to develop a database, you can simple develop your database withing few minutes and have a relax. So try and see how you can simplify your work and have a fun.
If you have any questions you can post them under comments. I will reply them.

Comments

  1. how we download this component?

    ReplyDelete
  2. You don't need to download as separate application. It comes with your iSeries Navigator Client installation from IBM package. Please refer below link if you need to know how to open this application

    http://lk-tech.blogspot.com/2009/05/ibm-iseries-navigator.html

    ReplyDelete

Post a Comment

Popular posts from this blog

The Power of ChatGPT and Whisper Models

A Deep Dive into Natural Language Processing Natural Language Processing (NLP) has seen a significant boost in recent years due to advancements in artificial intelligence and machine learning. Two models that have shown remarkable success in NLP are ChatGPT and Whisper. In this article, we will delve into the power of these models and their applications in the field of NLP. ChatGPT is a transformer-based language model developed by OpenAI that uses unsupervised learning to predict the next word in a sentence based on the context of previous words. ChatGPT is a generative model that is trained on large datasets of text, such as books and articles, and can be fine-tuned for specific tasks, such as question-answering or dialogue generation. ChatGPT is known for its ability to produce human-like text, making it an ideal tool for applications such as chatbots, content creation, and language translation. Whisper, on the other hand, is a paraphrasing model developed by Google that is based on...

SMPP protocol library for fast and easy SMSC(Short Message Service Centre) client development even for non-telecom guys

SMS sending through .NET C# is really easy. But most of the guys face many issues with SMSC client developments. SMPP protocol has many parameters to configure, but for simple SMPP gateway application you need very few of them to configure correctly. This article will cover how to implement SMSC client application using EasySMPP library. EasySMPP is a free SMPP library used by many people to implement SMS sending applications. There are many SMPP libraries but EasySMPP library is very easy to use and relatively stable. EasySMPP library mainly contain five class library projects. KernelParameters, SMPPClient, SMSClient, SMSService and Tools are the library projects and you only need to use SMSClient library to implement SMPP client application. First download EasySMPP library and add class library project to your .NET C# solution.  1. public bool SendSms( string from, string to, string text)

Setting up the react native development environment

  This tutorial I am going to focus on how to install and build your first React Native application. There are two methods you can follow to develop React Native app. If you are very new to mobile development and not familiar with setting up mobile development environment, I would suggest to start with Expo CLI. Expo is a set of tools to build React Native application. It has may features; you have to select suitable features to develop your app in minutes. You need only a recent version of Node.js and a phone or emulator. If you want to test your React Native application on your web browser before installing any tools, you may use Snack.   If you are familiar mobile developer from other languages and want to try out React Native, you may try out React Native CLI. For that you need to install either Xcode for iOS or Android Studio for Android OS.   If you are a beginner, my personal suggestion is to go for Expo CLI and familiar with the React Native features and...