Viewing 15 posts - 796 through 810 (of 3,011 total)
Sometimes (often) you just need to ignore what a vendor says because you know more than them.
I ignore vendors all the time when they start spouting nonsense like that.
You are...
June 16, 2011 at 7:19 am
I agree that a clustered index on date makes the most sense for a date table, at least for the majority of applications.
I think a sequential number for the...
June 15, 2011 at 7:56 am
Access to the “secret” forums is post count based, but Steve makes exceptions on a cash basis.
You can contact him via private message to negotiate terms.
June 15, 2011 at 7:31 am
Vendor promised CIO 10% kickback on license purchases.
Decided it would be easier to find qualified Oracle DBAs and developers than SQL Server DBAs and developers.
IT summer intern said it was...
June 14, 2011 at 6:13 pm
Thre is a good chance that setting the database to READ_COMMITTED_SNAPSHOT will resolve most or all deadlocks.
However, deadlocks will still be possible, and if you still get them you will...
June 14, 2011 at 2:01 pm
You should look into using SQL Server Extended Events for this monitoring.
Introducing SQL Server Extended Events
http://msdn.microsoft.com/en-us/library/bb630354(v=SQL.100).aspx
June 13, 2011 at 12:25 pm
sunny.tjk (6/13/2011)
For example: I need to specify 197 columns in the...
June 13, 2011 at 10:33 am
MyDoggieJessie (6/11/2011)
June 13, 2011 at 10:29 am
We use it for full, differential, and transaction log backups, and have never had a problem with it.
June 13, 2011 at 8:22 am
I believe 'guaranteed to never fail' software applications do not exist and never will.
I would also say that most software applications fall very, very far from that ideal.
June 10, 2011 at 11:43 am
One thing you could do to make the proc less of a problem is to have it randomly exit most of the time. Since it is just the same...
June 9, 2011 at 8:25 pm
My assumption was that you were trying to view the data from another connection.
You can use the OUTPUT clause of the UPDATE statement to get what you want.
begin TRAN
UPDATE Table1
SET...
June 9, 2011 at 5:51 pm
I have seen a table that was 15 GB in size, even thought the rows were narrow, and it only had 200 rows in the table. It was an...
June 9, 2011 at 5:23 pm
If you are using row-versioning isolation (SNAPSHOT ISOLATION or READ_COMMITTED_SNAPSHOT), you will see the data as of the last committed transaction and before the start of uncommitted transactions.
June 9, 2011 at 5:07 pm
Viewing 15 posts - 796 through 810 (of 3,011 total)