Viewing 15 posts - 316 through 330 (of 5,103 total)
Nothing Is Impossible
Some things are.
March 11, 2009 at 3:41 pm
If not on a cluster take a look at this: http://www.sqlservercentral.com/Forums/Topic661028-149-1.aspx
March 11, 2009 at 3:26 pm
Officially you can't do that!
there are many other scripts on this site that could probably help you.
What exactly are you trying to do?
March 11, 2009 at 3:22 pm
Nevermind I need some coffee :d
March 11, 2009 at 2:54 pm
Are you sure only **one** insert is going at a time ?
March 11, 2009 at 1:57 pm
In SQL 2005 ALTER TABLE ... ADD .. will propagate the DDL IF the publication was enabled to do it.
Note the default is ON ( so you may be lucky...
March 11, 2009 at 1:48 pm
I vote for Log shipping as well.
I did selected "mirroring" because of all the hype around it but it is not IMO easier because of all the "new" concepts...
March 11, 2009 at 9:51 am
This is a BAD formulated question. I got right because I guessed the intentions of the author. The constraint DOES gets created on the subscriber just not enforced!
If you don't...
March 11, 2009 at 9:46 am
Try using:
BEGIN DISTRIBUTED TRANSACTION;
Instead of BEGIN TRANSACTION.
Note
1. MSDTC must be configured correctly on both servers for this to work.
2. Keep in mind that distributed transactions are expensive operations.
Good Luck
March 10, 2009 at 4:25 pm
Can you tell us why are you replicating in the first place?
Why don't you write directly to the "replica" table, that way you don't need replication at all 🙁
March 10, 2009 at 4:01 pm
bill (3/6/2009)
This replication was being re-established after the Publisher was rebuilt.
I...
March 6, 2009 at 4:21 pm
sunny Brook (3/6/2009)
Manually Kick off the Logshipping-backup log job onyour primary server;
when it is finished, manually start the logshipping copy job;
then start the...
March 6, 2009 at 3:54 pm
Or cast at table *creation time*
drop table #temp
select distinct Empid, jobid , CAST(salary AS decimal(16,2)) as salary, age
into #temp
....
March 6, 2009 at 10:38 am
SQL 2005 by default uses SCALLs for updates.
SQL 2000 by default uses XCALLs for updates.
March 6, 2009 at 10:14 am
Viewing 15 posts - 316 through 330 (of 5,103 total)