This is a fast publish!

 

We were working with WAP and had an issue on one of our deployments not getting usage information.

Never had this issue in previous deployments but identified that our SCOM DW SQL is on a Named Instance on this deployment.

The fix that worked for me with SQL Named instances to change the connection string to use “Trusted Connection”. My environment: SCOM MS Server = SCOM01.Demo.Corp SCOM DW Server = SCOMDW.Demo.Corp SPF Server = SCSPF01.Demo.Corp SQL Named Instance = SCOMDW.Demo.Corp\SCOMDW Modified the script from: http://www.zgc.se/index.php/2014/04/28/wap-usage-does-not-work-last-id-never-changes/

 

********

 

Import-module spfadmin

# Provide server name to the OM DW SQL instance $OMDWSqlServer = “SCOMDW.Demo.Corp” $OMDWSqlInstance = “SCOMDW.Demo.Corp\SCOMDW”

# Provide server name to the OM RMS Server $OMServer = “SCOM01.Demo.Corp”

# Register the SCOM Data Warehouse instance to SPF usage metering $stamp = Get-SCSPFStamp; $server = New-SCSPFServer -Name $OMServer -ServerType OMDW -Stamps $stamp[0];

#For SPF RTM use the following command: $setting = New-SCSPFSetting -Name $OMDWSqlServer –Value “Data Source=$OMDWSqlInstance;Initial Catalog=OperationsManagerDW;Trusted_Connection=True” -SettingType DatabaseConnectionString –Server $server

 

******** Viola! Working.

Daniel Apps

Hi, I'm Daniel Apps — AI platform enthusiast, unapologetic infrastructure nerd, and dad to two small humans. I write about infrastructure, AI industry topics, and the real-world chaos of modern IT.

More about me →

s