Viewing 15 posts - 1 through 15 (of 424 total)
Thanks for the feedback.
The dba referenced the cited MSDN blog and correctly points out that ALTER INDEX ALL REBUILD does not update column stats. My counterpoint is...
June 25, 2015 at 9:28 am
If you anticipate high volume row operations on the table (e.g.: modifying or adding 1,000s of rows in one statement), then a trigger is better.
Check constraints are fired...
October 8, 2012 at 1:37 pm
quickdraw (3/1/2011)
@ Antonio,Just so I can file this away in my brain for later:
What is your max sustained throughput (total users and max queries per minute)? How many CPUs?
Thanks.
trying...
March 9, 2011 at 1:31 pm
quickdraw (2/28/2011)
...
Full text search was...
March 1, 2011 at 2:21 pm
Querying for an attribute that is not available in the document will indeed make value() return NULL, just like when an element is not specified. However, not specifying the attribute...
October 26, 2010 at 6:12 pm
ab.sqlservercentral (8/18/2010)
those pagefile discussion drives me crazy. First, most of the posts are off-topic. The discussion is about MEMORY DUMPS, not about paging file calculation. Second, most people don't...
August 23, 2010 at 7:28 pm
this is probably the best write-up of table variables i've seen and one of the best articles on SSC. kudos.
:w00t:
June 10, 2009 at 7:40 pm
P.S.: if you've got hundreds of thousands of entries and the table is growing regularly, then an explicit colum to store the derived value should be added to the table...
May 31, 2009 at 5:28 pm
We've had this debate before and the delimiting function's performance can practically always be improved by a hand-written piece of SQL. But the delimiting function's flexibility and simplicity makes...
May 31, 2009 at 3:30 pm
NathanB (5/29/2009)
"FFX Buy...
May 30, 2009 at 6:44 pm
suggestion:
alter function dbo.fParameterMatrix(
@parm1 varchar(64), @parm2 varchar(64), @parm3 varchar(64), @parm4 varchar(64)
)
returns @matrix table
(
firstName varchar(64),
lastName varchar(64),
accountNumber varchar(64),
otherField varchar(64),
numFields as isnull(sign(len(lastName)),0)+
isnull(sign(len(firstName)),0)+
isnull(sign(len(accountNumber)),0)+
isnull(sign(len(otherField)),0),
duplicateFields as case when lastName in (firstName,accountNumber,otherField)
or firstName in (accountNumber,otherField)
or accountNumber...
May 29, 2009 at 6:28 pm
Tara (5/27/2009)
I have 3 parameters for my store proc and i would like an IF or CASE statements to...
May 28, 2009 at 7:04 am
what is your desired result? you're grouping by
OP.Specialty_Code,OP_Procedure_Tariff.Tariff
but also seem to want to sum and/or max of .Tariff. if so, .Tarriff shouldn't be...
May 28, 2009 at 6:57 am
eseosaoregie (2/17/2009)
SELECT ...
February 17, 2009 at 7:53 am
aaa (2/17/2009)
The point that I need to make clear is that this table will contain object information for each day, (sometimes more than...
February 17, 2009 at 7:45 am
Viewing 15 posts - 1 through 15 (of 424 total)