Viewing 15 posts - 38,386 through 38,400 (of 49,571 total)
Randolph Potter (6/17/2009)
June 17, 2009 at 1:55 pm
Florian Reischl (6/17/2009)
Erm... Just played with this nullbuster. This might be an important information for you:
This feature works find on SSE2k5 but it does not work anymore on SSE2k8 for...
June 17, 2009 at 1:53 pm
If it's OLTP I'd consider dropping the MAXDOP to 4 or even 2. Combine that with optimising the worst offending queries, and you may get this under control fairly well.
June 17, 2009 at 1:50 pm
digitalox (6/17/2009)
Is it the format of #xxxxxx that implies that is a table variable vs. temp table?
Yes. Temp tables have a name in TempDB that includes the name given...
June 17, 2009 at 10:29 am
CXPacket wait is a CPU-related wait, not an IO-related wait. It's from queries processing in parallel. There's a number of things that can cause that, from poor statistics (SQL makes...
June 17, 2009 at 10:14 am
That's a table variable and, other than unique constraints, it can't be indexed.
June 17, 2009 at 9:30 am
The other immediate problem is this
if update(FA_codefamille)
begin
update F_article
set AR_Prixach=@dl_montant
end
That will update the entire table with the value in @dl_montant because there's no where clause on the update.
I think you're going...
June 17, 2009 at 9:10 am
Chris (6/17/2009)
June 17, 2009 at 8:56 am
The first problem with this trigger is that it's assuming there's only one row in the inserted table. If more than one row is affected by an insert/update, the trigger...
June 17, 2009 at 8:54 am
Read uncommitted only affects reads, that is selects. Data changes will always lock. Also, be aware of what read uncommitted actually is. See - http://sqlblog.com/blogs/andrew_kelly/archive/2009/04/10/how-dirty-are-your-reads.aspx
I would suggest having a look...
June 17, 2009 at 7:48 am
Please post table definitions, sample data and desired output. Read this to see the best way to post this to get quick responses.
http://www.sqlservercentral.com/articles/Best+Practices/61537/
June 17, 2009 at 7:43 am
sagi (6/16/2009)
plz send code very urgent thn'ssssssss
Show us what you have so far. I'm happy to help, but not to do the entire job for you.
June 17, 2009 at 7:43 am
A CXPacket wait is due to a parallel skew. SQL has decided it will parallel one or more operators in a query and one of the threads finishes before the...
June 17, 2009 at 7:40 am
Have you looked at SQLCMD? It's the replacement for osql which itself was the replacement for isql.
June 17, 2009 at 7:35 am
SAT_SQL (6/17/2009)
that trace is running for , for suppose i am having one procedure name...
June 17, 2009 at 7:31 am
Viewing 15 posts - 38,386 through 38,400 (of 49,571 total)