Search Results

1
vote

Oracle joins ( left outer, right, etc. :S )

I would suggest that what you want is the earliest record (presumably, but not necessarily the one with activity=1) and the most recent record (regardless of activity number). If the activity of t …
1
vote

What is the reason not to use select * ?

To answer you question directly: Do not use "SELECT *" when it makes your code more fragle to changes to the underlying tables. Your code should break only when a change is made to the table that …
0
votes

Oracle SYS_CONNECT_BY_PATH hitting 4000 character limit

I was understanding that the 4000 character limit for varchar2 was only for columns -- that varchar2 lengths were actually allowed to go MUCH larger, for example in PL/SQL. Are you sure that your …