10
votes
15answers
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.
…
1
vote
When to commit changes?
As well as reducing the commit frequency, you should also consider performing bulk updates instead of individual ones.
…
1
vote
Trip time calculation in relational databases?
Here's an Oracle methodology using an analytic function.
with data as (
SELECT 1 trip_id, to_date('20080801 13:30:00','YYYYMMDD HH24:mi:ss') dt, 'Initial' step from dual UNION ALL
…
0
votes
Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server
What proportion of the rows in the table meet the condition "engineer1 IS NOT NULL AND engineer2 IS NOT NULL"?
This tells you (roughly) whether it might be worth trying to use an index to r …
0
votes
Why does a T-SQL block give an error even if it shouldn’t even be executed?
By the way, there is a similar issue in Oracle, and a similar workaround using the "execute immediate" clause.
…
14
votes
SQL - fetch the row which has the Max value for a column
This will retrieve all rows for which the my___date column value is equal to the maximum value of my_date for that userid. This may retrieve multiple rows for the userid where the maximum date is o …
1
vote
Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server
"Although I'm still curious why I have to do this, and if/when I would need to run it again?"
The statistics give Oracle's cost-based optimzer information that it needs to determine the eff …
5
votes
Inner join vs Where
They're logically identical but in the earlier versions of Oracle that adopted ANSI syntax there were often bugs with it in more complex cases, so you'll sometimesencounter resistance to using it f …
1
vote
Disable all table constraints in Oracle
This can be scripted in PL/SQL pretty simply based on the DBA/ALL/USER_CONSTRAINTS system view, but various details make not as trivial as it sounds. You have to be careful about the order in which …
1
vote
Disable and later enable all table indexes in Oracle
If you are using non-parallel direct path loads then consider and benchmark not dropping the indexes at all, particularly if the indexes only cover a minority of the columns. Oracle has a mechanism …
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 …
4
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
…
