Viewing 15 posts - 136 through 150 (of 514 total)
Just one side comment Steve. Althought it is nice to put a face to the name, I suggest that you go back to the pictures of Everyday Jones. ...
February 22, 2008 at 7:50 am
CU6. Apparently whomever got assigned to my case was less than compentant. I re-submitted my request, and got the correct build.
But I agree that having TESTED service...
February 20, 2008 at 9:24 am
Has anyone tried to get a copy of it? I am on my third attempt. First response was this is included in SP2. 🙂 Second was...
February 20, 2008 at 7:14 am
nugroho (2/13/2008)
If there are nulls, the first query should give result more than the other 2 queries combine because nulls should not be counted in the 2 queries.
It was part...
February 13, 2008 at 8:30 am
auaiomrn (2/12/2008)
February 13, 2008 at 7:19 am
SQLBill (2/11/2008)
That means if you have one DATETIME that is NULL, it will be counted in both counts.-SQLBill
The OP stated that it was part of the PK (Nulls not allowed).
Actually...
February 13, 2008 at 7:17 am
Tom Leykis (2/4/2008)
while @count < 10
begin
select @count = @count + 1
...
February 5, 2008 at 12:32 pm
This is the best answer I have found on the subject.
http://www.sommarskog.se/share_data.html
Of that the most generic method was the following.
sp_addlinkedserver @server = 'LOCALSERVER', @srvproduct = '',
...
February 5, 2008 at 11:34 am
This really sounds like a blocking issue. I read through all the threads, but don't recall you saying if you checked for locks (on the process), not just the...
February 5, 2008 at 8:54 am
Pam,
That is the question we should be asking! Why is your system doing so much ddl that you are creating contention on the system metadata? Sounds like an...
February 5, 2008 at 8:49 am
In a normal environment where dropping and creating of table (except for temp tables) was a rare occurrence, I would agree. But in this case the OP is stating...
February 5, 2008 at 8:03 am
Kenneth Fisher (2/4/2008)
I wonder what would happen if you went in and modified it to use "WITH (NOLOCK)" or something similar on all of its queries.Kenneth
You aren't suggesting that it...
February 5, 2008 at 6:13 am
Not that it is significant in this case, but a very minor change will improve the performance.
IF EXISTS (
SELECT 1 from syscolumns WHERE ID = object_id('DcReservationContact') and name =...
February 5, 2008 at 5:50 am
On 3/1/2007 I started the job I am in right now.
Before I started here the only SQL Server I had used was the express edition and I only knew that...
February 1, 2008 at 2:27 pm
Viewing 15 posts - 136 through 150 (of 514 total)