cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
FixitDave
Champion Sweeper
I need to add custom attribute data to around 420 assets.

Is there a quicker way other than search, edit, change, save, repeat.
1 REPLY 1
Esben_D
Lansweeper Employee
Lansweeper Employee
Scripting it with an SQL update script would be the easiest method. If you grab a list of all the asset IDs of the machines you need to update it would go something like:

Update tblassetcustom
set Custom1 = 'YourValue'
where assetid IN (1,2,3,4,5,6,7)