Viewing 15 posts - 46 through 60 (of 424 total)
i misinterpreted it and thought he wanted the the current status and the prior status (which is a requirement we often have to meet with history tables).
December 4, 2008 at 8:46 am
Jeffrey Williams (12/3/2008)
;With history (regid, status, history_date, rn)
As (Select reg_id
,status
...
December 3, 2008 at 4:11 pm
i think something like this will do it.
select * from
( select t1.reg_id, t1.status, t2.status as prior_status, t2.history_date,
row_number() over (partition by t2.reg_id order by t2.history_date desc ) as seq
from table1...
December 3, 2008 at 3:49 pm
Jason Akin (12/2/2008)
WHERE '411-555-1212' IN (HomePhone, WorkPhone, CellPhone, AltPhone)
I've found it...
December 2, 2008 at 11:56 am
is this a 2005 matrix or a 2008 tablix report?
if a 2005 matrix, your rectangle should fill the entire corner. then just size your heading boxes to your desired...
November 6, 2008 at 9:06 am
i don't quite follow you -- a screen shot would be helpful. in the meantime, you might want to try placing a rectangle in the corner. you can...
November 6, 2008 at 7:23 am
JKSQL (8/13/2008)
August 13, 2008 at 5:28 pm
a good data modelling tool can generate a cascade delete trigger for you. so that proc/table seems to be reinventing a wheel.
August 13, 2008 at 4:03 pm
append to #2: dynamic SQL. can be hard to read and more difficult to maintain.
August 13, 2008 at 2:45 pm
i meant no offense. i'm just saying that sometimes there are no shortcuts or tricks. sometimes you gotta code what you gotta code even if it is laborious.
August 13, 2008 at 2:18 pm
Mark Eytcheson (8/12/2008)
But eliminating that scope gives me the percentage of "Met" or "Not Met" for each month per the year for each user.
Ex:
...
August 13, 2008 at 7:13 am
the report viewer inteface is more/less fixed. if you have a web app, you would have to create your own interface to collect the parameters and then send those...
August 13, 2008 at 7:01 am
i'm surprised that you're surprised by this. if you want to find people based on height, weight, age, gender, race, hair color, and eye color then you're going to...
August 12, 2008 at 7:29 pm
here's faster alternative built on the attached function fListToVarchars(). (it has embedded less than characters and never displays properly.) put it in your common/global db:
USE [global]
GO
SET ANSI_NULLS ON
GO
SET...
August 12, 2008 at 12:20 pm
move the table's sort expression(s) to the group's sort expression(s) then set the table's sort expression to properly sort the groups.
table sort: stateName
group sort: cityName, zipCode
August 12, 2008 at 12:03 pm
Viewing 15 posts - 46 through 60 (of 424 total)