Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle 9i DB on Mac OS X

323572Aug 14 2002
Has there been any announcement as to the availability of the Oracle 9i database for Mac OS X? It's been a few months since Oracle and Apple made the announcement and so far no product. I'm dying to try this thing out.

Comments

AlbertoFaenza
Hi,

welcome to the forum.

Please read 2176552

How do you pretend to get an answer with such questions?
Where is your table structure?
Where is your sample data?

Regards.
Al
L-MachineGun
Also, be aware we DO NOT do the homework for you but rather may help you if you get "stuck".
You need to work it out yourself and post the results.
:p
sb92075
Handle: 945059
Status Level: Newbie
Registered: Jul 8, 2012
Total Posts: 213
Total Questions: 42 (34 unresolved)

why do you waste time here when most of your questions remain unanswered?
APC
The one thing more annoying than people who post code without using the {noformat}
{noformat} tag to make it readable and those people who use {noformat}
{noformat} tags to render ordinary text unreadable.

You have posted more than two hundred times. That really ought to be sufficient both to understand how to use the forum software properly and to grasp the etiquette of asking your questions in an appropriate way.

So please edit your question and fix the formatting.

Your future co-operation is appreciated.

Cheers, APC
stefan nebesnak
Could you post the schema of these tables?
SQL*Plus command:
 
SQL> DESC TIS_EVENT
SQL> DESC TIS_DT
SQL> DESC TIS_EVENT_DT_RLTSHP
Your requirement is very unclear, it's difficult to suggest the correct way, check the following example:
SELECT t.r_id_event4, 
       t.event_id, 
       t2.event_desc, 
       To_char(t3.DATE, 'YYYY') AS Year 
FROM   tis_event_dt_rltshp t --EVENT DATE RELATIONSHIP 
       join tis_event t2 USING (event_id) --EVENT 
       join tis_dt t3 USING (event_id) --DATE 
WHERE  t2.annual_event_flg = 'Y' 
       AND To_char(t3.DATE, 'YYYY') = '2013'; 
1 - 5
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 19 2002
Added on Aug 14 2002
2 comments
236 views