sarmo wrote:
This was using the upgradebeta.sql you sent me yesterday. Everything seems to work, except for device properties and adding a device. I tried creating a sql script with the code you pasted above and running it against the SQL database instance and it didn't help. Do I need to run the upgradebeta.sql script again?
It should work, are you sure you did it on the correct database?
If you doubt add "use lansweeperdb" at the top
use lansweeperdb
GO
CREATE PROCEDURE [dbo].[web40DevActionsA]
AS SELECT Description, Action, Icon, confirmation
FROM dbo.tsysdeviceactions
WHERE (enabled = 1) AND (Advanced = 1)
ORDER BY sortorder
GO
CREATE PROCEDURE [dbo].[web40DevActionsB]
AS SELECT Description, Action, Icon, confirmation
FROM dbo.tsysdeviceactions
WHERE (enabled = 1) AND (Advanced IS NULL OR
Advanced = 0)
ORDER BY sortorder
GO