Viewing 15 posts - 26,221 through 26,235 (of 26,484 total)
Not necessarily. The difference is that the first query has a function being used on the left side of the >= where as the second doesn't. The query engine is...
January 23, 2007 at 3:29 pm
Actually, problem with the screen I was using. On my computer I can see it all. Looks like I need to replace some hardware at home.
January 23, 2007 at 2:17 pm
While installing SQL Server 2005 Developer Edition on one of our development servers, I ran into issues applying SP 1. SSIS would not start after applying the service pack. In...
January 23, 2007 at 2:15 pm
Based on your test table, there both queries will do a table scan. There are no indexes defined on dbo.TestPerformance, so SQL will have no choice but to scan the...
January 23, 2007 at 2:07 pm
I don't see any problem with recertifying periodically. It ensures that individuals still have the necessary and relevent skills for the certification.
As both a USSF and HSSO certified Referee, I...
January 23, 2007 at 1:06 pm
Congrats to SSC for reaching the 400,000 members mark! It is a tribute to support and guidance that its members provide to each other. I have found answers to many...
January 23, 2007 at 9:00 am
I have found the problem and have corrected it. Turns out SSIS was trying to phone home due to changes in the Cyrpto providers (or something to that effect) and...
January 18, 2007 at 12:48 pm
Just for the heck of it, change the LEFT OUTER JOIN's to INNER JOIN's in the query Lowell gave you.
January 10, 2007 at 1:28 pm
The following is based on the original post, give it a try:
create table dbo.Part (
PartId char(2),
QtyBreak smallint,
Price money
)
go
insert into dbo.Part (PartId, QtyBreak, Price) values ('p1',100, 5.00)
insert into...
January 10, 2007 at 1:15 pm
I have a possible suggestion for a change in your process, but I need to have one question answered first: Is it possible for a CLOSED invoice to be REOPENED?
January 9, 2007 at 3:23 pm
Sounds like a permissions issue with the directory or the share.
January 8, 2007 at 7:20 am
Have you tried dropping the the distinct from the derived table?
January 3, 2007 at 3:07 pm
truncate table #tablename
January 2, 2007 at 2:48 pm
Your problem now may still be permissions, but share permissions, not file permissions. We had an issue with a new hire accessing our VSS. He had permissions to the file,...
December 15, 2006 at 2:34 pm
Is it me, or does it appear that you haven't found someone that truely fits with this company?
December 15, 2006 at 1:42 pm
Viewing 15 posts - 26,221 through 26,235 (of 26,484 total)