Re: Update Status Field after Expiry Date
- From: Erland Sommarskog <esquel@xxxxxxxxxxxxx>
- Date: Tue, 27 Mar 2007 21:15:07 +0000 (UTC)
(shane.taylor81@xxxxxxxxx) writes:
Consider the following table
Customer
custId char(10)
accountExpiryDate datetime
accountStatus bit
Now, I want to update the accountStatus to False as soon as the
current date becomes accountExpiryDate.
I think it can be done using "SQL Agent" but my webhost doesnt provide
me access to that. I have access only to the Query Analyzer.
Change accountStatus to
accountStatus AS (CASE WHEN accountExpirydate < getdate()
THEN convert(bit, 1)
ELSE convert(bit, 0)
END)
--
Erland Sommarskog, SQL Server MVP, esquel@xxxxxxxxxxxxx
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
.
- Follow-Ups:
- Re: Update Status Field after Expiry Date
- From: shane . taylor81
- Re: Update Status Field after Expiry Date
- References:
- Update Status Field after Expiry Date
- From: shane . taylor81
- Update Status Field after Expiry Date
- Prev by Date: Re: SQL Server Problem
- Next by Date: Re: Indexes on SQL Server 7.0
- Previous by thread: Re: Update Status Field after Expiry Date
- Next by thread: Re: Update Status Field after Expiry Date
- Index(es):