Viewing 15 posts - 12,016 through 12,030 (of 22,214 total)
The choice of which one comes first does matter. If you were to have a composite with the leading edge of FamilyId and a single index with the leading edge...
August 21, 2011 at 4:44 am
Just a guess, any chance that the database is in compatibility mode? I'm not sure that would affect anything, but that's odd behavior.
August 20, 2011 at 1:35 pm
I agree with the Ninja, killing the process is a bandaid at best. You need to address the issue and fix that set of procs so that they're not stepping...
August 20, 2011 at 1:34 pm
Another thing to take a look at are some of the new data types, especially the CLR types, and some of the new options with indexes. Those things made a...
August 20, 2011 at 1:32 pm
Most systems I've managed we updated the statistics daily. But some were less volatile so we updated statistics weekly. You're approaching dealing with large databases at 1TB. You might need...
August 20, 2011 at 1:29 pm
I'd try uninstalling and then reinstalling.
August 20, 2011 at 1:24 pm
Sounds like some kind of hardware issue. Was the restore run across the network? Might have glitched there. You're using a third party product? Might have been something in there...
August 20, 2011 at 1:23 pm
ajaysanhotra (8/20/2011)
Hi i am curious to know what is the difference betweenCREATE INDEX PIndex ON Persons (LastName) ,
CREATE INDEX PIndex ON Persons (DOB)
AND
CREATE INDEX PIndex ON Persons (LastName,DOB)
You can't...
August 20, 2011 at 1:19 pm
1. What ever process you're using would need to keep track of which index has been done. There's nothing automatic around that.
2. CHECKDB outputs it's results, and yes, you can...
August 20, 2011 at 1:12 pm
I'm pretty sure that FILESTREAM stores individual files, not a single file like a database file. Each time you write a file out to the FILESTREAM, it gets stored out...
August 19, 2011 at 7:44 am
Hold a second. TableB has an identity column. You can't make that a foreign key to another table, it will cause errors because, in theory, you're creating values automatically in...
August 19, 2011 at 7:02 am
skrilla99 (8/19/2011)
Grant Fritchey (8/19/2011)
skrilla99 (8/19/2011)
SELECT dtat.transaction_begin_time,
dtat.transaction_status,
dtat.transaction_state,
...
August 19, 2011 at 6:27 am
skrilla99 (8/19/2011)
SELECT dtat.transaction_begin_time,
dtat.transaction_status,
dtat.transaction_state,
der.blocking_session_id,
...
August 19, 2011 at 6:12 am
August 19, 2011 at 5:41 am
Viewing 15 posts - 12,016 through 12,030 (of 22,214 total)