fn_OBJECT_TYPE

4

October 19, 2012 by Kenneth Fisher

I recently started using OBJECT_NAME, OBJECT_SCHEMA_NAME and OBJECT_ID functions; unfortunately I really could have used OBJECT_TYPE but it doesn’t exist (yet?). So for now I wrote one of my own.

FYI I originally wrote it as sp_ and created it in the master db thinking that this would cause it to be available from any database. Unfortunately it appears that this doesn’t work for functions, only stored procedures, views and would you believe tables? I’d love it if someone would explain that one to me sometime.

CREATE FUNCTION dbo.fn_OBJECT_TYPE (@Object_Id INT) 
RETURNS nvarchar
AS
BEGIN
DECLARE @type_desc nvarchar(120)

SELECT @type_desc = type_desc
FROM sys.all_objects
WHERE object_id = @Object_Id

RETURN @type_desc
END
GO

4 thoughts on “fn_OBJECT_TYPE

  1. sqlpathy says:

    Cool function…..ALso check OBJECTPROPERTY function from BOL. This comes very handy when one wants to filter specific objects from the database.

    • You know for whatever reason I didn’t even think of OBJECTPROPERTY. Turns out OBJECTPROPERTYEX(object_id, ‘BASETYPE’) will return the type of the object. It’s not the type_desc but certainly good enough.

  2. John says:

    Excellent, thank you. Exactly what I was after. Ended up using the following:

    SELECT distinct OBJECT_SCHEMA_NAME(referencing_id) [Schema], OBJECT_NAME(referencing_id) [Name] , OBJECTPROPERTYEX(referencing_id, ‘BASETYPE’) [Type], referenced_server_name [Server], referenced_database_name [Database]
    FROM sys.sql_expression_dependencies

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Enter your email address to follow this blog and receive notifications of new posts by email.

Join 6,758 other subscribers

Follow me on Twitter

Archives

ToadWorld Pro of the Month November 2013