Viewing 15 posts - 13,756 through 13,770 (of 14,953 total)
Not sure what to do about that one. I haven't had an installation go bad on me in that way.
May 12, 2008 at 12:26 pm
Tom Garth (5/9/2008)
GSquared (5/9/2008)
May 12, 2008 at 12:25 pm
I can't see a boycott being effective in this regard.
Insofar as upgrading to SQL 2008 goes, I see a bunch of features in Enterprise that would be very, very useful...
May 12, 2008 at 12:10 pm
I write because I like to communicate in all its myriad forms. (I talk too much, write too much, heck, since I spent a summer with some Italians, I...
May 12, 2008 at 11:57 am
troyehall (5/10/2008)...This is about about choice. ...
You just failed your own proof of observation of language. 🙂
Thus, per your own argument, you need to stop stop using case sensitivity. 🙂
May 12, 2008 at 9:16 am
troyehall (5/10/2008)
Being able to easily spot the difference between getElementById() from getElementByID() while skimming through code is not a matter of being clever. In fact, I expressly stated that...
May 12, 2008 at 9:13 am
Jeff Moden (5/12/2008)
Isn't CROSS APPLY just another name for "correlated sub-query"?
Actually, in the right (wrong) circumstances, Cross Apply can be worse than a regular correlated sub-query. It depends on...
May 12, 2008 at 7:49 am
Are you literally running exactly the same script in each database? They all have the same tables and columns to clean up, etc?
If so, then you could turn it...
May 12, 2008 at 7:17 am
Vijaya Krishna (2/24/2008)
if you are very sure about the values that you can have for that columns is less than 3 then you can go ahead with bit data type....
May 12, 2008 at 7:07 am
Regardless of cause, that's the error you get for deadlocks.
May 12, 2008 at 6:59 am
Is there any reason that this has to be done in SQL? Most of the time, pivoting data works better in various front-end applications. Reporting Services, Excel, Access,...
May 12, 2008 at 6:58 am
The only way to do exactly what you're asking is dynamic SQL. That opens up all kinds of serious security and other issues. Might want to reconsider the...
May 9, 2008 at 2:25 pm
Another way to join the tables together to get this is:
select *
from WData
inner join tempProjtable
on WData.proj_ID like tempprojtable.proj_id + '%'
where tempprojtable.proj_start_dt is not null
and tempprojtable.proj_end_dt is not null
Then you just...
May 9, 2008 at 2:21 pm
The only way I can think of to do this more efficiently would be to select the max(sd.DateID) for each dt.DateID in one query, then join that to the sparse...
May 9, 2008 at 2:12 pm
Is there a particular proc that's causing the problem? Or a couple of specific ones?
May 9, 2008 at 1:48 pm
Viewing 15 posts - 13,756 through 13,770 (of 14,953 total)