`
li.feixiang
  • 浏览: 118420 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

Reconnecting Disconnected Principals in Windchill via SQL Script

阅读更多

If you have your Windchill server instance setup to authenticate users against your Active Directory (AD) you will need to keep an eye on your disconnected principals (Site – Utilities – Principal Administrator – Maintenance). Disconnected principals are AD accounts that have been deleted or disabled, and Windchill is letting you know that it is unable to associate records in the WTUser table to an active AD account.

If this que is left untouched it can cause your system to behave abnormally. So it’s a good thing to check this que at least once a week. If you are seeing accounts showing up here that means that their AD accounts have been either deleted or disabled.  In the past I have seen Windchill mark an active account as being a disconnected principal. The following steps will help you resolve this issue.

  1. First, you will need to get the idA2A2 number of the account in questions. The idA2A2 is the unique identifier for each record in the WTUser table. The following script will get you the idA2A2 for the records in question:
    select idA2A2,name, repairNeeded from wtuser.WTUser
    where repairNeeded = 1
     


    The results from the script should match what is showing from the principal pal administrator screen.
     
  2. Now to update the record so that it’s not longer a disconnected principal.This script will update record in the WTUser table to no longer be a disconnected principal:
    update wtuser.WTUser
    set
    repairNeeded = 0
    where idA2A2 = idA2A2_from_previous_script
     
     

After the script is executed refresh the disconnected principals page in Windchill. The account in question should disappear. repeat the update script for each disconnected principal that you wish to correct.

分享到:
评论

相关推荐

    reconnecting-websocket

    reconnecting-websocket

    reconnecting-websocket.js

    只要把var ws = new WebSocket('ws://....');替换成var ws = new ReconnectingWebSocket('ws://....');

    WebSocket重练机制

    说明缺少包资源,需引入reconnecting-websocket.js和reconnecting-websocket.minjs 创建WebSocket对象使用ReconnectingWebSocket 如下: var ws = new ReconnectingWebSocket(' ws:// .... ');

    reconnecting-websocket:重新连接WebSocket。 对于Web,React Native,cli(Node.js)

    将在打开时发送累积的消息可用的多个版本(请参阅dist文件夹) 调试模式安装npm install --save reconnecting-websocket用法与WebSocket浏览器API兼容因此,此文档应该有效: 。 如果发现任何问题,请ping我。 或者...

    iscsi错误discovery session to ip failed to recv a PDU response, reconnecting

    iscsi错误discovery session to ip failed to recv a PDU response, reconnecting

    Modbus® RTU Serial Communications User Manual

    The Modbus RTU specification is respected in the physical and data link layers. The essage structure of the Modbus RTU function codes is employed and standard IEEE 32-bit floating point and integer ...

    react-native-reconnecting-websocket:React Native自动重新连接WebSocket扩展了WebSocketModule

    React-Native-Reconnecting-WebSocket React Native自动重新连接websocket扩展了WebSocketModule。 API设计参考了 。 :China: 它与API兼容,因此在具有以下条件时: var ws = new WebSocket ( 'ws://....' ) ; ...

    platform-tools_r28.0.2-linux adb fastboot

    Fixes authentication via ADB_VENDOR_KEYS when reconnecting devices. Fixes authentication—when the private key used for authentication does not match the public key—by calculating the public key from...

    platform-tools-r28.0.2-windows-adb-fastboot

    Fixes authentication via ADB_VENDOR_KEYS when reconnecting devices. Fixes authentication—when the private key used for authentication does not match the public key—by calculating the public key from...

    JLink_Windows_V648.zip

    Analog Devices ADUCM355: Reset could not be overwritten using a J-Link script file. Fixed. CCS plugin: Added a new option which allows configuring a J-Link script file (project dependent). ...

    pierced.zip

    内网穿透工具,可以实现代理本地端口生成域名,可以通过此域名访问本地服务,在公众号等需要提供外网回调地址的场景下,本地开发人员可以使用此工具生成域名配置简单使用,支持linux、mac、win64

    ngrok官方客户端

    Ngrok windows10版本64位操作系统,解压安装后即可进行内网穿透,可以快速开发对接微信、微盟等Oauth2平台。

    windows版 ngrok

    ngrok-stable-windows-386.zipngrok-stable-windows-386.zip

    Android代码-RevolutionIRC

    Store chat messages to be displayed after reconnecting to the server later Nick/channel/command autocomplete Ignore list mIRC color formatting support SSL certificate exception list Com

    ReconnectingWebSocket脚本库

    websocket断线重连机制 在使用websocket的过程中,有时候会遇到网络断开的情况,但是在网络断开的时候服务器端并没有触发onclose的事件,这时候就需要由前端自行处理了,ReconnectionWebSocket恒昊的帮我们解决了这个...

    MTK官方线刷工具v5新版

    新版线刷工具,新版支持MTK8核机,兼容老芯片线刷,SP_Flash_Tool_v5.1352.01

    PandoraRadio客户端Pithos.zip

    Pithos 是一个原生的 Pandora Radio 在 Linux ... Reconnecting when pandora session times out Editing QuickMix Creating stations Media Key support Proxy support Last.fm scrobbling 标签:Pithos

    Android代码-pusher-websocket-java

    Reconnecting Disconnecting Listening to connection events Subscribing to channels Public channels Private channels Presence channels The User object Binding and handling events Triggering events ...

    腾讯云微信小程序一站式解决方案.rar

     // reconnecting - 开始重连  // reconnect - 重连成功  // error - 发生错误,其中包括连接失败、重连失败、解包失败等等  // [message] - 信道服务器发送过来的其它事件类型,如果事件类型和上面内置的事件...

Global site tag (gtag.js) - Google Analytics