Viewing 15 posts - 5,236 through 5,250 (of 8,416 total)
Is there a SET XACT_ABORT command in the procedure?
March 17, 2010 at 4:21 am
The phenomenon is known as parameter sniffing.
See http://msdn.microsoft.com/en-us/library/cc966425.aspx#XSLTsection133121120120 for a full explanation, and workarounds.
March 17, 2010 at 4:17 am
SELECT Table2.PId,
Table2.SSN,
Table2.Name
FROM Table2 T2
WHERE NOT...
March 17, 2010 at 4:11 am
peleg k (3/17/2010)
SELECT StartDate,R1,SUM(Total),ROW_NUMBER() OVER(ORDER BY StartDate ) AS 'id'
FROM [MonthlySummary] (NOLOCK)
Group by [StartDate],R1
Order by StartDate,R1
is there a way...
March 17, 2010 at 4:07 am
Mr J (3/17/2010)
March 17, 2010 at 4:05 am
Mr J (3/17/2010)
Can't say i'm familiar with sys.dm_exec_query_text, sorry... little help?? 🙂 Also the replication is fine runs smoothly without any issues.
Sorry, typo. Meant sys.dm_exec_sql_text:
SELECT S.session_id AS [SESSION...
March 17, 2010 at 3:49 am
Setup:
--meters
DECLARE @Meters
TABLE (
ParentId INTEGER,
MeterId INTEGER,
...
March 17, 2010 at 3:41 am
Nawar.Tabaa (3/17/2010)
Confirmed. Thanks
Confirmed...but is it working now? If not, these are the steps I followed on 2008, XP SP3:
Enable filestream from SSMS (right-click server in object explorer, properties,...
March 17, 2010 at 3:00 am
So, if you apply to sys.dm_exec_sql_text, does that give you any more clues?
You should be able to see if it is related to initialization or ongoing replication operations.
How is replication...
March 17, 2010 at 2:53 am
Remote server calls from a trigger should be avoided at all costs. The trigger runs inside an implicit transaction, which has to escalate to a distributed transaction if it...
March 17, 2010 at 2:46 am
Gianluca Sartori (3/17/2010)
Tempdb (unlimited growth) went up to 130 Gb...
March 17, 2010 at 2:38 am
It is supported, but that does not mean you will not come across any issues 😉
SQL Server 2005 does not have to be a default instance BTW.
March 17, 2010 at 2:34 am
What sort of replication do you have on the server?
What makes you think the space in tempdb is used by replication?
Information on using the dynamic management views to identify big...
March 17, 2010 at 2:29 am
Sandhya-371593 (3/16/2010)
Is there any way I could get the information like when the reindexing and update statistics was done on a particular database?
Sandhya,
Statistics are always created and updated with an...
March 17, 2010 at 2:24 am
Willem Tilstra-440027 (3/16/2010)
I'm running an SSIS package that consumes 35+ million rows and one of the tasks in the package is a SQL Task that uses a Group By.
Have you...
March 17, 2010 at 2:12 am
Viewing 15 posts - 5,236 through 5,250 (of 8,416 total)