Viewing 15 posts - 1,516 through 1,530 (of 1,995 total)
rather than looking at recompiles and statistics, how about looking at your joins themselves.
would it be possible to have 2 versions of the proc - each with distinct join...
May 9, 2007 at 2:47 am
you can also try using SET FMTONLY on/off
will execute the query, but not affect any rows or return rows (only metadata)
this would show up errors better than parseonly for missig...
April 12, 2007 at 5:55 am
as long as it's fast and useable i don't care (or want) fancy flash animations, button rollovers etc. I want to find and post data fast.
on another front how about...
February 26, 2007 at 8:05 am
the error indicates that it's attempting to use mm/dd/yyyy date format - possibly due to your login set to English rather than british, or dateformat settings
try
where Date >= '06/13/2006'...
January 20, 2007 at 5:10 am
as i said in my post - it's bad practice - we wouldn't do it, but the forums are here to help not to preach about what developers SHOULD be...
January 3, 2007 at 3:27 am
if @@servername returns different to serverproperty('machinename') then it's possible your server has been renamed??? - that MIGHT acount for the .\accountname not working correctly ????
you can rename your sql instance...
January 2, 2007 at 6:23 am
the script located here
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1541
would give you a good starting point
it was designed to move indexes from one filegroup to another, but it could easily be modified to create a file...
December 30, 2006 at 9:02 am
i would suspect something shutting the service down - look for a sheduled job in sql agent or windows sheduled tasks that does something along the lines of
xp_cmdshell 'net...
December 30, 2006 at 8:56 am
this really depends on how big your tables are.
if you only have small tables then there won't be any impact of auto stats, but for alrge tables (say for...
December 30, 2006 at 3:10 am
Steve,
have you tried scripting out "Enterprise mangler" code? great for small tables, but it has a tendency to be backwards compatable and Drop the table and recreate it....
December 30, 2006 at 2:29 am
the ordinal position CAN matter. Not everyone writes good SQL or applications and you can often fid yourself with "Select *" or "insert into x select *" in which case...
December 30, 2006 at 2:27 am
using convert(real,0.10) will give you the correct answer, but only because the precision is lower. - you may still get the same problem...
you might try creating this as an inline...
December 26, 2006 at 4:58 am
select convert(float,rate)
however float is an approximation, so beware the type conversion - you may find some = operations do not return the results you would expect.
you should also be aware...
December 26, 2006 at 4:15 am
Viewing 15 posts - 1,516 through 1,530 (of 1,995 total)