Forum: ASP.NET |
Thema:
AW: Abfrage ob Stored Procedure existiert |
Von:
Jens Buthe (
23.06.2006 11:36) |
Hi mosti,
versuch mal sowas:
Cmd.CommandText = "if exists ("
Cmd.CommandText &= " select *"
Cmd.CommandText &= " from dbo.sysobjects"
Cmd.CommandText &= " where id = object_id(N'[dbo].[myStoredProcedure]')"
Cmd.CommandText &= " and OBJECTPROPERTY(id, N'IsProcedure') = 1)"
Cmd.CommandText &= " Select 'true' Else Select 'false'"
If Cmd.ExecuteScalar = True Then
Response.Write("Stored Procedure existiert")
else
Response.Write("Stored Procedure existiert nicht")
end if
hoffe dies hilft dir weiter
j
Betreff |
Von |
Datum |
|
|
Martin
Mostögl
|
23.06.2006 13:20 |
|
|
Martin
Mostögl
|
23.06.2006 13:26 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!