Frage

Can I name the stored procedure starting with number? Are there any rules for naming stored procedure? I tried creating a stored procedure with 01_01_03. I am not getting it.

Keine korrekte Lösung

Andere Tipps

create proc [dbo].[01_01_03]
as
BEGIN
--ur code
END

I am able to create

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top