Search Results

0
votes

Oracle String Concatenation Operator

There's also concat, but it doesn't get used much select concat('a','b') from dual; …
0
votes

Best way to select the row with the most recent timestamp that matches a criterion

Firstly, you will always need to look at all the rows with that foreign key, and find the one with the highest UPDATED value...which means a MAX or ORDER BY. The efficiency of the comparison is par …
4
votes

Is there a good alternative to SQL*PLUS for Oracle?

It depends what you are looking for. If it is a GUI query tool, then Oracle have their free SQL Developer product (though it has a hefty footprint). There's a few free cross-database ones too. I li …
2
votes

If I’m posting a question about Oracle SQL query performance, what should I include in my question?

Ideally, get the full query plan using DBMS_XPLAN.DISPLAY_CURSOR using the sql_id and child_cursor_id from v$sql. Failing that (ie on older versions), try v$sql_plan and include filter and access p …
0
votes

Oracle database allows invalid time portion of datetime column values under what circumstances?

Oracle generally doesn't allow it. The OCI layer can bypass the data type validation - Oracle basically trusts that what you put in those seven bytes make up a valid date. Similarly, at the OCI lay …
-1
votes

Tagging sql statements for tracing and debugging

"we know both what app, and specifically where it was executed from" You don't mention what your applications are written in. 11g picks up additional information when the SQL i …
0
votes

Compare Strings in Oracle

If the variants (Mat101, MAT101, mat101) refer to the same thing, they should have the same identifier. Depending on the volume of data, frequency of updates, queries etc, you may consider …
0
votes

SQL Insert with large dataset

"The reason why I want to do that is to avoid the rollback segment going out of space. Also, I want to see results being populated in the target table at regular intervals." The first is si …
0
votes

What is the equivalent of varchar(max) in Oracle?

In PL/SQL, VARCHAR2 can be up to 32767 bytes. For SQL the limit is 4000 bytes (which may be less than 4000 characters if you are using a multi-byte character set). …
2
votes

Generate a range of dates using Sql?

Oracle specific, and doesn't rely on pre-existing large tables or complicated system views over data dictionary objects. SELECT c1 from dual MODEL DIMENSION BY (1 as rn) MEASURES …
1
vote

What simple guidelines would you give your developers for writing good SQL against Oracle?

An hour long presentation on some Oracle fundamentals (eg parsing, SGA vs PGA). "Do this" rules may or may not apply to your situation. Give them an understanding of what the DB side does, and they …
0
votes

How does SQL join work?

With query A what you get includes entries in table 1 with a corresponding entry in table3 without corresponding entries in table3 (nulls for t2 columns) With query B uou don't get those en …
1
vote

How to determine an Oracle query without access to source code?

"though possibly not administrative access". Someone should have administrative access, probably whoever is responsible for backups. At the very least, I expect you'd have a user with root/Administ …
1
vote

SQLException: fetched column value was truncated when executing while (rs.getNext())

Is PERSON a table or view ? At some point, under the covers, Java must be working out a data length for the data. And I guess it is doing it wrong. Firstly, remove the columns one-by-one so …
0
votes

Oracle9i: Filter Expression Fails to Exclude Data at Runtime

I'd suggest you have a look at the V$SQL system view to confirm that the query you believe the VB6 code is running is actually the query it is running. Something along the lines of …

1 2 3 next
15 30 50 per page