Viewing 14 posts - 106 through 120 (of 120 total)
hey Raj
getting same error.Got any solution
July 17, 2012 at 2:50 am
Any one of the values that you are concatenating might be null.
put a isnull check of that value.
isnull(null_value,'')
January 19, 2011 at 7:47 am
Not much option of overcoming the sort operation unitll order by is removed,,,
one way you can try creating indexed view,,,,
January 18, 2011 at 6:05 am
have you tried
dbcc shrinkfile(<'logfilename'>)
works better in simple recovery mode
January 17, 2011 at 5:05 am
check for following things:
tuning HaversineDistanceKm fn
check for missing or non used indexes
check for statistics
January 17, 2011 at 4:53 am
also put rowlock on the table from which data is deleted
put nolock on the tableB (referenced table)
January 13, 2011 at 3:53 am
facticatech (1/12/2011)
for eg: update table set column1=0 where column1 is null
update...
January 13, 2011 at 3:51 am
Rowlock will help till some extent (till threshold reached)....
After the threshold number of locks gets acquired the rowlock gets escalated to table level lock to optimally use the resources.....
As per...
January 13, 2011 at 3:47 am
in topic you have specified select 'x'
so i think you wanted to know for select 'x' from tablename
the above query will return char x for all the records in the...
January 6, 2011 at 3:17 am
photonicman (1/5/2011)
January 6, 2011 at 2:49 am
As Specified by the Gila,,the two queries won't fetch the same results,,,
In general checking for nullablilty for parameter would be better than checking for nullablilty for the column.
January 5, 2011 at 3:24 am
Try out this on as well..
SELECT name,
address
FROM tab tab1
WHERE EXISTS(SELECT tab2.address
...
January 5, 2011 at 2:53 am
Viewing 14 posts - 106 through 120 (of 120 total)