Viewing 15 posts - 2,431 through 2,445 (of 3,011 total)
Robert Frasca (3/4/2008)
I don't understand this line. I've seen...
March 4, 2008 at 9:20 am
Is this thread supposed to be about something posted by Jeff Moden? What is the link to it?
March 3, 2008 at 11:36 am
I was just kidding about the correlated sub-query; I wouldn't use it.
I locked horns with Celko on this very issue about 12 years ago on the old Compuserve SQL Server...
February 29, 2008 at 2:27 pm
Of course, you could go old-school with a correlated sub-query. Celko would be so proud of me…
select
RowNumber =
(
select
Cnt = count(distinct b.VatCode)+1
from
Partner b
where
a.VatCode...
February 29, 2008 at 1:28 pm
Do queries like this as a selection against a range in this form:
where date >= @StartOfRange and date < @EndOf Range
In the following code, it will be the same as...
February 29, 2008 at 11:43 am
Get Server Database File Information
February 28, 2008 at 8:48 pm
tosscrosby (2/28/2008)
February 28, 2008 at 4:41 pm
I usually recommend running log backups much more often; every 15 minutes, 24x7, is a good place to start.
As long as you apply all the log backup files in the...
February 28, 2008 at 2:55 pm
Logs can be applied to a DB restored from any full backup.
You have to have all of the logs, so you have to apply more logs for the older full...
February 28, 2008 at 2:15 pm
Script to analyze table space usage
February 28, 2008 at 1:03 pm
Look to see if there a an HBA adapter installed and if it is active.
February 28, 2008 at 1:00 pm
Olja (2/28/2008)
February 28, 2008 at 12:53 pm
Use datatype SYSNAME.
February 26, 2008 at 9:44 pm
You can't do that with a restore.
A restore will create files that are exactly the same size as when the backup was run.
February 26, 2008 at 4:51 pm
Sean Grebey (2/26/2008)
Michael Valentine Jones (2/26/2008)
All that shows in the title is:Can somebody smarter than I am tell me why...
Oh, well if you look at it in the actual list...
February 26, 2008 at 3:22 pm
Viewing 15 posts - 2,431 through 2,445 (of 3,011 total)