Dictionary – Python

Dictionary ▪️ Dictionary is the inbuilt data type in python which organizes data in a collection of key-value pairs, where each key is unique and maps to a specific value. ▪️ Each element in the dictionary is a key–value pair and one individual key value… Read More

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

COLLECTION DATATYPES IN CQL

COLLECTION DATATYPES IN CQL Collections are designed to store and denormalize modest amounts of data. They are useful for things like “labels applied to an email,” “the phone numbers of a given user,” and so on. However, collections are inappropriate in situations when items are… 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