10
votes
16answers
2k views
What’s the difference between TRUNCATE and DELETE in SQL
I wrote up an answer to this question by mistake in response to a question about the difference between DROP and TRUNCATE, but I thought that it's a shame not to share so I'll post my own answer to …
2
votes
cx_Oracle - How do I access Oracle from Python?
The Oracle Technology Network website has a lot of Python examples that would be worth reviewing.
…
0
votes
How do I do a manual uninstall of Oracle?
Do you want to deinstall the software, or drop the database?
…
4
votes
Business Logic: Database or Application Layer
Database independence, which the questioner rules out as a consideration in this case, is the strongest argument for taking logic out of the database. The strongest argument for database independen …
1
vote
Best practices for consistent and comprehensive address storage in a database
The authorities on how addresses are constructed are generally the postal services, so for a start I would examine the data elements used by the postal services for the major markets you operate in …
1
vote
Fetch one row per account id from list, part 2
If your RDBMS supports them, then an analytic function would be a good approach particularly if you need all the columns of the row.
select ...
from (
select accountid,
…
0
votes
What’s the SQL query to list all rows that have 2 column sub-rows as duplicates?
Forget joins -- use an analytic function:
select col1, col2, col3
from
(
select col1, col2, col3, count(*) over (partition by col1, col2) rows_per_col1_col2
from table
)
where rows_ …
0
votes
Key value pairs in relational database
If you go the route of a KVP table, and I have to say that I do not like that technique at all myself as it is indeed difficult to query, then you should consider clustering the values for a single …
3
votes
Sybase Developer Needs To Learn Oracle
Tom Kyte's latest book "Expert Oracle Database Architecture:9i and 10g Programming Techniques and Solutions" is definitely what you want.
For PL/SQL look for Steven Feuerstein's book
…
19
votes
What’s the difference between TRUNCATE and DELETE in SQL
Here's my complete list. Some are probably Oracle-specific but others will be generally applicable. Some are obvious, but still worth stating I think.
Statement type: Delete is DML, Truncat …
3
votes
How many database indexes is too many?
In data warehousing it is very common to have a high number of indexes. I have worked with fact tables having two hundred columns and 190 of them indexed.
Although there is an overhead to t …
9
votes
Can Multiple Indexes Work Together?
Oracle will almost certainly use the most selective index to drive the query, and you can check that with the explain plan.
Furthermore, Oracle can combine the use of both indexes in a coup …
2
votes
2
votes
pl/sql dollar operator?
Regardless of where he name came from, it's contrary to Oracle's documented advice: …
9
votes
How do you interpret a query’s explain plan?
I shudder whenever I see comments that full tablescans are bad and index access is good. Full table scans, index range scans, fast full index scans, nested loops, merge join, hash joins etc. are si …
