Viewing 15 posts - 9,391 through 9,405 (of 9,641 total)
I had a solution I was going to post but Jeff's was faster by magnitudes. I'd go with his solution.
October 8, 2007 at 8:17 am
ckmoied (10/8/2007)
Actually your solution is similar to
select Facility1 as [Facility 1]
,(select count(*) FROM MyTable WHERE Cond1) as [First Condition]
,(select count(*) FROM MyTable WHERE Cond2) as [Second...
October 8, 2007 at 7:36 am
SQL Server Express does not allow remote connections by default and when you connect using ServerName\InstanceName it assumes you are attempting to connect remotely. If you use localhost\InstanceName you...
October 8, 2007 at 7:19 am
James,
This question should really be posted in the Development Forum, not in the discussion forum for an article about nulls. You will likely get more responses there.
As far as...
October 8, 2007 at 7:00 am
Jereme,
I am pretty sure using Case or Coalesce in the select list will not change the indexes used by the Optimizer, but using a case or function against a column...
October 5, 2007 at 9:39 am
sjwegg (10/5/2007)
October 5, 2007 at 7:11 am
When you are using Integrated Security from an ASP.NET Web application the application connects to the SQL Server using the IIS App Pool user (WEBGROUP), the SQL Server has no...
October 4, 2007 at 7:46 am
I can say that I have merge replication setup between 2005 and 2000. This was done at home for personal reasons, not in a "must work" production environment. ...
October 4, 2007 at 7:35 am
What edition of SQL Server 2005 are you running (Enterprise, Standard, Workgroup, Express)?
October 4, 2007 at 7:30 am
Steve is correct in saying that backing up to a network drive is very fussy. I was doing this in my last job and found that once a backup...
October 4, 2007 at 7:17 am
Frances L (10/4/2007)
Invalid column name.
and I...
October 4, 2007 at 7:04 am
Tim Chapman (10/2/2007)
Thanks for the reply.
And thanks for the last advice Michael.
I believe I have resolved the issue, in theory at least as it hasn't been tested yet.
The main...
October 2, 2007 at 7:01 am
Ninja's_RGR'us (10/1/2007)
One implies a range seek and the other one an index seek (rid lookup). I don't see...
October 1, 2007 at 11:40 am
Nilssond (9/27/2007)
MemberNumber StartDate ...
October 1, 2007 at 8:31 am
Viewing 15 posts - 9,391 through 9,405 (of 9,641 total)