[dbo].[MssWebDeleteThirdPartyErrorsPriorTo]
BUILD09
>
MoversSuite2
>
Stored Procedures
> dbo.MssWebDeleteThirdPartyErrorsPriorTo
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@inDate
date
3
Permissions
Type
Action
Owning Principal
Grant
Execute
MssExec
SQL Script
create
procedure
[dbo]
.
[MssWebDeleteThirdPartyErrorsPriorTo]
@inDate
date
as
begin
set
nocount
on
;
delete
XmlImportError
from
XmlImportError
where
cast
(
XmlImportError.dateDownloaded
as
date
)
<
@inDate
;
select
@@ROWCOUNT
end
GO
GRANT
EXECUTE
ON
[dbo]
.
[MssWebDeleteThirdPartyErrorsPriorTo]
TO
[MssExec]
GO
Uses
[dbo].[XmlImportError]
dbo