Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

How to write a SQL DML UPDATE query to update an array of reference field

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • How to write a SQL DML UPDATE query to update an array of reference field
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
307
AndrewScott
Admiral AndrewScott
96
BevanWeiss
Spock BevanWeiss
90
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
36
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
Experimentalist
Lieutenant JG Experimentalist
Lieutenant JG

Posted: ‎2024-01-30 04:12 AM

0 Likes
3
766
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-01-30 04:12 AM

How to write a SQL DML UPDATE query to update an array of reference field

Hi
 
This one has me baffled, how do you write an SQL DML UPDATE query to update a field that is an array of references?
 
For instance to add a user to multiple user groups. Say I have 3 groups (CDBUserGroup) with IDs of 8159, 8160 & 8161 how can I update a user with ID of 16479 to add the groups to their UserGroupIds:
 
UPDATE
    "CDBUser"
SET
    "UserGroupIds" = ???
WHERE
    "Id" = 16479
 
I can't figure out how to specify the array, I've tried:
 
"UserGroupIds" = (8159, 8160, 8161)
"UserGroupIds" = [8159, 8160, 8161]
"UserGroupIds" = 8159, 8160, 8161
"UserGroupIds" = Values(8159, 8160, 8161)
 
Stumped, any ideas?
Labels
  • Labels:
  • Drivers
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-02-01 02:49 AM

0 Likes
0
731
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-02-01 02:49 AM

Code in C# to do this:

 

			ClearScada.Client.Simple.Connection SimpleConnection;
			ClearScada.Client.ServerNode node = new ClearScada.Client.ServerNode("127.0.0.1", 5481);
			SimpleConnection = new ClearScada.Client.Simple.Connection("Utility");
			SimpleConnection.Connect(node);
			var secure = new SecureString();
			// *** Modify to set your password and user name
			var user = "";
			var pass = "";
			foreach (var c in pass)
			{
				secure.AppendChar(c);
			}
			SimpleConnection.LogOn(user, secure);
			var userObject = SimpleConnection.GetObject("Demo Items.GEO Demo.Mobile.Darren");
			var userGroupIds = userObject.GetProperty("UserGroupIds");
			// You could read the old Ids and append, for example
			var newGroup = SimpleConnection.GetObject("Demo Items.ExtAuth.LDAP.Groups.External WWW");
			object [] gids = { newGroup.Id };
			userObject.SetProperty("UserGroupIds", gids);

 

Or in Python with Pythonnet (I'm using Python 3.12)

# Import .Net runtime support - needs "pip install pythonnet" Works on Python 3.8 & 3.12
import clr
# Get Geo SCADA Library (could use the namespace if the dll is on PATH)
CS = clr.AddReference( "c:\\Program Files\\Schneider Electric\\ClearSCADA\\ClearSCADA.Client.dll" )
import ClearScada.Client as CSClient 

# Create node and connect, then log in. (Could read net parameters from SYSTEMS.XML)
node = CSClient.ServerNode( CSClient.ConnectionType.Standard, "127.0.0.1", 5481 )
connection = CSClient.Simple.Connection( "Utility" )
u = ""
p = ""
connection.Connect( node )
connection.LogOn( u, p )

userObject = connection.GetObject("Demo Items.GEO Demo.Mobile.Darren" )
userGroupIds = userObject.GetProperty("UserGroupIds")
from System import Object, Array, Byte
for i in userGroupIds:
    gid = CSClient.ObjectId( i)
    g = connection.GetObject( gid)
    print(i, g.FullName)
newGroup = connection.GetObject("Demo Items.ExtAuth.LDAP.Groups.Test1")
newGroupIds = Array.CreateInstance( Object, 1)
newGroupIds.SetValue(newGroup.Id, 0)
userObject.SetProperty( "UserGroupIds", newGroupIds )

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 3
geoffpatton
Captain geoffpatton
Captain

Posted: ‎2024-01-30 08:49 AM

0 Likes
0
748
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-01-30 08:49 AM

Probably the same way as the Bulk Edit tool.

It's worth a try.

The Bulk Edit Tool sets it by the user Group's Full Name

Setting Multiple in it is entered with comma's and no spaces.

Like this Security.User Groups.My Group1,Security.User Groups.My Group2

Reply

Link copied. Please paste this link to share this article on your social media post.

Experimentalist
Lieutenant JG Experimentalist
Lieutenant JG

Posted: ‎2024-01-31 09:42 PM

1 Like
0
737
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-01-31 09:42 PM

It turns out that it is not possible to set array of reference fields from a DML SQL query. It can only be achieved through code. I have now written a Powershell script to do the job. Once I've polished it I will probably publish it here for the benefit of others with a similar task. I've got the job done but it is functional but not yet suitable for publishing. 

Reply

Link copied. Please paste this link to share this article on your social media post.

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-02-01 02:49 AM

0 Likes
0
732
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-02-01 02:49 AM

Code in C# to do this:

 

			ClearScada.Client.Simple.Connection SimpleConnection;
			ClearScada.Client.ServerNode node = new ClearScada.Client.ServerNode("127.0.0.1", 5481);
			SimpleConnection = new ClearScada.Client.Simple.Connection("Utility");
			SimpleConnection.Connect(node);
			var secure = new SecureString();
			// *** Modify to set your password and user name
			var user = "";
			var pass = "";
			foreach (var c in pass)
			{
				secure.AppendChar(c);
			}
			SimpleConnection.LogOn(user, secure);
			var userObject = SimpleConnection.GetObject("Demo Items.GEO Demo.Mobile.Darren");
			var userGroupIds = userObject.GetProperty("UserGroupIds");
			// You could read the old Ids and append, for example
			var newGroup = SimpleConnection.GetObject("Demo Items.ExtAuth.LDAP.Groups.External WWW");
			object [] gids = { newGroup.Id };
			userObject.SetProperty("UserGroupIds", gids);

 

Or in Python with Pythonnet (I'm using Python 3.12)

# Import .Net runtime support - needs "pip install pythonnet" Works on Python 3.8 & 3.12
import clr
# Get Geo SCADA Library (could use the namespace if the dll is on PATH)
CS = clr.AddReference( "c:\\Program Files\\Schneider Electric\\ClearSCADA\\ClearSCADA.Client.dll" )
import ClearScada.Client as CSClient 

# Create node and connect, then log in. (Could read net parameters from SYSTEMS.XML)
node = CSClient.ServerNode( CSClient.ConnectionType.Standard, "127.0.0.1", 5481 )
connection = CSClient.Simple.Connection( "Utility" )
u = ""
p = ""
connection.Connect( node )
connection.LogOn( u, p )

userObject = connection.GetObject("Demo Items.GEO Demo.Mobile.Darren" )
userGroupIds = userObject.GetProperty("UserGroupIds")
from System import Object, Array, Byte
for i in userGroupIds:
    gid = CSClient.ObjectId( i)
    g = connection.GetObject( gid)
    print(i, g.FullName)
newGroup = connection.GetObject("Demo Items.ExtAuth.LDAP.Groups.Test1")
newGroupIds = Array.CreateInstance( Object, 1)
newGroupIds.SetValue(newGroup.Id, 0)
userObject.SetProperty( "UserGroupIds", newGroupIds )
Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of