Database

Relational Database architecture Overview

Relational Database Architecture is a structured way of organizing data in a database management system (DBMS) that follows the principles of the relational model. The relational model was introduced by Edgar F. Codd in 1970 and has since become the Read More …

Posted in Database, Social, Technology, Uncategorized | Tagged , , | Leave a comment

Learning Data Science Step by Step Part 2

Absolutely, I understand. Let’s break down a step-by-step tutorial for learning data science and preparing blog content. This tutorial assumes you have some basic knowledge of Python. If not, it’s a good idea to start with Python programming before diving Read More …

Posted in Database, Social, Technology, Uncategorized | Tagged , , , | Leave a comment

Learning Data Science Step by Step Part 1

Introduction: Data science is a powerful tool that allows us to extract meaningful insights from raw data. In this case study, we’ll dive into the fascinating world of predicting housing prices. Our goal is to develop a model that accurately Read More …

Posted in Computer, Database, Interview, Technology, Uncategorized | Tagged , , , | Leave a comment

What is Database management System?

A Database Management System (DBMS) is software that allows users to create, manipulate, and manage databases. It serves as an intermediary between the users and the underlying database, providing an organized and efficient way to store, retrieve, update, and delete Read More …

Posted in Database, Design, Interview, Technology, Uncategorized | Tagged , , , , | Leave a comment

How to select a right database?

Selecting the right database for your needs depends on various factors, including the nature of your data, the scale of your application, performance requirements, scalability, budget, and specific features you require. Here are some steps to help you in the Read More …

Posted in Database, Interview, Technology, Uncategorized | Tagged , , , , | Leave a comment

Best Relational Databases for Enterprise Application

Choosing the best relational database for an enterprise application depends on various factors such as the specific requirements of the application, scalability needs, performance expectations, data volume, budget, and existing infrastructure. Here are some popular and commonly used relational databases Read More …

Posted in Database, Interview, Technology, Uncategorized | Tagged , , , , , | Leave a comment

Database Basic Concepts

Introduction The database is the backbone of any application. The success and failure of the application depend on various things and the database is also one of them. The performance of the application depends on the efficient and effective usages Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , , , , , , | Leave a comment

SQL Query Performance Improvement Tips

Introduction The SQL query is a critical part of any software development and needs by many resources like – Developer – Tester – Lead – Manager – Management (Some Time) – Reporting Team All needs SQL query to get the Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , , | Leave a comment

Oracle SQL Developer to generate an ER diagram

Introduction The Oracle SQL Developer is a pretty powerful and efficient tool to connect with the Oracle database and perform some useful utilities like Write PLSQL, SQL, Import, Export data, SQL performance and generate Entity Relationship Diagram. We will discuss Read More …

Posted in Database, Design, Technology, Uncategorized | Tagged , | 2 Comments

Oracle SQL Developer – Monitor Sessions

Introduction The database is a very important component of any software and needs to maintain and monitor properly. The main job of a database administrator is to monitor the database, he can monitor the activities of the database and its Read More …

Posted in Database, Interview, Technology, Uncategorized | Tagged , , , , | Leave a comment

DB – SQL Query to produce Result Randomly

Introduction Sometimes, The developer gets the requirement to produce a list of object or data in Random order. The Random order means that the developer should not control the order by using any other filtering criteria. The result should be Read More …

Posted in Database, Technology | Tagged , , , | Leave a comment

Database SQL – Retrieve Date or Month or Year From Date

Introduction This is a very common situation when one user wants to retrieve Date or Month or Year from a date field. This is a very easy and there are various ways to retrieve Date or Month or Year from Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , , | 1 Comment

Read XML Data attribute Value From the Database through SQL Query

Introduction This is a very common situation where the user wants to read the contents of the XML file which store in the column with Data Type as a CLOB.This SQL is very specific to below-given XML and will vary Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , | 2 Comments

Pivoting rows into columns dynamically in Oracle Database SQL

Introduction The turning of rows to columns is a common requirement. The user can write a dynamic SQL query to turn rows to the column and vice-versa. Most of the database has some inbuilt function which helps to achieve this Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , | Leave a comment

Database SQL – Bulk Insert And Update

Introduction This tutorial helps to explain and write complex SQL Query which needs to create temporary tables and does bulk update or insertion. This is a common requirement for every project where data migration required to fetch the data from Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , , , , | 3 Comments

Change Oracle password using SQL*Plus

Change or Reset Password using SQL Plus This tutorial helps to change the password using the command prompt, please follow below step by step instruction – Open the command prompts Type “sqlplus username@databasename“ Once hit enter button then it will Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , | Leave a comment

Set a custom date time format in Oracle SQL Develover

Introduction It is very important to set custom date time format for date column in Oracle as By default, Oracle SQL developer displays date values as 08-NOV-16. If a user wants to see the time part (hour/minute/second) by default then Read More …

Posted in Database, Technology, Uncategorized | Tagged , , , | Leave a comment

Java DB Setup with Example

Introduction Sun Microsystems recently announced that it is distributing and supporting Java DB based on the 100 percent Java technology, open-source Apache Derby database. Derby was previously available under its earlier name, Cloudscape, from its former owners: Cloudscape, Informix, and IBM. IBM Read More …

Posted in Computer, Database, JAVA, JavaProgramming, Technology, Uncategorized | Tagged , , , , , , | Leave a comment

Migrating Oracle SQL Developer Connections With Encrypted Password

Introduction This tutorial will help to migrate Database connection between SQL Developer(S). It is very helpful and quick when you export and import already existing database connection from one machine to other machine. it reduces a lot of effort and Read More …

Posted in Database, Social, Technology, Uncategorized | Tagged , , , | 2 Comments

IBM Curam KeyServer Generation

Introduction This tutorial aims to explain KeyServer generation technique for unique value for a specific column for one or more tables. Curam provides a technique to generate unique IDs across the application tables based on KeyServer name. The goal is to Read More …

Posted in Curam, Database, IBM | Tagged , , , , , , | Leave a comment

H2 Database Configuration For IBM Curam

Introduction H2 is a Relational Database Management system(RDBMS) purely written in Java. It can be embedded in java application or run as a client server application mode. It is having very important and light weight feature like – Very fast, Read More …

Posted in Curam, Database, IBM, Technology, Uncategorized | Tagged , , , , , | Leave a comment

Oracle Database Connection With Examples

To achieve this, JDBC specifications are agreed upon within the Java community–and each database vendor is then left to implement these specification to work with their product. Oracle Drivers Oracle provided two types of Drives. Thin OCI OCI   The OCI Read More …

Posted in Database, JAVA, Technology, Uncategorized | Tagged , , , | Leave a comment

DB2 Database Connection With Examples

An Example of connecting to DB2 Database using JDBC Driver. A typical example code of connect to database will look like this Class.forName(jdbcClassName); Connection connection = DriverManager.getConnection(url, user, password);   Listed below are connection examples for three common JDBC drivers Read More …

Posted in Database, JAVA, Technology | Tagged , , , , , | 1 Comment

MySQL Database Connection With Examples

Introduction MySQL is a popular open source database which can be used free of charge. MySQL is a relational database. Web applications can use this database to store persistence data. This post explains how to set up Java applications to Read More …

Posted in Database, JAVA, SchoolCourse, Technology | Tagged , , , , | 1 Comment