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 Content Folder Names

Posted on February 4, 2014October 26, 2015 By David Kittell
SELECT c.[content_id]
	,c.[content_title]
	,c.[content_html]
	,c.[content_status]
	,CASE
		WHEN c.[content_status] = 'A'
			THEN 'Approved'
		WHEN c.[content_status] = 'O'
			THEN 'Checked Out'
		WHEN c.[content_status] = 'I'
			THEN 'Checked In'
		WHEN c.[content_status] = 'S'
			THEN 'Submitted for Approval'
		WHEN c.[content_status] = 'M'
			THEN 'Marked for Deletion'
		WHEN c.[content_status] = 'P'
			THEN 'Pending Go Live Date'
		WHEN c.[content_status] = 'T'
			THEN 'Awaiting Completion of Associated Tasks'
		WHEN c.[content_status] = 'D'
			THEN 'Pending Deletion'
		END AS ContentStatus
	,c.[date_created]
	,c.[content_type]
	,c.[approval_method]
	,c.[searchable]
	,c.[alias_id]
	,c.folder_id
	,cft.[folder_name]
	,cft.FolderPath
	,cft.FolderIdPath
FROM [content] c
INNER JOIN [content_folder_tbl] cft ON c.folder_id = cft.folder_id
ORDER BY content_status

Related Queries: Ektron Alias With Folder Name

Originally Posted on February 4, 2014
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 MSSQL - Ektron 8.7 SQL

Post navigation

Previous post
Next post

Related Posts

Code

Ubuntu – WordPress Install

Posted on September 2, 2015May 31, 2017

These steps are based on Ubuntu 14.10 Server 64-bit but can be applied to virtually any Debian based UNIX distribution. Originally Posted on September 2, 2015Last Updated on May 31, 2017 All information on this site is shared with the intention to help. Before any source code or program is…

Read More

Windows 10 – Chocolatey Developer Setup

Posted on June 26, 2018October 7, 2020

# Install Chocolatey if not installed # Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString(‘https://chocolatey.org/install.ps1’)) Write-Host "Installing VSCode…" choco install vscode -y Write-Host "Installing Slack…" choco install slack -y Write-Host "Installing Git…" choco install git -y Write-Host "Installing 7zip…" choco install 7zip -y # OPTIONAL…

Read More

UNIX – Get Surface Pro 3 Screen Cover Keyboard To Work

Posted on April 20, 2016

cd ~/ echo -e "Section \"InputClass\"\nIdentifier \"Surface Pro 3 cover\"\nMatchIsPointer \"on\"\nMatchDevicePath \"/dev/input/event*\"\nDriver \"evdev\"\nOption \"vendor\" \"045e\"\nOption \"product\" \"07dc\"\nOption \"IgnoreAbsoluteAxes\" \"True\"\nEndSection" > xorg.conf sudo mv xorg.conf /etc/X11/xorg.conf sudo shutdown -r now All information on this site is shared with the intention to help. Before any source code or program is ran on…

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