Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Subscribed Web Alert

Posted on August 6, 2013October 26, 2015 By David Kittell

Will return you all the web alerts. The ID column represent the ID for the web alert

SELECT *
FROM subscriptions_tbl

Will return you the folder(s) where the web alert is assigned
The column Value_number represents the ID column from subscriptions_tbl
The column Object_ID represents the folder ID where the web alert is assigned

SELECT *
FROM dynamic_data_tbl
WHERE definition_id = 1
	AND definition_object_id = 1

Will return you the users subscribed to the web alert
The column Value_number represents the ID column from subscriptions_tbl
The column Object_ID represents the user ID for the user subscribed to the web alert

SELECT *
FROM dynamic_data_tbl
WHERE definition_id = 1
	AND definition_object_id = 2
Originally Posted on August 6, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Ektron MSSQL MSSQL - Ektron MSSQL - Ektron 8.0.2 SQL

Post navigation

Previous post
Next post

Related Posts

Ektron Menu Item List

Posted on July 30, 2015October 26, 2015

List out all items in an Ektron menu SELECT mt.[mnu_id] AS ‘Menu ID’ ,mnu_name AS ‘Menu Name’ ,[item_title] AS ‘Menu Item Title’ ,[item_link] ,CASE [item_target] WHEN 1 THEN ‘Popup’ WHEN 2 THEN ‘Self’ WHEN 3 THEN ‘Parent’ WHEN 4 THEN ‘Top’ END AS ‘Item Target’ , –[item_target], [item_id] AS ‘Content…

Read More

Delimiter Split

Posted on September 30, 2013October 26, 2015

IF OBJECT_ID(N’dbo.fnSplit’) IS NOT NULL DROP FUNCTION dbo.fnSplit GO CREATE FUNCTION dbo.fnSplit( @sInputList VARCHAR(8000) — List of delimited items , @sDelimiter VARCHAR(8000) = ‘,’ — delimiter that separates items ) RETURNS @List TABLE (item VARCHAR(8000)) BEGIN DECLARE @sItem VARCHAR(8000) WHILE CHARINDEX(@sDelimiter,@sInputList,0) <> 0 BEGIN SELECT @sItem=RTRIM(LTRIM(SUBSTRING(@sInputList,1,CHARINDEX(@sDelimiter,@sInputList,0)-1))), @sInputList=RTRIM(LTRIM(SUBSTRING(@sInputList,CHARINDEX(@sDelimiter,@sInputList,0)+LEN(@sDelimiter),LEN(@sInputList)))) IF LEN(@sItem) >…

Read More

PowerShell – Set Execution Policy Permissions

Posted on March 22, 2016March 22, 2016

In order for PowerShell to run scripts you need to grant it specific permissions. Restricted No scripts can be run. Windows PowerShell can be used only in interactive mode. AllSigned Only scripts signed by a trusted publisher can be run. RemoteSigned Downloaded scripts must be signed by a trusted publisher…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes