Viewing 8 posts - 1 through 8 (of 8 total)
With respect to your question about how well a 2 billion row table will perform, the answer is "great" unless you do a poor job of designing the database and...
June 11, 2008 at 10:32 am
A common error in estimating something (the required size of a database, new product sales, world population, etc.) is to take a series of worst-case or best-case values and then...
June 10, 2008 at 9:13 am
As a database designer/developer one of the most difficult things to do is to differentiate between what the customer/manager SAYS you need to do and what the product/business REALLY needs...
June 10, 2008 at 7:53 am
I find it interesting how many different ways we can find to solve a problem using T-SQL. Here is another way to strip-off the time and just return the...
May 21, 2008 at 12:10 pm
I believe your UPSERT analysis is interesting, but too simplistic for 2 major reasons:
1. the effect of locks (UPDATE uses a more restrictive lock than IF EXISTS)
...
January 29, 2008 at 9:18 am
When you say you ran it manually does that mean you ran it manually from your box or you ran it manually from the SQL Server box? I strongly suspect...
December 14, 2005 at 6:47 am
Try this:
SELECT RIC,COUNT(*) as myCount,
SUM(CASE WHEN compliant75pctRule = 'T' THEN 1 ELSE 0 END) AS [Compliant],
SUM(CASE WHEN compliant75pctRule IN ('T', 'F') THEN...
December 8, 2005 at 7:09 am
After you build your @SQL string you try to execute it by saying:
exec @SQL
but you need to enclose the @SQL variable in parentheses like you do when you create the...
December 7, 2005 at 6:22 am
Viewing 8 posts - 1 through 8 (of 8 total)