How to download and view the AWR report in oracle database using WinSCP on a Linux server.?

   Summary: in this tutorial, you will learn how to download and view the AWR report in the oracle database using Winscp on a Linux server.


Important: Here is not only the Awr report if You want to read any report or file to need to be taken following the below steps.

1) log in to the server 

2)find the path location AWR Report where its located

3) log in to Winscp then copy and paste the location Machine.


1) log in to the server 


2)find the path location AWR Report where its located


3) log in to Winscp then copy and paste the location Machine.

I will take the ramesh_9_3_2023.html report as an example.


1)Open the Winscp Application and click the new site

2)log in to the server using ipdetails and username/password




3)Now paste the report's location top of the application.



4)Now right-click that report and paste it into your location machine.

5)Please view the report below.





                                                                Thanks for your time!!




0 Comments

DELETE Statement in ORACLE DB— Step by Step Internal Flow with classroom example.

Imagine your Oracle database like a school, and you’re Teacher decides to remove a student (row) from the classroom(table). Let’s see how the journey works step by step: 1)Classroom = Oracle Table 2)Students = Rows (Records) 3)Class Teacher = Oracle Server Process 4)Attendance Register = Data Dictionary User fires DELETE statement: DELETE FROM students WHERE grade = 'D'; Internal Processing Steps: Client Process Sends DELETE Statement to Server Process The teacher receives a request to remove a student from the classroom. Syntax Check (Parsing) The teacher checks if the request is grammatically correct — proper command, keywords, and a semicolon. Semantic Check Teacher verifies if the classroom exists and whether the condition (like grade = 'D') makes sense. Object Resolution Teacher confirms that the ‘students’ classroom (table) exists in the school records (data dictionary). Optimization Decides the fastest way to find those students — by roll number, grade, or al...