Viewing 15 posts - 301 through 315 (of 479 total)
vempralachaitanya (11/9/2008)
update t set t.sno=
(select s.sno from t,s where s.sid=t.sid and t.sno is null)
where t.sno is null and t.sid=s.sid
am getting the following error
--error
Msg 4104, Sevel 16, State 1, Line 1
The...
November 10, 2008 at 6:50 am
I assume R.Barry Young was kidding ...
select name from sysobjects o1
where type in ('FN', 'IF', 'TF', 'P')
and ObjectProperty(id, 'IsMSShipped') = 0
and name...
November 10, 2008 at 5:29 am
tom.gilmore (11/10/2008)
November 10, 2008 at 5:08 am
The function CombineGroupNames can be dispensed with entirely by defining the view thus:
CREATE View [dbo].[ApplicationResources]
AS
SELECT R.[ResourceName]
,R.[IsEnabled]
,replace(replace(replace( (
...
November 10, 2008 at 4:37 am
Several people have complained that changing the text column to varchar(max) is bad because you are changing the data, which is right, so I'd just do the conversion in line..select...
November 6, 2008 at 9:18 am
Grant Fritchey (11/4/2008)
I'm well and thoroughly confused by what business problem we're hoping to solve here. Or are we just engaged on an entertaining, though useless, mind excercise?
Not every discussion...
November 4, 2008 at 9:01 am
SS 2005 doesn't have the '-=' operator, but if you trydeclare @i int
set @i=6
set @i=-+-+-@i
print @i you get -6, so it's consistent with 2K8.
I think the parser is just treating...
November 4, 2008 at 7:14 am
David (11/4/2008)
November 4, 2008 at 6:41 am
I spent many years doing research in Nuclear Physics so I'm with Steve (and others) in the "Go Nuclear" camp.
While wind and wave may provide short term 'top-ups' we really...
October 31, 2008 at 6:16 am
I knew Express had AUTO_CLOSE on by default, but then went and ticked that and not the others. :hehe:
Must be working too hard! 😀
October 23, 2008 at 5:59 am
I checked the references and the New Scientist article refers to the collapse of LTCM in 1998 which nearly caused a global collapse. This is analysed here and here (Wikipedia).
The...
October 21, 2008 at 3:44 am
Steve Jones - Editor (10/15/2008)
There are actually limits to that automated selling. Various tripwires will actually stop selling to prevent that from cascading across all stocks.
My reading of the history...
October 15, 2008 at 9:53 am
Matt Miller (10/14/2008)
October 15, 2008 at 2:43 am
Steve Jones - Editor (10/14/2008)
Short selling isn't stealing, and actually short sellers can help ensure the market doesn't grow too wildly. (http://blogmaverick.com/2008/09/30/the-stock-market-is-not-a-barometer/)
Sorry, Steve, Just stating it isn't doesn't...
October 14, 2008 at 9:46 am
GSquared (10/14/2008)
October 14, 2008 at 8:12 am
Viewing 15 posts - 301 through 315 (of 479 total)