Viewing 13 posts - 1 through 13 (of 13 total)
A similar thing was happeing to one of my sql server.
The reason was that the sproc was reading from a huge heap table (no primary key - clustered idnex) a...
June 6, 2011 at 1:18 am
da-zero (5/14/2010)
kastros.george (5/14/2010)
Why dont you use excel???
andrew.ingram
May 14, 2010 at 9:20 am
the problem seems to be absolute path on different machines....
when you have a package on BIDS on your machine and you reference a file like c:\somfile everything works ok...
When you...
May 14, 2010 at 7:16 am
one case that you cound encounter this error is when one server uses 64bit edition of sql server and the other x86....
May 14, 2010 at 7:11 am
May 14, 2010 at 7:08 am
http://msdn.microsoft.com/en-us/library/cc966418.aspx
Ms White paper that will get you started
May 14, 2010 at 7:05 am
delete from arch_table where case_month = @casE_month (non clustered index on Case_month)
That was the problematic statement... I cant see how sql can generate 2 execution plans that have such huge...
May 11, 2010 at 2:37 am
The rebuild would have updated stats, hence fixing the problem. An update stats would have worked too.
Option keepplan also fixed the problem...
May 11, 2010 at 2:15 am
Select * from sys.dm_db_index_physical_stats
will show you if the index is fragmented Not the Data Pages (with the exception of course of a clustered index), isn't that right ???
Index rebuild...
May 11, 2010 at 1:25 am
When sql server starts to execute the code it validates the script...
Validated NOT executes
so the steps are
1. validate exec statement -> ok, continue (DO NOT EXECUTE)
2. Validate insert statement ->...
May 11, 2010 at 1:14 am
You cannot add a column and insert a value on the same stored procedure...
When sql server starts to execute the code it validates the script... In your case he sees...
May 11, 2010 at 12:07 am
Grant Fritchey (5/10/2010)
kastros.george (5/10/2010)
option keepplan
or somthing like that
i think the problem is that sql server tries to generate an execution plan, aby trying to estimate row size and...
May 10, 2010 at 11:58 pm
use
option keepplan
or somthing like that
i think the problem is that sql server tries to generate an execution plan, aby trying to estimate row size and row count
Use perfmon...
May 10, 2010 at 12:48 pm
Viewing 13 posts - 1 through 13 (of 13 total)