Viewing 12 posts - 1,456 through 1,468 (of 1,468 total)
Removed subscription at subscriber then at publisher.
Added at publisher then at subscriber.
Still no info for subscriber listed.
Gonna start following sys.sp_ trail to see what gets done. Maybe error gracefully...
February 24, 2012 at 7:43 am
MysteryJimbo (2/24/2012)
Thats where I believe it is done. I'm wondering if by overriding the host in sp_addmergesubscription its done something different. Have you tried it without that parameter?
Originally...
February 24, 2012 at 7:36 am
MysteryJimbo (2/24/2012)
Is the server register in the publisher?
exec sp_helpsubscriberinfo
Also check for an entry in sys.servers as it should have one on the publisher
exec sp_helpsubscriberinfo comes back empty
select * from...
February 24, 2012 at 7:16 am
MysteryJimbo (2/24/2012)
I did find this on technet as well which suggests its security related in someway but the wording to me suggests...
February 24, 2012 at 6:52 am
MysteryJimbo (2/24/2012)
I did find this on technet as well which suggests its security related in someway but the wording to me suggests...
February 24, 2012 at 6:50 am
SELECT @FromDate = ISNULL(@FromDate, SELECT MIN(DateCreated) FROM #t))
, @ThroughDate= ISNULL(@ThroughDate, SELECT MAX(DateCreated) FROM #t))
SELECT *
FROM#t
WHERE DateCreated BETWEEN @FromDate AND @ThroughDate
February 24, 2012 at 6:05 am
;with baseData as (
select modifydate, fieldname, fieldvalue, modifyuser, seq = ROW_NUMBER() over (partition by fieldname order by modifydate)
from ChangeHistory
)
select T1.modifydate, T1.fieldname, OldValue = T1.fieldvalue, newValue = isnull(T2.fieldvalue, '------'), T1.modifyuser
from...
February 24, 2012 at 5:54 am
Thanks Bob
I agree that the actual number is irrelevant. However, the customer wants sequential numbers, so that's what he gets.
Regards
Des Norton
April 28, 2009 at 8:59 am
Jack, Christopher
Concurrency is an issue. The transaction is controlled by the application, and the audit table will be hit quite hard.
We will chnage the Identity field to a regular...
April 28, 2009 at 8:35 am
Thanks Christopher
That does the trick.
April 28, 2009 at 8:21 am
Mihael, Philip
Thanks of the input.
I have tried using the SPs to add the subscription manually, but still no luck.
I have carte blanche on the publisher/distributor (my server), but need lots...
November 13, 2007 at 7:40 am
Viewing 12 posts - 1,456 through 1,468 (of 1,468 total)