cancel
Showing results for 
Search instead for 
Did you mean: 

Non logged operations in MSA replication

03-01-2018 11:43 AM
432 views 1 comments
0 Likes
SAP Managed Tags
Subscribe

Hi All,

i am planning to setup MSA replication from one datacenter to another datacenter.

just wanted to clarify that whether non-logged operations (like Select into) gets replicated to secondary or not.

thanks in advance

0 Likes

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member89972
Active Contributor
0 Likes

Sybase replication is transction log based. It means the inserts will have to be logged.

Select into does minimal logging, so it will not be replicated.

But you could use two step method to get the tran log generated.

Step 1 : Create the table (in primary database if needed)

For MSA you will create empty replciate table in the target database if need be and include it in the replication scope.

Step 2 : Insert into the source table with column matching "select from" clause.

HTH

Avinash