Verificar se uma function existe

SQL Server

03/07/2006

Estou gerando um script para rodar no SQL Analiser. Como posso verificar se uma function existe no banco ?

Obrigado


Fpinho

Fpinho

Curtidas 0

Respostas

Dwmes

Dwmes

03/07/2006

Acho que essa query não pode te ajudar.

select o.name
from dbo.sysobjects o
where (o.xtype = N´TF´ or o.xtype = N´FN´ or o.xtype = N´IF´)
and o.name not like N´#¬¬´


GOSTEI 0
POSTAR