Viewing 15 posts - 541 through 555 (of 921 total)
quote:
1. A temp table matching your spec is created, with a number from 1 to 25, and a question.2. I...
November 5, 2003 at 5:48 am
quote:
Thanks Jonathan.Does that mean that the backup, when restored (with recovery), is a snapshot in time at the instant the backup job...
November 3, 2003 at 3:52 pm
This changed between versions 6 and 7. The method was changed to a "fuzzy" backup where there is no "snapshot" synchonization but instead extents are backed up serially and...
November 3, 2003 at 3:18 pm
quote:
I think you can't.
I know you can't.
--Jonathan
November 3, 2003 at 2:04 pm
Use TOP 1 with your query as a derived table:
SELECT TOP 1 MaxStep, CaseNum, StepEndDt
FROM
(SELECT max(StepNum) AS MaxStep, CaseNum, StepEndDt
FROM Loan_Step
WHERE CaseNum = '200668'
...
November 3, 2003 at 8:10 am
quote:
After saying or supporting all of this, how can you now say that SQL Server would be doing the grouping and aggregation?...
November 3, 2003 at 6:47 am
quote:
While Schiller is certainly a class of its own, Dilbert is more intuitive to the majority of people.
October 31, 2003 at 4:27 pm
quote:
"Against stupidity the gods themselves struggle in vain."An indeed true sentence from one of the greatest germans ever...
October 31, 2003 at 3:04 pm
quote:
Looking beyond this example and considering a typical crosstab query...Are you saying that the grouping and aggregation done in a typical crosstab...
October 31, 2003 at 2:54 pm
quote:
I agree, it's amazing how often this question or something very similar is asked. And more and more I come to the...
October 31, 2003 at 2:06 pm
October 31, 2003 at 11:51 am
quote:
Now, is there a way to roll back to 6:15PM when I first applied the transaction log with a STOPAT of 6:19PM?
October 31, 2003 at 11:48 am
It is still supported . However (from the SQL Server 20000 BOL):
quote:
Any statements using the Transact-SQL outer joins should be changed...
October 31, 2003 at 8:27 am
Removing and then reinstalling SQL Server is the supported method. I'd hack the registry.
--Jonathan
October 31, 2003 at 6:13 am
quote:
Sorry that I'm coming into this a little late, but why don't you store the dates in UTC format. Then create a...
October 31, 2003 at 5:26 am
Viewing 15 posts - 541 through 555 (of 921 total)