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


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...