Comments
Sort by recent activity
I too have been experiencing this same issue. / comments
I too have been experiencing this same issue.
Anu Deshpande wrote:
Thanks for the update.
Are you using VPN to connect to the remote database?
And also let us know the detailed version of SQL Prompt?
You can know the detailed version of SQL Prompt by navigating to SQL Prompt --> About SQL Prompt and version number is displayed on bottom right (just above Close button.)
Kindly let us know above details that will help us to investigate further.
I am not using VPN to connect.
The version of SQL Prompt is 3.9.0.43. / comments
Anu Deshpande wrote:
Thanks for the update.
Are you using VPN to connect to the remote database?
And also let us know the detailed version of SQL Prompt?
You can know the detailed version of SQL ...
That is wonderful!! Thanks again Brian.. You are the best!! / comments
That is wonderful!! Thanks again Brian.. You are the best!!
In version 2.1.1.3, this issue is still occurring:
RedGate.SQLCompare.Engine.ExtendedPropertyValue / comments
In version 2.1.1.3, this issue is still occurring:
RedGate.SQLCompare.Engine.ExtendedPropertyValue
Daniel Handley wrote:
Hi Gary
The problem is probably due to the text in row value being larger than the page size. If you don't have any entries who’s length is greater than 5193 you will still receive the error.
Here is a statement to execute on the database to check the text in row value.
exec sp_MsForEachTable "SELECT OBJECTPROPERTY(object_id('?'),'TableTextInRowLimit') AS '?'"
Once you have found the problem you can use the store procedure sp_tableoption and change the option value 'text in row' to less than 8108.
Regards
Dan
I have run the SP and I have no tables where that property has been set. (all return 0). Any other ideas?
Peace,
Gary Hampson / comments
Daniel Handley wrote:
Hi Gary
The problem is probably due to the text in row value being larger than the page size. If you don't have any entries who’s length is greater than 5193 you will sti...