Viewing 15 posts - 541 through 555 (of 700 total)
Ensure that MSDTC is properly configured as part of the cluster, right alongside MSSQL and SQLAgent. It is necessary for distributed transactions.
-Eddie
August 29, 2006 at 10:06 pm
Have you tried using an INSTEAD OF trigger instead of (the default) AFTER trigger?
An INSTEAD OF trigger actually replaces the normal INSERT behavior, and it's up to you to...
August 27, 2006 at 11:21 pm
Ditch COMPUTE, and use either CUBE or ROLLUP.
The reason it doesn't work outside of QA is that your results are not a single resultset. Each time a compute result is...
August 17, 2006 at 4:14 pm
Many MDI applications use Ctrl+Tab to switch windows.
Having never heard of your example as a 'standard', I fired up Word and Notepad to see what they did. In both, Ctrl+Tab...
August 16, 2006 at 11:30 pm
If you have the memory available, SQL Server defaults to row-level locks. If you are locking a significant number of rows on a page, it will escalate the lock into...
August 15, 2006 at 12:06 am
The Refresh method simply reloads the list of tables into your DMO tables collection from the server. It has no effect on the server or any object on it.
To see...
August 15, 2006 at 12:01 am
DBAhawk: If you pick up the MCDBA, you'll be able to take an upgrade exam for MCITP: DBA (70-447) instead of the DBA tests (70-443, 70-444), and you will have...
August 14, 2006 at 11:52 pm
What are your current strengths? Are you a developer or a systems admin? ...or not sure which of those two you'd prefer to pursue?
If you aren't now already proficient in...
August 14, 2006 at 11:44 pm
"Scalable" to 50M records? We're jamming 200M records every day into a couple SQL Server 2000 databases at my company.
Here's the simple math: If a company cannot afford a...
August 14, 2006 at 11:38 pm
Just like VB6: set a reference to the SQL-DMO COM library. COM-Interop will take care of the plumbing. You may even be able to upgrade much of your VB6 project...
August 3, 2006 at 10:13 am
Try joining Inc_History just once without the condition, and use a CASE statement to separate the two types of values to sum:
To get the Incident_Bill time:
CASE...
August 3, 2006 at 9:56 am
I've tried something similar in the past. I don't recall my full experience, but I've got some ideas. I think the key was using linkedserver.master.dbo.sp_executesql, and including a...
August 1, 2006 at 3:05 pm
Jules,
Common Table Expressions (CTEs) are new to SQL Server 2005, this might be a more lively thread over in one of the 2005 forums.
From BOL:"A CTE is...
August 1, 2006 at 2:58 pm
You forgot the Cell_Phone column in the temp table, between Office_Phone and Total_Contribute.
-Eddie
August 1, 2006 at 2:39 pm
IDENTITY_INSERT, as Sergiv pointed out, is quite useful, but only when you wish to disable the IDENTITY column temporarily. Only one table may have IDENTITY_INSERT set to ON for a...
July 30, 2006 at 10:42 pm
Viewing 15 posts - 541 through 555 (of 700 total)