Products

Solutions

Resources

Partners

Community

About

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...SQL Trigger to Add role to all users that no have that roleSQL Trigger to Add role to all users that no have that role
Previous
 
Next
New Post
9/5/2018 7:00 AM
 

I update my DNN from 7 to 9.1.1 and after several times I find bad mistake from DNN.

Several of Users lost two roles "Registered user" and "Subscribers" Role.

Now, I'm looking for using a SQL trigger for find users that no have these two roles and add them to these users.

 

Any body can help me to do that? Adding Two Roles for all users that no have these two roles.

 
New Post
9/5/2018 3:28 PM
 
Armin,

I would not recommend to write a trigger for that - that can cause massive problems when updating.

Just query the database, find the role IDs for Subscribers and Registered Users(which you will find in the "Roles" table - mind the PortalID to find the correct roles), and then add the roles to these users in the table "UserRoles".

Don't forget to recyle the application pool or clear the cache after the changes in the database, otherwise you won't see the changes.

Happy DNNing!
Michael

Michael Tobisch
DNN★MVP

dnn-Connect.org - The most vibrant community around the DNN-platform
 
New Post
9/5/2018 4:01 PM
 

Thanks Michael

 
New Post
9/24/2018 4:03 PM
 
I agree, a onetime action should not be executed by a trigger.
simply use an insert statement like
MERGE INTO dbo.UserRoles T
USING dbo.UserPortals U ON T.UserID = U.UserID AND U.PortalID = 0 AND T.RoleID = …
WHEN NOT MATCHED THEN INSERT (UserID, RoleID, …) VALUES (U.UserID, ...)

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...SQL Trigger to Add role to all users that no have that roleSQL Trigger to Add role to all users that no have that role


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out