Viewing 15 posts - 1,171 through 1,185 (of 1,518 total)
GilaMonster (5/20/2008)
Be aware that sysindexes is a compatibility view, is deprecated and will be dropped in future versions. Also,
Books Online
May 22, 2008 at 10:28 am
rbarryyoung (5/21/2008)
I believe that you have to make the login the Owner (or executor?) of the Assembly
I did not have to make it owner of the assembly. But perhaps, as...
May 22, 2008 at 7:42 am
Thomas SNyder (5/20/2008)I have used the following check, not feature rich but better than nothing. also it describes how the -g switch is used depending on you RAM, (very...
May 20, 2008 at 2:30 pm
GilaMonster (5/20/2008)
Somewhere...
May 20, 2008 at 1:22 pm
GilaMonster (5/20/2008)
Run it in the proc and as a query, and have a look at the execution plan of each, and the results of statistics IO....
May 20, 2008 at 12:29 pm
We changed the sproc like this at the top (everything else left the same) and the problem disappeared! So it does look like parameter sniffing!
Why is the performance difference...
May 20, 2008 at 12:10 pm
Sounds good, I will use the "OBJECTPROPERTY(id,'IsUserTable') = 1" filter in my query.
Thanks for the recommendations!
May 20, 2008 at 12:07 pm
Here you go: 🙂
CREATE PROC [dbo].[ssp_elect_NewImportSummary]
@ImportIDint
AS
SET NOCOUNT ON
SELECT
DISTINCT ( CI.ImportID )
,CI.NumRecordsInFile AS TotalNumberOfRecordsInADJFile
,CI.ImportFile
, CI.ImportDate
, CI.PayrollDate
,COALESCE ( StatusCount.TotalContractsInBatStatus, 0 ) AS TotalContractsInBatStatus
,COALESCE ( StatusCount.TotalContractsInVerStatus, 0 ) AS...
May 20, 2008 at 12:05 pm
jeff.williams3188 (5/20/2008)
UPDATE STATISTICS WITH RESAMPLE updates all the statistics on a table at the current sampling rate. This means that statistics tied to indexes, which are...
May 20, 2008 at 10:38 am
GilaMonster (5/19/2008)
In SQL 2005 the system tables are 'hidden'. You cannot query them or affect them in any way. The SQL parser acts as though they aren't there.
Thank you for...
May 20, 2008 at 8:02 am
Jeff Moden (5/19/2008)
Heh... that's a lot of stuff to remember... especially about how to use heap memory so garbage collection will automatically clear it (failure to do so will make...
May 20, 2008 at 7:54 am
Wilfred van Dijk (5/17/2008)
However, it's possible to create a modified sp_updatestats (with the fullscan option). The sourcecode for...
May 17, 2008 at 7:39 am
Wilfred van Dijk (5/17/2008)
May 17, 2008 at 6:42 am
I didn't have this problem in SQL 2000.
May 17, 2008 at 5:14 am
Viewing 15 posts - 1,171 through 1,185 (of 1,518 total)