Viewing 15 posts - 91 through 105 (of 201 total)
Ah i see. Yeah mine wont work. Think i would go for something like your second post then. Not much choice as i see it.
/T
December 8, 2010 at 6:15 am
Richard McSharry (12/7/2010)
Let's say that Tundra comes in 40 different colours and all colours are...
December 8, 2010 at 12:51 am
jaganmohan.rao (12/7/2010)
INSERT INTO dbo.Employees(EmployeeID) values (1)
GO
INSERT INTO dbo.Employees(EmployeeID) values (2)
GO
INSERT INTO dbo.Employees(EmployeeID) values (3)
GO
INSERT INTO dbo.Employees(EmployeeID) values...
December 7, 2010 at 11:31 pm
Hardy21 (12/7/2010)
ziangij (12/6/2010)
Checked the link, could not find if the above number is different in case...
December 7, 2010 at 12:34 am
ziangij (12/6/2010)
Checked the link, could not find if the above number is different in case of...
December 6, 2010 at 11:43 pm
Nice article as a whole... a bit weak/confusing intro though. But thx to Craigs little comment it became much more clear what/why was being done.
/T
December 6, 2010 at 11:38 pm
roger.plowman (12/2/2010)
As to why you'd...
December 2, 2010 at 6:56 am
Is that really slow? If its between servers on a network then thats not so bad. I just did a simple copy over my network on a 2GB file and...
December 2, 2010 at 6:43 am
There are several threads about this in these forums. Search is your friend 🙂
This is
http://www.sqlservercentral.com/Forums/Topic943562-338-1.aspx#bm944589 is according to most one of the better ways to do it.
/T
December 2, 2010 at 2:57 am
Not going into whats better or worse. But your SET based version feels... overkill.
update x set UpdatedValue = UpdatedValue * IsNull(Factor, 1)
from @x x
cross apply (select EXP(SUM(LOG(DilutionFactor))) Factor
...
December 2, 2010 at 2:43 am
There is no **** way that "By adding a where clause in ALL inserts that checks for the existence of new value in the table" is a fix to a...
December 2, 2010 at 12:54 am
Problem with @@error is that it catches the LAST error. So say you execute 3 deletes and the first fails. If you after the deletes check @@error its going to...
December 1, 2010 at 4:50 am
Okay im sure im totally missing something here but adding either
ORDER BY Convert(integer, number)
or
ORDER BY Len(Number)
...
November 26, 2010 at 6:23 am
The second select have a LEFT JOIN as well. So even though there is no match you still get the row. Hence the 'S' row.
/T
November 25, 2010 at 7:44 am
Viewing 15 posts - 91 through 105 (of 201 total)