nicholas-ross / SSMS-Schema-Folders

This an extension for SQL Server Management Studio (SSMS). It groups sql objects in Object Explorer (tables, views, etc.) into schema folders.
GNU General Public License v2.0
162 stars 34 forks source link

Renaming node not working properly in SSMS v18.12.1 #38

Open Crefix opened 1 year ago

Crefix commented 1 year ago

image image

nicholas-ross commented 1 year ago

It is the Use Nodes.Clear option that is causing this. This option is to help speed up changes to very large object lists, so it takes a few shortcuts (it also currently stops the second folder level from working).

The recommended minimum value (if not set to zero) is 2000 or greater. It was added while trying to speed up a list of 10000 objects. You don't need to set it unless you notice performance issues and should start with higher values.

In the next version I will add some additional notes to the description to highlight the limitations.

Crefix commented 1 year ago

Thank you! It worked 😌