Verificar se uma function existe
03/07/2006
0
Estou gerando um script para rodar no SQL Analiser. Como posso verificar se uma function existe no banco ?
Obrigado
Obrigado
Fpinho
Curtir tópico
+ 0
Responder
Posts
03/07/2006
Dwmes
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´#¬¬´
Responder
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)