Loading
Transfer Created Alerts

Hi,

since SLM can only have one Admin or a group Admin email to create alerts, I require a way to transfer the Alerts I have created for a Swiss customer before I exit my position at the end of the year. Any ideas?

Thanks to anyone who replies.

Cheers,

DI


  • I'm assuming you mean notifications that you create in the Admin Menu in SLM?

     

    If so

     

    -- Get user ids for system users

    SELECT UserID FROM SnowLicenseManager.dbo.tblSystemUser WHERE UserName = 'YOUR_USERNAME'

    SELECT UserID FROM SnowLicenseManager.dbo.tblSystemUser WHERE UserName = 'DESIRED_USER'

     

    -- Update notifications from one user to another user

    UPDATE SnowLicenseManager.dbo.tblNotification

    SET UserID = 0 -- Change 0 to the value from Desired User

    WHERE UserID = 0 -- Change 0 to the value from Your Username

     

    -- Show all notification in the system

    SELECT * FROM SnowLicenseManager.dbo.tblNotification

    Expand Post
    • Hi Laim You assumed correctly. I am not sure where to start with your directions. Could you please be more specific? Regards, Dan
      • Hey Dan,

         

        Your database admin will need to run them in SQL Server Management Studio against your SnowLicenseManager database. :)

Related  Product Forums


                     â†’ Flexera One



                      â†’ Snow Atlas



                      â†’ FlexNet Manager



                      â†’ Snow License Manager



                       â†’ App Broker


       Need help finding an answer?


        Ask a Question →


Loading
Transfer Created Alerts