Friday, June 17, 2022

How to execute different select queries at once in Oracle database using SQL*Plus command line?


 (SQL*Plus) is a command-line tool for accessing Oracle Database using a terminal.

It enables you to enter and execute SQL, PL/SQL, and SQL*Plus commands to do the following things.

  • Query, insert, and update data
  • Execute PL/SQL procedures
  • Examine table and object definitions
  • Develop and run batch scripts
  • Perform database administration


Friday, April 22, 2022

How to export data from Oracle database using SQL*Plus command line?


Oracle database is a collection of data which treated as a unit.  Oracle Database is the first database designed for enterprise grid computing which supports to connect hardware and software components on demand to meet the changing needs of businesses.


SQL*Plus is an interactive and batch command-line query tool that is installed with every Oracle Database installation. It can access through the following ways.

  • Command-line user interface
  • Windows Graphical User Interface (GUI)
  • iSQL*Plus web-based user interface


In this article, I am focusing on how can we interact with the Oracle database using the Command-line user interface.

How to send Slack notification using a Python script?

 In this article,  I am focussing on sending Slack notifications periodically based on the records in the database. Suppose we have to monit...