Viewing 7 posts - 1 through 7 (of 7 total)
Hi,
There is someone who can also check this stored procedure : "spgGetCDCContract" ?
Thanks
November 29, 2011 at 3:02 am
Hi David,
have you still investigate in that stored procedure: "spgGetCDCContract", why I could not get data back when I try what you asked me to do?
Thanks
November 17, 2011 at 7:39 am
When I try this:
-- get the @FromLSNDate date
use [CDCDW]
go
exec [spgGetCDCHistoryLastLSNDate] @cdcTable='dbo_contract'
go
-- get the @ToLSNDate date
use [CDCDemo]
go
exec [spgGetCDCMaxLSNDate]
go
-- substitute the dates returned above here and see if this returns results
exec [spgGetCDCContract]...
November 15, 2011 at 7:29 am
Hi David,
Thanks to reply, yes I get data back when I run this last query against CDCDemo database:
DECLARE @from_lsn binary(10), @to_lsn binary(10)
SET @from_lsn =
sys.fn_cdc_get_min_lsn('dbo_contract')
SET @to_lsn = sys.fn_cdc_get_max_lsn()
SELECT *...
November 14, 2011 at 9:36 am
Hi David
I did try several times your demonstration but I couldn't get the stagingCdcContract Table populate with data.
When I run the stored procedure "Exec [dbo].[sPgGetCDCContract] @FromLSNDate=?, @ToLSNDate=?" I...
November 12, 2011 at 2:00 pm
Yes you right, my data files were not into the correct location.
Thanks 😉
October 28, 2011 at 10:01 am
Hi,
You have done a very good demonstration.
I did try what you have done in my visual studio 2005 but it doesn't work. It seems like the vb script...
October 28, 2011 at 7:33 am
Viewing 7 posts - 1 through 7 (of 7 total)