Viewing 15 posts - 31 through 45 (of 107 total)
the repl Distribution Agent (DA) pushes from Distributor (or pulls from sub), taking the initial outload from snapshot files (incl any post-snapshot.sql), and will then process subsequent changes (unless just...
July 9, 2008 at 9:25 am
1. create a pub with at least one article
2. generate replication script (drop+create)
3. edit script to have many articles
4. execute script
although the initial script looks pretty...
July 9, 2008 at 8:03 am
repl is a big subject so sometimes a simple problem statement hides lotsa details and assumptions!
- glad you've done the obvious already
supposing simple case of
sourceserver (SS)
source db (DS)
schema (KS)
table (TS)
publication...
July 9, 2008 at 7:47 am
can change existing articles (if DDL=1) or add new ones but won't automagically appear at each sub
I find it convenient (to avoid the rip&replace) to add new table articles in...
July 9, 2008 at 7:19 am
it IS possible to replicate (e.g. transactional) tables with different schemas, but I have also experienced problems (eg. we have tblFund as articles in 3 of our pubs). Using the...
July 9, 2008 at 6:59 am
moderately clunky, but this might do
declare @remver sql_variant
select @remver=REMVER from OPENQUERY(a_linked_server,'select REMVER=serverproperty(''productversion'')')
select @remver
although many better ways with SMO, ADO.NET etc
HTH
Dick
June 19, 2008 at 7:58 am
also [cheaper?] at DevX [and more other interesting stuff]
http://www.devx.com/premier/Door/17532
Dick
June 17, 2008 at 6:57 am
I would like to believe that most of the SQL wisdom is within Books OnLine (BOL) rather than just in the heads of the battle-scarred soldiers like Brian [the Duck]...
June 16, 2008 at 6:54 am
I agree with Michael.
If you have all db's on the same instance [cluster in your case] then probably no more/less performance, but you lose the Declarative referential integrity (DRI) that...
June 11, 2008 at 7:25 am
as you will know, there are UI changes from SQL2000 (SEM) to SQL2005 (SSMS), but also fundamental ones too under the covers (incl replication).
When contemplating a migration you should use...
June 11, 2008 at 7:07 am
Thanks again, Dick. I just checked-- we do have enough space for the distribution database.
I have one more question ( I am asking for too much). So the whole...
June 11, 2008 at 2:07 am
that is correct, the Snapshot writes flat-files on the Distributor(?) which the DA's then read
- there are doubtless very few rows written to tables in distribution db
worth checking that you...
June 10, 2008 at 11:13 am
yup, 1399 is RTM
you should be on SP2 (9.0.3159), unless you want to stick your neck out for "Cumulative Update 6"
http://support.microsoft.com/kb/946608/
Dick
June 10, 2008 at 11:08 am
Your initial config has been
P1 => D->Swhere P1 and D are the same box
and new config
P2->D->S
so I suggest that you first script out the existing publication (drop and create parts)
-...
June 10, 2008 at 10:35 am
there are several replication agents
LogReader Agentfrom LDF -> distribution db
Snapshot Agentgenerate the flat-files (e.g. *.bcp)
Distribution Agentdeploy initial snapshots, then subsequent changes ex distribution db
where you are actually commenting on speed...
June 10, 2008 at 10:15 am
Viewing 15 posts - 31 through 45 (of 107 total)