Search Results

2
votes
8answers
1k views

How do I troubleshoot performance problems with an Oracle SQL statement

I have two insert statements, almost exactly the same, which run in two different schemas on the same Oracle instance. What the insert statement looks like doesn't matter - I'm looking for a troubl …
7
votes

Is it stupid to write a large batch processing program entirely in PL/SQL?

Something for other commenters to note - the question is about PL/SQL, not about SQL. Some of the answers have obviously been about SQL, not PL/SQL. PL/SQL is a fully functional database language, …
0
votes

Getting data from an oracle database as a CSV file (or any other custom text format).

I'm not a PERL programmer, but here's a little extra feature you might want to investigate. Have a look at the concept of external tables in Oracle. You create a table with a definition of somethin …
0
votes

Ambiguity in Left joins (oracle only?)

A bigger question you should be asking yourself is - why do I have a category code in the parts table that doesn't exist in the categories table? …
9
votes

What is the difference between Views and Materialized Views in Oracle?

Views evaluate the data in the tables underlying the view definition at the time the view is queried. It is a logical view of your tables, with no data stored anywhere else. The upside of a view is …
0
votes

perl JOIN-like behavior in Oracle?

The short answer is to use a PL/SQL function. For more details, have a look in t …
1
vote

Joining other tables in oracle tree queries

In your query, replace T2 with a subquery that joins T1 and T2, and returns parent, child and child description. Then in the sys_connect_by_path function, reference the child description from your …
0
votes

How to check if a trigger is invalid?

Have a look at SYS.OBJ$, specifically the STATUS column. …
3
votes

Explain Plan for Query in a Stored Procedure

Use SQL Trace and TKPROF. For example, open SQL*Plus, and then issue the following code:- …
2
votes

How to avoid storing credentials to connect to Oracle with JDBC?

I'd suggest you look into proxy authentication. This is documented in the Oracle® Data …
3
votes

Disable all table constraints in Oracle

It's not a single command, but here's how I do it. The following script has been designed to run in SQL*Plus. Note, I've purposely written this to only work within the current schema. …
4
votes

How many database indexes is too many?

Everyone else has been giving you great advice. I have an added suggestion for you as you move forward. At some point you have to make a decision as to your best indexing strategy. In the end thoug …