Viewing 9 posts - 1 through 9 (of 9 total)
The line:
MIN(row_count) AS Rows,
Returns incorrect results for partitioned tables.
It shoudl read:
SUM(row_count) as Rows,
to correctly sum the rowcount across all partitions.
As for the exclusion of XML data, does the subquery (LOBDATA)...
May 8, 2012 at 8:26 am
If you don't want usernames and passwords, you can always use certificate based authentication.... Of course then, the issue with the key on the server changing becomes that much...
May 19, 2010 at 1:00 pm
Prakash.Bhojegowda (2/13/2008)
Would you mind taking a look at another question that I have?
I have a Network Load Balanced Web Farm ( 2 Nodes configured as Active - Active) with...
May 22, 2008 at 4:36 pm
From SQL BOL (index value "joins-SQL Server, null values")
Null Values and Joins
When there are null values in the columns of the tables being joined, the null values do not match...
June 1, 2004 at 4:39 pm
Are the 3 machines that are failing on the same network as the machine from which you are starting the full text indexing?
We have a situation where Production is a...
May 21, 2004 at 8:56 am
Good point about disk quota's. Can you backup the failing database using TSQL to the same directory? If not, I would suspect the disk system (quotas, free space, etc). If...
May 21, 2004 at 8:50 am
You can always use the brackets, but if there is not a special character, you won't need it. The name of the server is the name of the linked...
October 24, 2003 at 11:08 am
Great article and some great tips in the comments, but we have one issue that I would like to see if anyone has any answer to....
We use Term Serv to...
October 15, 2003 at 9:14 am
Another method would be to use a combination of the RAND() and NEWID() functions with the Checksum function. You could use the following function to seed the rand function...
March 24, 2003 at 8:19 am
Viewing 9 posts - 1 through 9 (of 9 total)