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

Show Stored Procedures

Posted on July 30, 2013October 26, 2015 By David Kittell
SELECT so.NAME
	,created
	,last_altered
	,specific_catalog
	,routine_definition
	,sql_data_access
FROM sys.objects so
LEFT OUTER JOIN information_schema.routines sr ON so.NAME = sr.specific_name
WHERE objectproperty(object_id, N'IsMSShipped') = 0
	AND objectproperty(object_id, N'IsProcedure') = 1
ORDER BY created DESC
	,NAME
SELECT *
FROM information_schema.routines
WHERE routine_type = 'PROCEDURE'
ORDER BY specific_name
SELECT *
FROM sys.objects
WHERE objectproperty(object_id, N'IsMSShipped') = 0
	AND objectproperty(object_id, N'IsProcedure') = 1
Originally Posted on July 30, 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 MSSQL MSSQL - Audit SQL

Post navigation

Previous post
Next post

Related Posts

PowerShell – Clean Windows 10

Posted on March 9, 2016April 2, 2022

Work In Progress This will remove some of the default apps along with a couple other fun features to come. clear # Many of the below items are from #https://tweakhound.com/2015/12/09/tweaking-windows-10/ #cd ~\Desktop #mkdir "God Mode.{ED7BA470-8E54-465E-825C-99712043E01C}" function Change-Service ($servicename, $serviceaction, $servicestatuptype) { if (Get-Service $servicename -ErrorAction SilentlyContinue) { $ServiceDetail=$(Get-Service -Displayname $servicename)…

Read More

SQL – Log Parser Studio

Posted on December 4, 2015December 4, 2015

Log Parser Studio is a great free tool from Microsoft TechNet Gallery that allows you to run SQL statements against Log files. This tool is available as a Zip file, once extracted open “LPS.exe”. Two examples are below but there is also a category (Code – SQL – Log Parser…

Read More

UNIX – Create New User & Add To Group

Posted on August 5, 2016

username="dkittell" usergroup="developers" useradd $username && passwd $username # Set initial password # Force user to change password once logged in chage -d 0 $username groupadd $usergroup usermod -aG $usergroup $username All information on this site is shared with the intention to help. Before any source code or program is ran…

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