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

Ektron SQL – List All Users

Posted on July 19, 2013October 26, 2015 By David Kittell

If you’re looking for more specific access lists look at Ektron – User Access List

SELECT user_id
	,[user_name]
	,[first_name]
	,[last_name]
	,[email_address1]
	,[email_address2]
	,[email_address3]
	,[address]
	,[latitude]
	,[longitude]
FROM [users] u
ORDER BY u.user_id
SELECT utgt.usergroup_id,
	ug.usergroup_name,
	utgt.user_id,
	[user_name],
	[first_name],
	[last_name],
	[email_address1],
	[email_address2],
	[email_address3],
	[address],
	[latitude],
	[longitude]
FROM [user_to_group_tbl] utgt
INNER JOIN [usergroups] ug ON ug.usergroup_id = utgt.usergroup_id
INNER JOIN [users] u ON u.user_id = utgt.user_id
ORDER BY ug.usergroup_name
Originally Posted on July 19, 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 Ektron User Management MSSQL MSSQL - Ektron MSSQL - Ektron 8.0.2 MSSQL - Ektron 8.7

Post navigation

Previous post
Next post

Related Posts

File Extension

Posted on October 17, 2013October 26, 2015

If you are working in a database that has asset/file storage and need to get just the extension of the column this query will help save time. SELECT CASE WHEN filepath LIKE ‘%.%’ THEN RIGHT(filepath, Len(filepath) – Charindex(‘.’, filepath)) ELSE filepath END FilePath FROM tbl1 Originally Posted on October 17,…

Read More

Directory Listing

Posted on May 20, 2014October 26, 2015

dir *.pdf /O:N /b > filelist.txt Originally Posted on May 20, 2014Last 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…

Read More

Windows Server – Enable TLS 1.2 Support

Posted on October 12, 2016

Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client] "DisabledByDefault"=dword:00000000 "Enabled"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server] "DisabledByDefault"=dword:00000000 "Enabled"=dword:00000001 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…

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