Viewing 15 posts - 48,931 through 48,945 (of 49,571 total)
One other thing, that I forgot earlier.
If you shrink a data file, SQL puts pages anywhere that there's space. A database shrink can completely undo a reindex.
Your order should be...
December 11, 2006 at 6:05 am
I can answer a couple of those:
I have read best-practice for when not to use GUID such as for a PK. Does having GUID PK create wacky indexing due to...
December 11, 2006 at 1:35 am
With that number of rows that you want to delete and the few that you need to keep, I'd suggest that you copy the rows you do want to keep...
December 7, 2006 at 1:32 am
The exam skill set is listed on the following page.
http://www.microsoft.com/learning/exams/70-431.asp
Before you ask for, or use brain dumps, etc, you should be aware that these are illegal.
Anyone who gives you...
December 7, 2006 at 1:18 am
Odd. I've got a very similar setup (Itanium 2005 connecting to x86 SQL 200) with no problems.
Are you a premier customer with MS? If so, it might be worth contacting...
December 6, 2006 at 11:08 pm
ODBC? Since you say the DSN worked. Not ideal, I know, but as a work around....
December 6, 2006 at 1:49 am
Try using the SQL OLE DB driver, instead of the SQL Native Access Client driver. I don't know how well the native client works to SQL 2000.
Nice to see another...
December 6, 2006 at 1:32 am
If all else fails, contact Microsoft PSS. They'll be able to read the stack dume and (hopefully) find the cause and a solution.
December 6, 2006 at 1:16 am
In 2005 it's better to use the dm views sys.dm_exec_sessions and sys.dm_exec_requests than sysprocesses. They're a lot better documented for starts
December 5, 2006 at 10:47 pm
Thanks for the suggestion, yes, whenever I checked the queryplan from the QA, the remote query always showed 100% cost.
That's normal. Remote queries are intensive. what I meant by bad...
December 5, 2006 at 5:15 am
Possibly multiple calls to the remote data source, depending on the evecution plan.
No cardinality estimates available for the query optimiser, hence a large possibility of a bad plan.
There are probably...
December 5, 2006 at 4:08 am
Only way to do that is to create a new table, copy the data over, drop the old table, rename the new. Then make sure that you replace the constraints...
December 5, 2006 at 3:07 am
As Robert said, truncate is logged. It's known as a minimally logged transaction (or at least that's the term I've heard). If it wasn't logged then you wouldn't be able...
December 3, 2006 at 11:10 pm
That works, the problem with it is that it prevents any index usage, if you have an index on f1 or f2.
Reason been it's seen as a function on a...
December 3, 2006 at 10:57 pm
What specifically are you thinking of when you say 'non-logged transactions'?
As far as I know, in full recovery mode, all transactions are logged, and datbase mirroring only works in full...
November 29, 2006 at 11:23 pm
Viewing 15 posts - 48,931 through 48,945 (of 49,571 total)