<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									How do you set a users password to &quot;password&quot; on an platform instance via SQL? - Developer Network Q&amp;A				            </title>
            <link>https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/</link>
            <description>BY Network Community Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 19 May 2026 15:14:58 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Answer to: How do you set a users password to &quot;password&quot; on an platform instance via SQL?</title>
                        <link>https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-11670</link>
                        <pubDate>Fri, 08 Aug 2025 15:40:50 +0000</pubDate>
                        <description><![CDATA[Updated method for 2025.  Set all users password to &quot;password&quot;.  Better way which makes them not have to change the password on first login.
insert into plt_sso_replication(ssorp_id, ssorp_...]]></description>
                        <content:encoded><![CDATA[<p>Updated method for 2025.  Set all users password to "password".  Better way which makes them not have to change the password on first login.<br /><br /></p>
<pre contenteditable="false">insert into plt_sso_replication(ssorp_id, ssorp_user_name, ssorp_source_application, ssorp_active_status_cd, ssorp_action_cd, ssorp_created_date, ssorp_modified_date, ssorp_enterprise_name, ssorp_email_address, ssorp_locale_language, ssorp_locale_country, ssorp_access_mode) (select plt_sso_replication_seq.nextval, ent_name, $YOUR_VCID$, 'Active', 'InsertEnterprise', systimestamp, systimestamp, ent_name, null, null, null, null from enterprise where ent_name ='$YOUR_ENTERPRISE$');

insert into plt_sso_replication(ssorp_id, ssorp_user_name, ssorp_source_application, ssorp_active_status_cd, ssorp_action_cd, ssorp_created_date, ssorp_modified_date, ssorp_enterprise_name, ssorp_email_address, ssorp_locale_language, ssorp_locale_country, ssorp_access_mode) (select plt_sso_replication_seq.nextval, user_name, $YOUR_VCID$, 'Active', 'InsertUser', systimestamp, systimestamp, ent_name, email_address, locale_language, locale_country, access_mode from users where user_name IN (select distinct user_name from usro where is_active =1 ));

insert into plt_sso_replication(ssorp_id, ssorp_user_name, ssorp_source_application, ssorp_active_status_cd, ssorp_action_cd, ssorp_created_date, ssorp_modified_date, ssorp_enterprise_name, ssorp_email_address, ssorp_locale_language, ssorp_locale_country, ssorp_access_mode) (select plt_sso_replication_seq.nextval, user_name, $YOUR_VCID$, 'Active', 'GrantAppAccess', systimestamp, systimestamp, ent_name, email_address, locale_language, locale_country, access_mode from users where user_name IN (select distinct user_name from usro where is_active= 1));

update sso_principal set ssopr_last_login_date = '25-MAR-25', ssopr_active_status_cd = 'Active';

update sso_password_history set ssoph_user_password='1000:7d46c3df80356a19603c594d306e546d20056024abb0f780:62d069dab1ce5ef8bd1de3b9eb8fbfcf1178a3f006ca1c8b:1';</pre>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>tsmith</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-11670</guid>
                    </item>
				                    <item>
                        <title>Answer to: How do you set a users password to &quot;password&quot; on an platform instance via SQL?</title>
                        <link>https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-5587</link>
                        <pubDate>Thu, 10 Sep 2020 21:00:12 +0000</pubDate>
                        <description><![CDATA[If you want to only reset the most recent password AND reset the &quot;too many failed login&quot; flag:
 

update sso_password_history set ssoph_user_password = &#039;1000&#058;7d46c3df80356a19603c594d...]]></description>
                        <content:encoded><![CDATA[<p>If you want to only reset the most recent password AND reset the "too many failed login" flag:</p>
<p> </p>
<blockquote>
<p>update sso_password_history set ssoph_user_password = '1000&#058;7d46c3df80356a19603c594d306e546d20056024abb0f780:62d069dab1ce5ef8bd1de3b9eb8fbfcf1178a3f006ca1c8b&#058;1'<br />where ssoph_ssopr_id = (select ssopr_id<br />from sso_principal<br />where ssopr_user_name = 'THE_USERNAME') and ssoph_active_status_cd = 'Active';</p>
</blockquote>
<p> </p>
<p>update sso_principal set ssopr_active_status_cd = 'Active', ssopr_failed_logins_count = 0 where ssopr_user_name = 'THE_USERNAME';</p>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>Matt Nutsch</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-5587</guid>
                    </item>
				                    <item>
                        <title>Answer to: How do you set a users password to &quot;password&quot; on an platform instance via SQL?</title>
                        <link>https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-5586</link>
                        <pubDate>Thu, 10 Sep 2020 20:58:51 +0000</pubDate>
                        <description><![CDATA[An easy solution is simply to do this:
update sso_password_history set ssoph_user_password = &#039;1000&#058;7d46c3df80356a19603c594d306e546d20056024abb0f780:62d069dab1ce5ef8bd1de3b9eb8fbfcf1178...]]></description>
                        <content:encoded><![CDATA[<p>An easy solution is simply to do this:<br /><br /></p>
<pre contenteditable="false">update sso_password_history set ssoph_user_password = '1000&#058;7d46c3df80356a19603c594d306e546d20056024abb0f780:62d069dab1ce5ef8bd1de3b9eb8fbfcf1178a3f006ca1c8b&#058;1'
where ssoph_ssopr_id = (select ssopr_id from sso_principal where ssopr_user_name = 'theusername')</pre>
<p><br /><br />You lose the history of older passwords, but often for the kind of users you are trying to do this for, that really doesn't matter.</p>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>Matt Nutsch</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-5586</guid>
                    </item>
				                    <item>
                        <title>How do you set a users password to &quot;password&quot; on an platform instance via SQL?</title>
                        <link>https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-5585</link>
                        <pubDate>Thu, 10 Sep 2020 20:57:37 +0000</pubDate>
                        <description><![CDATA[Need to reset a users password to &quot;password&quot; via SQL.]]></description>
                        <content:encoded><![CDATA[<p>Need to reset a users password to "password" via SQL.</p>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>Matt Nutsch</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/how-do-you-set-a-users-password-to-password-on-an-platform-instance-via-sql/#post-5585</guid>
                    </item>
							        </channel>
        </rss>
		