Gary

3,311
reputation
110 views

Registered User

name Gary
member for 1 year
seen 11 hours ago
website
location Sydney, Australia
age 40
Oracle developer in Sydney, Australia
19m
accepted Renaming tags in XML output
14h
comment solution for ORA-00933
number is a reserved word so if that is actually the column name you are using, I'm not surprised it is confused.
21h
revised Select query causing exception
Added worked out example of DBMS_TRACE
22h
comment Oracle instant client deployment?
On Linux you need to set LD_LIBRARY_PATH. ODBC requires an executable to be run (don't know the privileges required to run it)
2d
answered Executing Dynamic SQL in Oracle (PL/SQL) and Ensuring Security…
Dec
11
answered Difference between not equal and greater than for a number
Dec
11
comment How to reduce undo tablespace size in oracle?
You go to stackoverflow for advice from experienced developers. Pointing people to google is pointless. You are not pointing them to a specific answer (let alone one you think is correct). Oh and putting up answer that people downgrade wastes their time too.
Dec
11
answered Strategy for managing Oracle packages without breaking code
Dec
11
comment Poll Oracle DB for changes
ROWIDs do not increment. New rows can be inserted into existing blocks (eg if there has been a delete or even an update that makes space). ASSM can spread inserts over different blocks....
Dec
10
comment Writing Triggers or implementing actions by programming?
Bear in mind that these 'enforcements' often break when multiple people are working concurrently. For example, someone adding a person to a committee at the same time as someone else makes them a chairman. The only way to really enforce such rules is to serialize the operations so that any validation test is done with the certainty that the state is fixed for the duration of the test.
Dec
10
comment How to send arbitrary parameters to Oracle trigger?
Just to clarify, if there are 10 database sessions, then there are a maximum of 10 concurrent database states even if you have 50 application end users. The point of a connection pool is to share those database sessions. The application would grab one connection/session for the duration of a transaction. It would not necessarily use the same connection for a subsequent transaction by the same application end user.
Dec
10
answered Impact of defining VARCHAR2 column with greater length
Dec
10
answered Renaming tags in XML output
Dec
10
revised Is this a valid way to use the Oracle Recovery Manager with the Oracle Job Scheduler?
Add code fragment as suggestion
Dec
9
answered Is this a valid way to use the Oracle Recovery Manager with the Oracle Job Scheduler?
Dec
9
answered Select query causing exception
Dec
9
answered how to sort_area_size increase
Dec
9
comment How to read xml respone using in oracle sql
Is this a 'response' a UTL_HTTP response ? Suggest you give an example of the XML structure and indicate whether you are dealing with it from SQL or PL/SQL
Dec
9
answered Oracle 10g temp tables
Dec
9
accepted ODP.Net Stored Procedure performance issues on large datasets.
Dec
9
accepted Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rows
Dec
9
answered ODP.Net Stored Procedure performance issues on large datasets.
Dec
8
comment oracle commit kills
I'd bet on the commit raising an exception but the application language doesn't expect it.
Dec
8
comment Scalability of Oracle Forms
34-bit Windows ? I guess that should be 32-bit if you are talking memory problems
Dec
8
answered Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rows
Dec
8
accepted Change Oracle Schema at runtime when using SubSonic
Dec
6
comment Cons of Oracle Database.
Except for Oracle XE which is free. Or Oracle Personal Edition which is pretty cheap (depending on what you compare it against). Or Standard Edition which can be reasonable (depending, again, on what you compare it against). Oh, and if you have data worth hundreds of millions of dollars, then even Enterprise Edition could be considered inexpensive.
Dec
6
comment Cons of Oracle Database.
Oracle XE is free. Oracle Person/Standard/Enterprise Editions are not, whether for small-time use or not. I'd also argue that Oracle is not for a PC 'personal computer' but a dedicated server.
Dec
6
comment Cons of Oracle Database.
It doesn't make tea ? Seriously, you weigh up pros and cons against a requirement. Can we use 'A' to achieve 'X'. After that, you may weigh it up against the competition. Is 'A' cheaper than 'B', or do we have skills available in 'D' ?
Dec
6
answered NHibernate - Deleting objects with composite PK, when one of the PK columns is NULL
Dec
6
comment how to increase oracle query when 22,000,000 records in single table?
I'm amazed it works at all with this: and project_yy = '2009' and '01' and '10' What is "too slow" ? 5 seconds, 10 minutes, 2 hours ? How often do you run the query ? It has the feel of a 'report' that may be run once a day or once a week. If you are running it hourly, you can probably just run it once a night as a materialized view
Dec
5
answered How to create a menu in SQLPlus or PL/SQL
Dec
4
answered Invalid Number Error! Can’t seem to get around it.
Dec
3
comment How to compare groups of tuples in sql
If you have a large data set (tens/hundreds of thousands of rows) comparing every group in table1 to every group in table2 would be a big task. The min/max/count would cut that down to a more manageable level by quickly excluding groups with different numbers of members or with different minimum/maximum values.
Dec
3
answered Change Oracle Schema at runtime when using SubSonic
Dec
3
comment Oracle’s default date format is YYYY-MM-DD, oh dear god, WHY???
The DBA can set up whatever NLS_DATE_FORMAT system-wide that they want. However, often the database simply returns a value in the seven byte internal date format, and the client software does its own job of translating that into a string.
Dec
3
comment Oracle’s default date format is YYYY-MM-DD, oh dear god, WHY???
Selecting a date from oracle through OCI returns a seven byte value. It is the responsibility of the CLIENT SOFTWARE to translate that into a character string. In the case of ODBC/JDBC, the driver maps the seven byte value in the appropriate local datatype.
Dec
3
answered TNS Redirection?
Dec
3
answered How to compare groups of tuples in sql
Dec
3
answered SQL optimization question (oracle)
Dec
2
answered Finding terabytes of data and using in oracle for learning purposes
Dec
2
comment Finding terabytes of data and using in oracle for learning purposes
You could use a tool like dominicgiles.com/datagenerator.html
Dec
2
answered ExecuteNonQuery doesn’t throw exception on insert
Dec
2
comment Data Correlation in large Databases
You don't say what sort of data you are looking for (names, credit card numbers, passwords), what your databases are about, whether they contain structured or unstructured data, maybe even multi-media stuff, like images and audio...
Dec
2
answered Data Correlation in large Databases
Dec
1
accepted Is there a better way to debug “wrong number or types of arguments in call” errors?
Dec
1
comment How to shrink temp tablespace in oracle?
Another reason could be heavy usage of global temporary tables.
Dec
1
answered Oracle How to Avoid writes to UNDO / REDO log .
Nov
29
comment CACHE of SQL in oracle
The query is tied to both the parsing schema name and the session user. So user_a can do an ALTER SESSION SET CURRENT_SCHEMA=USER_B and run SELECT * FROM EXAMPLE. The query looks for tables/views/synonyms for EXAMPLE in USER_B but also checks whether USER_A has privileges on those objects. There can be multiple SQLs with identical text that refer to objects with the same name in different schemas.
Nov
29
accepted Oracle tuning / analyze tables