Viewing 15 posts - 22,981 through 22,995 (of 26,490 total)
However, the Developers Edition is actually the Enterprise Edition with different licensing. Therefore all the features of the Enterprise Edition are available in the Developer Edition.
January 16, 2009 at 8:32 am
To be sure, not completely sure. I normally don't provide support for the front-end application. I usually keep to the SQL side of things and let those who...
January 15, 2009 at 11:46 pm
PW (1/15/2009)
Frequent use of DISTINCT to hide a fundamental design flaw and/or...
January 15, 2009 at 3:08 pm
And using your code with the condition flipped returns the first row and then fails. This now tells me that with the OR condition, it goes left to right.
select...
January 15, 2009 at 2:44 pm
I built the temp table and ran the following queries:
select *
from #T
where isdate(col1) = 1
and datepart(year, col1) = 1
select *
from #T
where datepart(year, col1) = 1
and isdate(col1) = 1
Both failed for...
January 15, 2009 at 2:21 pm
select *
from #T
where isdate(col1) = 1
and datepart(year, col1) = 1
If SQL Server evaluated left to right, in the above query, it wouldn't have to evaluate the second condition if the...
January 15, 2009 at 2:06 pm
Okay, but where do I look. I am most definately not a web developer (at the moment any way) and don't even know where to look on the server....
January 15, 2009 at 1:08 pm
Not to hijack the thread for something totally unrelated, but....
Gail, according to your web site you've done web development at one time, so I have a very basic question for...
January 15, 2009 at 1:01 pm
Not having used CROSS APLLY myself, I'd have to say that it depends on what you are trying to accomplish.
January 15, 2009 at 11:51 am
By looking at your code, we really can't tell what the problem is. Your problem is also related to the data as apparently you are trying to insert data...
January 15, 2009 at 11:19 am
Viewing 15 posts - 22,981 through 22,995 (of 26,490 total)