Home Forums SQL Server 7,2000 T-SQL Must declare the variable '@ComputerName'. RE: Must declare the variable '@ComputerName'.

  • Oh........

    U r calling a proc with an Output parameter...

    Declare @computername varchar(50)

    Exec proc_name @computername output

    Thanks.