Viewing 15 posts - 6,031 through 6,045 (of 18,926 total)
You can use expressions in the browse to or drill down functions.
Go in the options of a textbox, then action...
let us know if you need further...
May 17, 2011 at 8:42 am
Ya, I just realized that I'm picking only in the same month... sorry about that.
Thanks Michael.
May 17, 2011 at 8:41 am
I understand that. I guess I just misunderstood part of the requirement.
So you're all set?
May 17, 2011 at 8:27 am
Here you go. But I'm not sure this is what you want to do. You were talking about groups and I see nothing about that in the query.
DECLARE...
May 17, 2011 at 8:15 am
It just came to me that I can actually hand you the data over. It's not like it's proprietary or anything. :hehe:
You'll just have to edit the holiday names...
May 17, 2011 at 8:13 am
Just for the sake that you may use this join often in your report(s). You might want to add this index to speed up the self join.
CREATE NONCLUSTERED INDEX...
May 17, 2011 at 8:03 am
Here's the query. I'll post my Calendar definition too but I lost the script that loaded it.
SET DATEFORMAT YMD
DECLARE @test_dt DATETIME
SET @test_dt = DATEADD(D, 0, DATEDIFF(D, 0, GETDATE())) ...
May 17, 2011 at 7:57 am
Grant Fritchey (5/17/2011)
Ninja's_RGR'us (5/17/2011)
Here's another option...
Excellent! I didn't want to bring it up, but this is a perfect solution, and one that uses very few disk resources to give you...
May 17, 2011 at 7:41 am
Do you have a calendar table?
May 17, 2011 at 7:34 am
Eric M Russell (5/17/2011)
Welsh Corgi (5/15/2011)
I'm sorry. I will not post again to this forum. Best regards to everyone.
There is only a 53 point spread between "Say Hey Kid" and...
May 17, 2011 at 7:01 am
When you disable a constraint like a FK or check, the server marks it as untrusted because there can be some bad data in there.
If you reenable it with NOCHECK,...
May 17, 2011 at 7:00 am
Ninja's_RGR'us (5/17/2011)
The only other option I was considering was an untrusted constraint that previously had the...
May 17, 2011 at 6:55 am
It's one of the errors in ss that leaves very little room for interpretation :hehe:.
The only other option I was considering was an untrusted constraint that previously had the error...
May 17, 2011 at 6:46 am
that can still be done in t-sql.
Put the results into #temp table.
Then delete where grouping in (SELECT Group from #tmp group by Group HAVING SUM(transaction) > 0)
The filter is still...
May 17, 2011 at 6:45 am
Viewing 15 posts - 6,031 through 6,045 (of 18,926 total)