Viewing 14 posts - 1 through 14 (of 14 total)
The world needs more out of tune guitars. They are going the way of the Dodo.
January 18, 2006 at 7:23 am
I have the same problem when printing diagrams, but only for my Brother laser printer at home. At work (Xerox laser) it is fine. I will try the margins solution,...
October 12, 2004 at 8:01 am
It just occurred to me there is an argument for upper case keywords giving better performance. Perhaps the query parser takes note of the queries that are "shouting" and puts...
September 1, 2004 at 9:23 am
Another vote for no caps (this needs a poll). I am a stickler for proper indentation, which in my opinion matters far more than keywords. When code is indented well,...
August 31, 2004 at 6:19 am
Sorry, a bit late here.
My guess is that this query is telling you how many post_2s exist for each name's latest address.
August 28, 2004 at 7:16 am
Yup, everything I need is in there. I should have re-read the books...thanks!
July 27, 2004 at 5:51 am
The issue is that SQL Server can use indexed views even when they are not referenced explicitly. I am not certain of the exact conditions under which this occurs.
July 26, 2004 at 5:22 pm
An example I can give is that I turned a 27 hour legacy stored procedure (Oracle, running on some pretty big hardware) into a 5 second stored procedure, by switching...
April 7, 2004 at 6:11 am
I use a cluster brush. The authoritative text on these is available here:
April 2, 2004 at 6:24 am
Actually you can do plenty of development with the free download Embedded Visual Tools from Microsoft. There are lots of tutorials on DevBuzz.
April 2, 2004 at 6:20 am
Try this:
select t2.id, t2.resourceid, t2.date, t2.quantity
from
(
select resourceid, max(date)
from YourTable
where date < cast(floor(cast(GetDate as float)) as datetime)
group by resourceid
) t1
inner join YourTable t2 on (t1.resourceid = t2.resourceid and t1.Date =...
February 22, 2004 at 7:20 pm
Viewing 14 posts - 1 through 14 (of 14 total)