suppose I have name segment with is on device mydevice in mydb. Then I try to set autoextend for the the database when segment is full.
The final reason for full is the device is full.
Then I could have 2 option to set this autoextend: on segment or on device:
sp_dbextend ’set’, ’database’, mydb, myseg, ’10%’
sp_dbextend ’set’, ’device’, mydev, ’10%’
So question: if set on segment, ase will extend the device automatically for that segment? about both are same or not?