Matthew Watson

3,597
reputation
183 views

Registered User

name Matthew Watson
member for 1 year
seen 2 hours ago
website
location Perth, Australia
age 31
Perl Developer trying to transition to Oracle DBA
11h
answered writing a generic procedure in oracle
2d
answered Sychronizing two databases
Nov
29
comment overcoming ‘log file sync’ by design?
Partitioned table would be ideal, however thats not an option. However, what i'm doing is essentially "poor mans partitioning". I never query outside of a "group" so there really isn't any need to have all rows accessible within a single query.
Nov
29
comment overcoming ‘log file sync’ by design?
Yes, its definitely not due to excessive commits, this process does a single commit. Turning off this process massively reduces the redo. I have implemented the solution in the question, and it has greatly reduced the amount of redo and log file sync waits.
Nov
27
revised overcoming ‘log file sync’ by design?
edited tags
Nov
27
asked overcoming ‘log file sync’ by design?
Nov
27
awarded  Popular Question
Nov
22
awarded  Popular Question
Oct
25
accepted Package Level Constants in Oracle to Postgres Conversion
Oct
25
revised Setting Up MySQL Triggers
added 119 characters in body
Oct
24
answered Package Level Constants in Oracle to Postgres Conversion
Oct
15
revised Modifying an Oracle Ref Cursor
added 1 characters in body
Oct
15
accepted Modifying an Oracle Ref Cursor
Oct
15
answered Modifying an Oracle Ref Cursor
Oct
7
awarded  Popular Question
Oct
2
comment atomic compare and swap in a database
Note, doing this doesn't stop another session reading that row, UNLESS that other session is also using the "for update" clause.
Sep
18
comment What is bad in “When Others Then Null” in PL/SQL ?
@darreljnz: and then one day you'll be scratching your head over why something is failing, and have go adding debug code, or run through the debugger to find the place where its failing. There may be very limited cases, I would suspect its more like 999/1000 than 9/10 though.
Sep
17
accepted What is bad in “When Others Then Null” in PL/SQL ?
Sep
17
comment What is bad in “When Others Then Null” in PL/SQL ?
No, its bad to ever use it. at the VERY least, your when others clause should log the exception somewhere. but most likely you should log and raise the exception
Sep
17
answered What is bad in “When Others Then Null” in PL/SQL ?
Sep
15
awarded  Popular Question
Sep
4
comment Why are Oracle table/column/index names limited to 30 characters?
Not just millions of lines of DBA written code, but plenty of oracle internal code no doubt too. This topic came up in a session with steven feuerstein and he said he didn't think they would ever change it.
Sep
1
awarded  Yearling
Aug
27
answered How do you check for updates across many tables in Oracle?
Aug
21
answered How can I keep Oracle SQL Developer from closing the DB connection?
Aug
20
answered Oracle: How to find out if there is a transaction pending?
Aug
11
awarded  Nice Question
Jun
16
revised Two Phase Commit/Shared Transaction
added 228 characters in body; edited tags