Viewing 15 posts - 46 through 60 (of 120 total)
Stepping through the code using SQL 2008 shows that sp_helpdistributor has a "feature" where it will return nothing if it doesn't find an entry in MSdistpublishers, even if it does...
October 4, 2010 at 3:31 pm
The link is from SQL Server 2008 R2, but you should find this under a similar path in books on line: SQL Server Installation > Installing SQL Server > Installation...
September 28, 2010 at 12:29 pm
Yes, that is exactly what we do now. We Call sp_add_jobstep with @command = N'EXECUTE master.dbo.xp_sqlmaint N''-D ' + DB_NAME (DB_ID ()) + ' -WriteHistory -VrfyBackup -BkUpOnlyIfClean -CkDB -BkUpMedia...
August 4, 2010 at 11:10 am
Muti-part naming works, but only if you submit it in single quotes, i.e.
sp_refreshview '[tms].[v_DB_ID]'
August 4, 2010 at 10:05 am
Not sure about catching errors, but as far as running it under SQL 2005 (and 2008), you can substitute "sqlcmd" for "osql". Of course "osql" still works for now...
July 28, 2010 at 12:48 pm
Replying to my own post just FYI.
The workaround for the bug (which appeared in SQL 2008) is to update the entries in the SYSARTICLES table directly, looking for a pattern...
July 7, 2010 at 2:55 pm
Yup, use them extensively. The biggest pitfall encountered so far is a bug introduced in SQL 2008 that causes non-dbo schema procedures to be created with a prefix of...
July 7, 2010 at 2:44 pm
Noel,
I think we are saying the same thing, but not understanding each other.
I assumed that the LogReader agent would "break" the transaction boundary and bundle no more than 10000 commands...
April 29, 2010 at 2:16 pm
Good assumption (I think). There is no sysmergearticles in the database in question.
Customer had "piggybacked" some replication of an unknown nature on our delivered system that uses transactional replication....
April 29, 2010 at 2:02 pm
Don't know enough to truly answer the question, but..
IF the entire database (all objects) is identical in structure, and IF all the tables are fully published, then you could:
1)...
April 29, 2010 at 1:18 pm
The most likely cause is (because you only replicate inserts), a primary key value was updated or deleted on the primary, then the "free" key value was reused by an...
April 29, 2010 at 12:43 pm
You stated " enabled this option by typeing this command -MaxCmdsInTran 10000 at log reader and distribution agent job parameters after -continuous".
There is no MaxCmdsInTran parameter documented for the distribution...
April 29, 2010 at 12:33 pm
Nope, not in sysarticles. If you try to drop it anyway, you get error "The article...does not exist".
Any other ideas?
April 29, 2010 at 11:49 am
Yup, I know it is old, but I found it trying to figure out how to find instances on my desktop. It led me to figure out where in...
April 20, 2010 at 8:41 pm
The example will find all instances for a 32 bit host, or for a 64 bit host with only 64 bit instances, BUT...
To list the 32 bit instances that may...
April 20, 2010 at 7:22 am
Viewing 15 posts - 46 through 60 (of 120 total)