Searching Stored SQL – Part 2

There are four main database objects that contain stored (compiled) SQL: VIEWS, TRIGGERS, FUNCTIONS and STORED PROCEDURES.

Yesterday, I created a pattern searching tool for SQL code in STORED PROCEDURES. Today, I am going to clone and modify the code so that it will allow pattern searching on TRIGGERS.

First, I want to examine the dynamic SELECT statement that retrieves the user defined stored procedure names from a given database. This is the key element of the whole program.

I took the liberty to modify the original code so that it will work standalone. The current code returns the schema name, the object name, and a combination of both called full name. The full name is used by the system stored procedure called sp_helptext that returns the stored SQL code (text) for any object.

Both the sys.objects and sys.schemas system views are local to a given database. Therefore, the TSQL has to be dynamic since we do not know the database name ahead of time.

Second, the WHERE clause has two conditions. The [is_ms_shipped] column indicates whether or not the object is user defined. The [type] column indicates the object type. This needs to be changed in our new procedure named [usp_get_text4tr].

The table below shows valid values for the [type] column. I will substitute ‘P’ with ‘TR’ for this new code. Both the global and local temporary table names are changed to reflect the TRIGGER object type.

  • AF = Aggregate function (CLR)
  • C = CHECK constraint
  • D = DEFAULT (constraint or stand-alone)
  • F = FOREIGN KEY constraint
  • FN = SQL scalar function
  • FS = Assembly (CLR) scalar-function
  • FT = Assembly (CLR) table-valued function
  • IF = SQL inline table-valued function
  • IT = Internal table
  • P = SQL Stored Procedure
  • PC = Assembly (CLR) stored-procedure
  • PG = Plan guide
  • PK = PRIMARY KEY constraint
  • R = Rule (old-style, stand-alone)
  • RF = Replication-filter-procedure
  • S = System base table
  • SN = Synonym
  • SQ = Service queue
  • TA = Assembly (CLR) DML trigger
  • TF = SQL table-valued-function
  • TR = SQL DML trigger
  • TT = Table type
  • U = Table (user-defined)
  • UQ = UNIQUE constraint
  • V = View
  • X = Extended stored procedure

Enclosed is the full stored procedure for your usage.

A sample call to the tool to list and save all stored procedure code in the AdventureWorks database to a user defined table.

We can filter by object name if it is known. I am looking for the delete vendor trigger.

We can filter by actual code if we know a key value. I am looking for the product id.

The image below show the results of this search.

Again, the user defined table created by this procedure stays in the system until tempdb is recreated upon server startup.

Next time, I will show how this query needs to be adjusted to display SQL code for FUNCTIONS.

Related posts

2 Thoughts to “Searching Stored SQL – Part 2”

  1. I always was interested in this subject and stock still am, thank you for putting up.

  2. Thx for taking the time to describe the terminlogy to the inexperienced persons!

Leave a Reply to Christoper Kreitz Cancel reply