Viewing 5 posts - 1 through 5 (of 5 total)
No problem. Thanks for the help! I'm making the vendor deal with it.
November 7, 2006 at 2:06 pm
Duh. I should have thought of that! Another question though. This is supposed to dump data I can use to create a report. Where is that...
November 7, 2006 at 1:59 pm
Here it is:
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AAA_CP_CustomDataExport]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[AAA_CP_CustomDataExport]
GO
--exec AAA_CP_CustomDataExport NULL, '01/01/06', '01/31/06'
CREATE PROCEDURE...
November 7, 2006 at 1:46 pm
I really appreciate all the advice! I think I have a grasp on it now. The good thing is this is very small operation...3 employees, not a...
January 26, 2006 at 8:55 am
You guys are fast!
Here's my dilemma. Every hour when the tlog is backed up, my only choices are to overwrite or append. If I append, and...
January 25, 2006 at 1:08 pm
Viewing 5 posts - 1 through 5 (of 5 total)