David Aldridge

5,485
Reputation
293 views

Registered User

Name David Aldridge
Member for 1 year
Seen 17 hours ago
Website
Location Kimblewick, UK
Age
Business Intelligence Architect

Oracle Data Warehousing
Informatica
Business Objects

Oracle ACE
17h
comment Best Forum for Oracle PL/SQL, SQL?
+1 for the Oracle Technet Forums.
17h
answered overcoming ‘log file sync’ by design?
2d
accepted Delete all but some rows - Oracle
2d
answered Oracle C++ linux and more weird stuff
2d
comment Delete all but some rows - Oracle
+1: Ah, consensus is always good :)
2d
answered Delete all but some rows - Oracle
2d
answered Update statement optimization (functions in the where clause)
Nov
26
answered PL/SQL Procedure and a crystal report
Nov
26
accepted How to choose and optimize oracle indexes ?
Nov
26
answered 100 billion records per day in Oracle - is this a problem?
Nov
26
answered How can I tell if a Materialized View in Oracle is being used?
Nov
26
comment How to break trigger event?
I'm not sure I follow you, Jeffrey. Can you expand on that?
Nov
25
answered How to break trigger event?
Nov
25
accepted How to store in the field only time, not date + time pair?
Nov
25
comment Use Of Correlated Subquery.
What you're describing there is pretty much a join. The query transformation stage of the optimisation process can convert a correlated subquery to a join and it could be implemented as a hash join or nested loop (etc). A correlated subquery against a very large unindexed table could well be a performance issue but that's because the join is inefficient, not because the syntax for specifying it in SQL implies an inherently ineffcient database operation.
Nov
25
comment Oracle: speeding up count(*)?
If you want the number of rows then use Count(*). Oracle will look for the most efficient way of returning the result, using parallel FTS, a fast full index scan for a non-null column, a materialised view, a cached value or whatever. The CBO is pretty smart.
Nov
25
answered Use Of Correlated Subquery.
Nov
25
comment When to choose Oracle over MySQL?
eBay is rather an extreme example. If you adopt their methodology for your own development then in 99% of cases you'll have a grossly over-engineered solution.
Nov
24
comment SQL getting max date from two tables
If the number of bytes from the user table by which you have to group-by was very large then it might be more efficient to perform an aggregation of the studies table in an in-line view or subquery factoring clause and then join to the users table.
Nov
24
answered How to store in the field only time, not date + time pair?
Nov
24
answered Oracle SQL Count Function Display Only One Value
Nov
24
comment Oracle SQL Count Function Display Only One Value
... and learn how to use Stackoverflow ... you ought to just comment on the answers, not provide another one yourself ;)
Nov
24
answered When to choose Oracle over MySQL?
Nov
23
comment SQL query using oracle 10g database datetime equal not working
-1: Well that pretty much makes sure that the optimiser will have no clue about the cardinality of the result set, and that any index on TR.DT_HRE_APPEL will not be used. Sees to me that your code is functionally the same as TR.DT_HRE_APPEL >= TO_DATE('" & Fonctions.ConversionType.FormatToDateString(dateDe) & "','YYYY-MM-DD')"
Nov
23
answered OCCI: Querying for metadata of a stored procedure within a package
Nov
23
comment Is it possible to partially refresh a materialized view in Oracle?
Are you referring to partition change tracking? It seems like a long shot that the OP would be able to leverage that if the MV query is as complex as stated.
Nov
21
revised External Tables vs SQLLoader
removed plsql tag
Nov
21
answered External Tables vs SQLLoader
Nov
20
revised SQL aggregation question
added 619 characters in body
Nov
20
comment SQL aggregation question
Ah hah ... how many locations do you have in total?
Nov
20
comment SQL aggregation question
So reading an entire table through an index is much less efficient than reading it as a full table scan.
Nov
20
comment SQL aggregation question
That's true but it also implies accessing the tables using single block reads, with a very high number of logical reads compared to using full table scans. Reading 1,000 rows from a very large table using an index might involve several thousand logical reads and many of those could easily be physical reads because of the number of blocks across which the rows are distributed (depending on clustering_factor)
Nov
20
answered SQL aggregation question
Nov
19
accepted Oracle: how to disable table compression on dmp file import
Nov
19
comment Oracle: how to disable table compression on dmp file import
So your table is precreated, using NOCOMPRESS, and IGNORE=Y, but you still get that error? Is it possible to tell whether the error is occuring as part of the attempt to create the table? I wonder whether the attempt to create the table is raising this error but IGNORE=Y is only set to ignore "Table already exists" errors, and is not ignoring "Feature not enabled" errors. One option would be to open the exp file and replace COMPRESS with NOCOMPRESS (try to modify a string of a given length to one of the same length to avoid rewriting all the subsequent data though)
Nov
19
answered SQL “Join” on null values
Nov
18
comment Unique Id Generation
0% accept rate?
Nov
18
answered Oracle: how to disable table compression on dmp file import
Nov
18
comment Convert timestamp/date time from UTC to EST Oracle SQL
Specifying timestamp literals is easier with the ANSI syntax, so you could replace "to_timestamp('2009-11-17 18:40:05','yyyy-mm-dd hh24:mi:ss')" with "timestamp '2009-11-17 18:40:05'" ... a little more compact
Nov
18
answered How do you select all columns, plus the result of a CASE statement in oracle 11g?
Nov
17
answered Commandline to modify tnsnames.ora
Nov
17
answered how to use = assignment operator with timestamp date column in oracle
Nov
16
answered Why would Oracle ignore a “perfect” index?
Nov
16
comment how to group by week in mysql?
you mean trunc(sysdate,'W'), not trunc(sysdate,'DY')
Nov
16
comment How to speed up SQL query with group by statement + max function?
And you'd need at least one of those columns to be constrained to "not null", or you could make it a function-based index on (varchar_field1, varchar_field2, date_field,0)
Nov
14
comment Why would Oracle ignore a “perfect” index?
Yes, even more likely to be a table statistics problem than an index statistics problem because the index statistics are gathered by default when it is created.
Nov
13
revised problem with mutating tables
edited body
Nov
12
answered Multiple Select Statements within IF
Nov
12
answered return a default row in sql
Nov
12
revised Hex vs decimal as OracleCommand parameters
edited tags