11/29/2019

Real Time Scenarios of ORACLE SQL developement - 2

How to extract the Successor and Predecessor of a student based on marks. Tables: drop table student;create table student(id int,name varchar(10),dept int,marks int);insert into student values(1,'Vishnu',111,95); insert into student values(2,'Ashwin',111,26);insert into student values(3,'Vinay',111,56);insert into student values(4,'Ajay',222,48);insert into student values(5,'Teja',222,92);insert into student values(6,'Venkat',333,28);insert...

11/28/2019

Real Time Scenarios of ORACLE SQL developement - 1

Display Credit and Debit Amount in an account for a given date in ORACLE. Table : Transaction Queries: drop table Transaction; create table Transaction (Account_Number varchar2(10),  Transaction_Type varchar2(10),  Amount integer, Transaction_date date); insert into Transaction values ('111','Credit', 1000, '11-Nov-27'); insert into Transaction values ('111','Credit', 1200, '11-Nov-27'); insert into Transaction...

11/10/2019

How to connect and fetch result in DB2 through python?

Till now I have automated db2 tasks using shell script, now I'm using python as automation tool. To use db2 in python, we must install ibm_db2 plugin in python. apt install python-pip pip install ibm_db Then we need to import ibm_db function in our python script. Now I'll show you a simple script to connect and fetch result using Python script...

11/09/2019

Installation of DB2 V11.5 software using db2_install

Before preparing to install DB2,we should check the required library files on OS. Note: I installed DB2 on Ubuntu so used apt-get to install libraries. Installation of library files: To verify whether the required packages are installed on OS use below command:   dpkg --get-selections | grep -i <package-name>  dpkg --add-architecture i386 #Command will enable i386 Architecture apt-get update We must install below library files:...

11/03/2019

Steps to ask yourself while troubleshooting in DB2.

First important step is to describe the problem completely. You will not know where to start and what investigation you need to do without a problem description. Basic questions you should ask yourself: ==> What are the symptoms? ==> Where is the problem happening? ==> When does the problem happen? ==> Under which condition problem happen? ==> Is the problem reproducible...

ads