Viewing 4 posts - 1 through 4 (of 4 total)
When you run the sp that is logged by profiler it fails due to the double quotes.
In SQL 2000 though no double quotes show up? only single quotes as it...
December 18, 2008 at 2:02 pm
set ANSI_NULLS ON
set QUOTED_IDENTIFIER OFF
go
ALTER PROCEDURE [dbo].[OCRCMGetInvalidProductId]
(
@ProductId varchar(4000)='',
@StartDt datetime,
@EndDt datetime,
@StoreId varchar(36),
@output varchar(8000) output
)
AS
IF(LEN(@ProductId) > 0)
SELECT @output = coalesce(@output + ',' , '') + col
FROM
(
SELECT DISTINCT...
December 18, 2008 at 6:45 am
Phil,
We do have some activity on the destination DB during that time however, we are unable to isolate or stop users from accessing the DB during that time.
Would there be...
March 10, 2008 at 11:21 am
I had the exact same error... restarting SQl Server Agent fixed the issue.
FYI
🙂
January 29, 2008 at 9:05 am
Viewing 4 posts - 1 through 4 (of 4 total)