How could I increase the performance of sql server 2000.
For example if write a query for update as
This would work,but if the user only updates only one Column for example column2 what is the use of sending other columns to update.
I do not want a query like updating every column in different query only one query that does my work perfectly.ie taking only the columns which has been updated and update that in the table.
Thanks in advance
Raghul
For example if write a query for update as
Code:
update tablename set column1=newcols1,column2=newcols2,column3=newcols 3 where keyvalue=somevalue
I do not want a query like updating every column in different query only one query that does my work perfectly.ie taking only the columns which has been updated and update that in the table.
Thanks in advance
Raghul
Comment