ADSM-L

SQL Help

2006-11-27 15:43:02
Subject: SQL Help
From: fred johanson <fred AT UCHICAGO DOT EDU>
To: ADSM-L AT VM.MARIST DOT EDU
Date: Mon, 27 Nov 2006 14:08:42 -0600
I'm trying to generate a report for storage abusers, just three columns:

Client Name      Last Access         Total Storage


This is the SQL statement That comes close:

select distinct(nodes.node_name) as "Client Name",date(nodes.lastacc_time)
as "Last Access" ,auditocc.total_mb as "Total Storage" from nodes,auditocc
where auditocc.node_name in (select node_name from nodes where
domain_name='xxx ) order by 2

but column three is always wrong.

What do I need to do to make the proper join here?



Fred Johanson
ITSM Administrator
University of Chicago
773-702-8464

<Prev in Thread] Current Thread [Next in Thread>