Viewing 15 posts - 346 through 360 (of 449 total)
You can set the FK's to use the "Not for Replication" option. This will prevent the FK errors (referential integrity) during replication since replication moves the data in batch's. It...
January 12, 2006 at 5:14 am
ERWIN data modeler is the "best" product. It's expensive and may be overkill for what you're trying to accomplish.
January 4, 2006 at 5:00 am
Use Merge Replication
Both sites can continue working if there is a communication breakdown. Transactions are written to replication tables/conflict tables.
In the "Snapshot Properties", there is an expiration setting for dropping...
December 21, 2005 at 5:37 am
Consider writing many small sprocs which are called from 1 main sproc. This way you still have the flexibility of isolating the individual functions (as mentioned above), but you will...
November 18, 2005 at 5:15 am
post the DDL of the 2 related tables
November 16, 2005 at 11:38 am
Concatenated PK's are sometimes necessary. Before I comment more, I too would like to see the example you're talking about.
November 15, 2005 at 5:19 am
You cannot convert a default instance to a named instance. You will need to create a new named instance, as previously mentioned.
Yes, you would detach/attach from the default instance to...
November 10, 2005 at 6:28 am
I posted in your other thread
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=234505
November 3, 2005 at 5:54 am
You'll need to use the SQL
CASE
or
COALESCE
to replace Oracle DECODE
November 3, 2005 at 5:51 am
You'll want to use the IMAGE datatype.
Note: We have an on-going project where we are either creating or uploading pdf's. Prior to this project starting we conducted research as to the...
November 3, 2005 at 5:48 am
According to the BOL, the sp_start_job will accept @job_name or @Job_id. I have been using @Job_Name as the parameter to pass.
set @Job_Name = (select name from sysjobs where name like...
October 31, 2005 at 10:15 am
1. Snapshot won't create the guid as a erroneously stated, the merge replication will, which I think you may have mentioned for earlier in the thread about 2 other prod...
October 31, 2005 at 5:59 am
1. I actually have a job that starts replication, if it has stopped. We are running the agent continuously, but essentially I use this sproc:
EXEC @ERR = sp_start_job @job_name = @JOB_NAME
I...
October 28, 2005 at 10:26 am
Viewing 15 posts - 346 through 360 (of 449 total)