Viewing 15 posts - 136 through 150 (of 388 total)
What is the Avg Queue length on the log disk?
Regards
Piotr
October 5, 2009 at 9:30 am
I'd try to create server level DDL trigger and hook it up to ALTER DATABASE event. Then depending on the EVENTDATA and login executing the statement you might decide to...
October 2, 2009 at 6:49 am
I think I came across something alike in the past. It turned out that after GO, newline was encoded 'unix style' with one character only (0x0A) instead of the sequence...
October 1, 2009 at 1:47 am
It may be probably worth to mention that having the right table conditions in the WHERE clause made the left join effectively an INNER join, because the conditions filtered out...
September 29, 2009 at 4:52 pm
SSIS Ole DB Destination also has checkbox to keep identity values from the source. In general, this component has all features available in bcp.
Regards
Piotr
September 29, 2009 at 4:36 pm
Wow, that's a good one Andrew :blink:
Andy, have you tried to run the query with exactly same data for join on the SQL 2000 locally? Would it pick the index?...
September 29, 2009 at 4:23 pm
Is there a possibility that an index on one of the tables was dropped?
Can you post the execution plan of the view?
Regards
Piotr
September 27, 2009 at 5:41 pm
It is REMOTE join hint:
From BOL:
REMOTE
Specifies that the join operation is performed on the site of the right table. This is useful when the left table is a local...
September 26, 2009 at 5:39 pm
Hi, I found my login has appended number. Tried to strip it off in profile editor, but it says that "Piotr Rodak" cannot be used because it's taken. So now...
September 26, 2009 at 5:31 am
I mean, from the design point of view: you have the same set of parameters and the same set of return values unless an exception occurs. If you have a...
September 25, 2009 at 7:35 pm
Maybe the amount of data eventually changed the execution plan and you are getting table scans? Did you check fragmentation of indexes on the tables in the view? Maybe you...
September 25, 2009 at 7:22 pm
I think you may come across various sorts of performance issues if you have more data. Sometimes it is better to create a dynamic SQL, fit it with parameters and...
September 25, 2009 at 7:12 pm
Hi,
I think that you may need to think about the issue again. If you 'do nothing' in one case and return a rowset in the second, it means that your...
September 25, 2009 at 7:06 pm
Ok, there was an old issue in SQL 2000 with undetected deadlocks, and though it was fixed, I saw 'hanging' (CXPacket locks) SELECT.. INTO query not longer than 2 weeks...
June 19, 2009 at 4:39 pm
Would you mind showing the CREATE INDEX statement? As Gail says in this thread, CXPacket waits may stem from lagging parallel operations. Have you tried to set MAXDOP to lower...
June 19, 2009 at 3:39 pm
Viewing 15 posts - 136 through 150 (of 388 total)