Viewing 15 posts - 556 through 570 (of 1,253 total)
michael vessey (10/24/2008)
developers often assume that what they've written against their dev database which has 50 rows of data will work just as fast with 5000 rows...
October 24, 2008 at 2:21 am
Hi
Cant write the query now.. bit busy. You can do this using CASE statements. Check this site for more details and examples.
October 24, 2008 at 12:46 am
This subquery " (SELECT Cycle_Time_perStation
...
October 22, 2008 at 2:46 am
STUFF(CustPhone,1,3,'664') WHERE left(Custphone,3) = 614
October 22, 2008 at 1:08 am
Hi
So u need to check for another record in the same table i.e. sites table rt?
If thats the case you can use IF EXISTS or IF NOT EXISTS Clause inside...
October 22, 2008 at 1:03 am
Where clause should come before the Order by.
Once thats done check whthr the query is executing as u want. If not give us some more details.
October 21, 2008 at 12:49 am
If i have understood correctly.........
CASE WHEN tbMeasurement.MonitoredLocationCode = 'FUGITIVE_TOTAL' THEN ISNULL(tbMeasurement.NumericResult,0) END AS 'FUGITIVE_TOTAL'
,CASE WHEN tbMeasurement.MonitoredLocationCode = 'ACCIDENTAL_TOTAL' THEN ISNULL(tbMeasurement.NumericResult,0) END AS 'ACCIDENTAL TOTAL'
October 17, 2008 at 3:28 am
Would Create Index WITH Drop_Existing work for moving non-clustered indexes.
October 16, 2008 at 1:13 am
Sorry for the delay.
Since you are going to use both the range columns and also the value column, CASE is the best way to go about it.
So thats going to...
October 16, 2008 at 12:42 am
Thanks Jason , Paul. That some body got rid of it is the only conclusion that i cud come to. I do have backups so recovering the db is not...
October 16, 2008 at 12:22 am
Generally speaking performance takes a hit becoz data has to compressed and decompressed for data modifications and retrival. You could do this for data that is used rarely like some...
October 16, 2008 at 12:19 am
Viewing 15 posts - 556 through 570 (of 1,253 total)