Viewing 15 posts - 196 through 210 (of 581 total)
the single precise purpose of isnumeric when used on strings is to determine whether the string conforms to TSQL rules for specifying numeric literals. That is not the same as consisting...
June 26, 2006 at 8:56 am
that will only work once a year, at the end of june, won't it?
June 25, 2006 at 4:34 pm
you would also need to remove the trailing comma from the string if you use the above approach.
June 23, 2006 at 4:01 am
If your circumstances permit, you should separate the "product line name", as I will call it:
substring
(prodid,1,len(prodid)-(sign(
June 23, 2006 at 2:51 am
is that using indexed calc columns?
June 22, 2006 at 2:29 pm
Have you used a text-comparison tool like textpad to check for differences in the detail of the execution plans?
June 22, 2006 at 12:44 pm
Use the SQL Server-specific counters. Perfmon is mostly meant for broad-brush analysis of performance as a whole. If you can get exclusive access to SQL Server on both servers while...
June 22, 2006 at 12:42 pm
You'll need to post code to get more specific suggestions.
June 22, 2006 at 12:12 pm
Try looking at perfmon counters on the servers (if you can get a quiet time to do it on the prod server) to check which resource is affected.
Other than that,...
June 22, 2006 at 11:41 am
--equivalently,
select distinct top 10 so.*
from sysobjects so
inner join [dbo].[Test_table] t
on so.name = t.fileformat
June 22, 2006 at 10:56 am
Don't forget you will need to change the processes which populate the column. You should also enforce any check constraints you can ( eg not like '% %'). A temporary...
June 22, 2006 at 10:42 am
Bold assertion: left anti-join never performs worse than the equivalent NOT EXISTS...
June 22, 2006 at 10:36 am
Are you by any chance Paul Anderson of Pembroke, Birmingham and various locations along the Charing Cross Road?
June 22, 2006 at 8:58 am
Actually, a correction. The IN() function will accept a list of variable names separated by commas. In fact that's why you got the error you did. SQL parsed and compiled the...
June 22, 2006 at 8:41 am
Viewing 15 posts - 196 through 210 (of 581 total)