Verificar se uma function existe
Estou gerando um script para rodar no SQL Analiser. Como posso verificar se uma function existe no banco ?
Obrigado
Obrigado
Fpinho
Curtidas 0
Respostas
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´#¬¬´
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