Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Explain the method to debug errors in an oracle application.

Answer Posted / Kamar Alam

Debugging errors in Oracle Applications can be done using various techniques. One common method is by using the Debug window, where you can set breakpoints and inspect variables. Here's a simple example:

```
declare
v_variable number;
begin
v_variable := 5;
dbms_output.put_line(v_variable);
-- Set a breakpoint here
end;
/
```

When you run this code, the execution will stop at the breakpoint, and you can inspect the value of `v_variable`. Other methods include using the Application Debugger (ADB) or Oracle Developer Tools for Visual Studio.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Have you used lexical parameters in reports?

11


How many concurrent programs you have customized, can you name some of them?

8


Any work done in oracle workflow builder. Did you customize or build a new workflow?

13


Were you involved in any data conversion, which one?

13


Are you familiar with user exits in reports?

11