Please guys I need your help on this one I am replicating nav data from one nav database to another on sql server 2005. But when I try to run the replication data on the G/L Entry for instance I get error message:
8171,"42000",[Microsoft][ODBC SQL Server Driver][SQL Server]Hint 'noexpand' on object 'dbo/....Entry$VSIFT$10'is Invalid.
8171,"42000",[Microsoft][ODBC SQL Server Driver][SQL Server] Statements(s) could not be prepared."
Please can any help me resolve this.
Thanks in advance.
0
Comments
You must replicate all data betwen databases (including Views)
http://www.nav.info.pl (The first polish blog about Microsoft Dynamics NAV)
@Rafal I tried your approach but I still have the same error.
@bbrown the reason why am replicating data is to get Navision data from one SQL server to another and in case one crashes we can switch to the other without delays. Please what do you recommend as the right solution in case this does not work.
Thanks in advance guys.
Thanks again.
CREATE UNIQUE CLUSTERED INDEX [VSIFTIDX] ON Your_view
(
Columns Go here
)
WITH (PAD_INDEX = OFF......etc)