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.
…
4
votes
SQL/Oracle: when indexes on multiple columns can be used
There are actually three index-based access methods that Oracle can use when a predicate is placed on a non-leading column of an index.
i) Index skip-scan: …
1
vote
How would you migrate hundreds of MS Access databases to a central service?
Oracle has a migration workbench to port MS Access systems to Oracle Application Express, which would be worth investigating.
http://apex.ora …
1
vote
When to commit changes?
As well as reducing the commit frequency, you should also consider performing bulk updates instead of individual ones.
…
2
votes
How do I change the IP address on Oracle 10g
More info please. Do you mean that you have changed the ip address of the host that the database is on and now you have to connect to it from a different macine, or are you having trouble starting …
0
votes
How do I do a manual uninstall of Oracle?
Do you want to deinstall the software, or drop the database?
…
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
…
1
vote
How can I avoid the warning fom an unused parameter in PLSQ?
I believe that this is controlled by the parameter PLSQL_WARNINGS, documented for 10gR2 here: …
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 …
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 …
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
Explain Plan for Query in a Stored Procedure
Many tools, such as Toad or SQL Developer, will prompt you for the bind variable values when you execute an explain plan. You would have to do so manually in SQL*Plus or other tools.
You co …
3
votes
Oracle Global Temporary Table / PHP interaction question
The global temporary table is simply the logical definition of a table structure (Name, column names, column data types etc). When a session references it by inserting data, a data segment is creat …
