Viewing 15 posts - 3,511 through 3,525 (of 5,394 total)
Could be a lot of things. Parameter sniffing? Statistics out of date?
Have you tried profiling the procedure at statement level, including the actual execution plan?
January 26, 2011 at 3:20 am
I think this thread is about the same thing:
Hope this helps,
Gianluca
January 26, 2011 at 1:35 am
I don't think it makes any difference on the performance side, so I would pick a single trigger.
I think it's up to personal preference.
January 26, 2011 at 1:27 am
Dave Ballantyne (1/25/2011)
Any volunteers to read through a draft of an article for me ?Thanks....
If you think my contribution could help, send it my way.
January 26, 2011 at 1:10 am
How fast, Mr. Coffe!
This is an alternative syntax:
;WITH Formats AS (
SELECT FORMAT_NAME
FROM STATUS_MASTERS
GROUP BY FORMAT_NAME
)
SELECT FORMAT_NAME +
...
January 25, 2011 at 2:12 am
Grant Fritchey (1/24/2011)
Threadizens not on Twitter might not have heard the word. I just took a job with Red Gate. It's up on the blog.
Congrats, Grant! I'm sure you'll be...
January 24, 2011 at 9:24 am
ALZDBA (1/15/2011)
What's your MSDTC security configuration.I think you db2 as400 uses xa transactions.
Did you enable XA transactions with MSDTC ?
Yes, I enabled XA transactions and everything else.
What puzzles me is...
January 18, 2011 at 9:26 am
Koen (da-zero) (1/14/2011)
GSquared (1/14/2011)
Jeff Moden (1/13/2011)
Stefan Krzywicki (1/13/2011)
If they see a penny on the ground, they leave it there.
Maybe other folks will leave it, but I'll stop and pick it...
January 14, 2011 at 8:00 am
GSquared (1/14/2011)
January 14, 2011 at 7:55 am
OCTom (1/14/2011)
MTS (Microsoft Transaction Server)
System i Access ODBC
IBMDASQL OLE
IBM DB2 .NET
Do you have access to the IBM drivers? I...
January 14, 2011 at 7:51 am
Thank you Roy and Greg.
Unfortunately this does not solve my issue. Basically, that thread says "don't use distributed transactions", but this is exactly what I'm trying to do.
Please note that...
January 14, 2011 at 7:19 am
Thank you for responding, Roy.
Here's my test code:
SET XACT_ABORT ON
BEGIN DISTRIBUTED TRANSACTION
--Do some stuff locally
CREATE TABLE #Test(i int, h char(1))
INSERT INTO #Test VALUES (1, '1')
--Do some stuff remotely
UPDATE
OPENQUERY(LINKEDSERVERNAME, 'SELECT...
January 14, 2011 at 7:01 am
Roy Ernest (1/14/2011)
Jeff Moden (1/13/2011)
Roy Ernest (1/13/2011)
January 14, 2011 at 6:37 am
PaulB-TheOneAndOnly (1/12/2011)
Gianluca Sartori (1/10/2011)
Lynn Pettis (1/8/2011)
I am enjoying the opportunity to learn Oracle, but the more I work with it the more I'd like to come back to SQL Server.
Agreed....
January 13, 2011 at 1:43 am
Makes me think of our Oracle Service Requests...
After two months of uploading traces I still can't get my problem understood correctly.
What would happen if they lost my data? Would it...
January 12, 2011 at 6:37 am
Viewing 15 posts - 3,511 through 3,525 (of 5,394 total)