Run SQL as JENKINS_PIPELINE_job by SQLplus script runner plugin

Run SQL as JENKINS_PIPELINE_job by SQL plus script runner plugin. Running the SQL script – As Scripted pipeline job from Jenkins file in GIT repo Note: the SQL script placed in the same location as Jenkins file

👉 Create the (above code) scripted pipeline in Jenkins… Read More

LOOPING IN PYTHON

LOOPING IN PYTHON Loop: A loop is a control flow structure that allows a set of statements that will be executed repeatedly until a certain condition is met. Loops are used to automate repetitive tasks, to iterate over a data structure. Python language support two… Read More

Tuples – PYTHON

Tuples Tuple: ➔ A tuple is an inbuilt data type which is an ordered, immutable and lightweight collection of elements in python. ➔ The term immutable means once the tuple is created you can’t modify the size or the elements which are present in the… Read More

Parameterization in Jenkins job

Parameterization in Jenkins job Parameters in Jenkins: Parameters can be used in 2 ways in Jenkins job. ▪️ Define parameter value directly inside a build job (or in shell/batch commands) as fixed value. ▪️ Define using Build Parameters – Setting build parameter and passing values… Read More

Variables in Python

Variables in Python Identifiers: An identifier is a name given to the entities in a program such as variables, classes, functions and all the other objects in python. ▪️ Identifiers are case sensitive. ▪️ There is no length restriction for the identifiers, but you have… Read More

Python Script to make connection for Oracle databases.

Python Script to make connection for Oracle databases. Hello Folks, This article will explain you about installation cx_Oracle module and basic python script to make connection to Oracle databases. Check the Python Version: 

Install oracle package cx-Oracle: cx_Oracle is a Python extension module that… Read More