Viewing 15 posts - 751 through 765 (of 3,957 total)
The SQL Sharp library is (I'm pretty sure) a CLR.
February 20, 2014 at 9:07 pm
ericjorg (2/20/2014)
February 20, 2014 at 8:48 pm
irobertson (2/20/2014)
declare @MaxId int
select @MaxId = max(col4) from #TableB
insert...
February 20, 2014 at 6:38 pm
Evil Kraig F (2/20/2014)
What chapter in which textbook are you guys working on? That'll help us know what they're trying to get you to do.
🙂
That brought a...
February 20, 2014 at 6:32 pm
Well Z, as far as I can tell you've changed your requirements (again) so now I don't know whether you want a running total or just the hours split on...
February 20, 2014 at 6:18 pm
SQLRNNR (2/19/2014)
dwain.c (2/19/2014)
SQLRNNR (2/19/2014)
Yay - I'm finally insane!!! :hehe::w00t:
Hearty congratulations on this accomplishment!
I'm struggling to get to 4000 posts because of all the inane questions being asked lately. 😛
Yeah but...
February 19, 2014 at 6:51 pm
SQLRNNR (2/19/2014)
Yay - I'm finally insane!!! :hehe::w00t:
Hearty congratulations on this accomplishment!
I'm struggling to get to 4000 posts because of all the inane questions being asked lately. 😛
February 19, 2014 at 5:03 pm
zulfansari (2/19/2014)
You are amazing, how do you come with such codes? 🙂
When cumulative Double total is less than 9 then you are right hours stay as they are.
Can I...
February 19, 2014 at 1:08 am
OK Z, here's the deal. I started getting the impression that you were walking us through the solution in the way that you thought it should be solved, leading...
February 18, 2014 at 11:36 pm
Jeff Moden (2/18/2014)
zulfansari (2/18/2014)
I'm sorry about the confusion, I guess I should take it step by step, first I need to add a total column as the last column...
February 18, 2014 at 9:37 pm
Not sure if this will work for your general case but it works for your sample data (I think):
WITH SampleData (PERSON, [DATE], [HOURS], PAYCODE, TOTAL) AS
(
SELECT...
February 18, 2014 at 9:22 pm
Sigh. Now your desired result doesn't contain the row that says Triple.
You'd probably be better off directly answering the questions I asked, rather than reiterating what you already posted.
February 18, 2014 at 8:57 pm
kwoznica (2/18/2014)
Also I checked the real table definition and...
February 18, 2014 at 8:55 pm
zulfansari (2/18/2014)
From the sample data I need to check if the Double Paycode has reached 9 hours, once it has, I use that date as the effective date with...
February 18, 2014 at 8:25 pm
Jeff Moden (2/18/2014)
tonyabrhm (2/18/2014)
I am trying to create a query which shows data from the past 1, 2, 3 4 and 5 years in seperate columns. I beleive I have...
February 18, 2014 at 7:27 pm
Viewing 15 posts - 751 through 765 (of 3,957 total)