How can we help you today? How can we help you today?
James B
Are you referencing linked servers? If so, this is a known issue, and we have an existing enhancement request to provide an option for setting the transaction isolation level to use in your scripts (ref. SC-1318) / comments
Are you referencing linked servers? If so, this is a known issue, and we have an existing enhancement request to provide an option for setting the transaction isolation level to use in your scripts...
0 votes
Thanks for your post. Proxy servers can sometimes interfere with the deactivation process unfortunately, however if you contact us at support@red-gate.com with your serial number we should be able to work something out. / comments
Thanks for your post. Proxy servers can sometimes interfere with the deactivation process unfortunately, however if you contact us at support@red-gate.com with your serial number we should be able ...
0 votes
Thanks for your post. I've tried to replicate this myself with this kind of change: USE &#91;AW2&#93; GO /****** Object: Index &#91;IX_Test&#93; Script Date: 02/04/2011 11:48:05 ******/ IF EXISTS &#40;SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID&#40;N'&#91;dbo&#93;.&#91;Test&#93;'&#41; AND name = N'IX_Test'&#41; DROP INDEX &#91;IX_Test&#93; ON &#91;dbo&#93;.&#91;Test&#93; WITH &#40; ONLINE = OFF &#41; GO USE &#91;AW2&#93; GO /****** Object: Index &#91;IX_Test&#93; Script Date: 02/04/2011 11:48:05 ******/ CREATE NONCLUSTERED INDEX &#91;IX_Test&#93; ON &#91;dbo&#93;.&#91;Test&#93; &#40; &#91;TID&#93; ASC &#41; WHERE &#91;TID&#93; &lt; 0 WITH &#40;PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON&#41; ON &#91;PRIMARY&#93; GO Source Control correctly detected this (previously it was set to > 0 instead of < 0) The difference is I am using the EAP of version 2.0 - so you may wish to test this out and see if it makes any difference? You'll find details here: http://www.red-gate.com/MessageBoard/viewtopic.php?t=12298. The official version 2 is currently due out at the beginning of March (although this is subject to change of course) / comments
Thanks for your post. I've tried to replicate this myself with this kind of change:USE &#91;AW2&#93; GO /****** Object: Index &#91;IX_Test&#93; Script Date: 02/04/2011 11:48:05 ******/ IF EXI...
0 votes