Viewing 3 posts - 181 through 183 (of 183 total)
Sounds to me like you are trying to execute a stored procedure with the "WHERE" part as your input parameter...
exec stp_deliverystatus @customernumber = 263722
Full syntax:
USE [Galactic]
GO
DECLARE@return_value int
EXEC@return_value = [dbo].[stp_deliverystatus]
@customernumber =...
June 11, 2010 at 5:40 am
(5/20/2009)
Please read this MS article: http://support.microsoft.com/kb/814398I experienced this same error and the article helped solve the problem.
I also found this useful when querying a workbook with several worksheets:
EXECUTE SP_TABLES_EX 'your_linked_servername_goes_here'
which...
May 20, 2009 at 5:39 am
Please read this MS article: http://support.microsoft.com/kb/814398
I experienced this same error and the article helped solve the problem.
May 20, 2009 at 5:30 am
Viewing 3 posts - 181 through 183 (of 183 total)