MS SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesMS SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old September 7th, 2012, 09:01 AM
elcake elcake is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2012
Posts: 1 elcake User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 28 m 22 sec
Reputation Power: 0
Query: 1 table 2 different dates

Hi Everyone,

Im trying to get a select query for a daily backup report. In this case a report for date=03.09.2012

https://dl.dropbox.com/u/93299729/sql.png

On the left side is my table with the tasks name, date of backup type of backup and the state which says if the backup did run successfully.
These tasks are running everyday as incremental backup, and in between (mostly full once a week) there is a Full Backup.


On the right side is the result that i'm trying to get with a query. I want a daily report list for the backups.

The Last Full Backup column is easy:

Code:
select task, max(date) from table where type="Full" and state="OK" group by task 


This query will give me the last date of a succesfully executed Full Backup. But how can i add this column to the rest of the query?


ty

Reply With Quote
  #2  
Old September 7th, 2012, 11:00 AM
swampBoogie swampBoogie is offline
Contributing User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2003
Location: Paris Uppland
Posts: 2,352 swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 4 Days 9 h 55 m 58 sec
Reputation Power: 390
Code:
select task,
       <otherColumns>,
       date 
  from t 
 where type = 'Full' 
   and state = 'OK'
  join (select task,
               max(date) as maxDate
          from t
         where type = 'Full'
           and state = 'OK'
         group
            by task) dt
    on t.task = dt.task
   and t.date = dt.maxDate

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMS SQL Development > Query: 1 table 2 different dates

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap