Schema text case: lower vs upper

Discussion of open issues, suggestions and bugs regarding database management and development tools for SQL Server
Post Reply
nmummau
Posts: 1
Joined: Fri 14 Sep 2018 18:41

Schema text case: lower vs upper

Post by nmummau » Fri 14 Sep 2018 18:47

In my database named "IDS", I have a schema named "ids".
When I format something like this:

Code: Select all

select * from IDS.ids.Location l;
It is formatted to:

Code: Select all

SELECT
	*
FROM IDS.IDS.Location l;
I would like the schema to be lowercase. Like this:

Code: Select all

SELECT
	*
FROM IDS.ids.Location l;

alexa

Re: Schema text case: lower vs upper

Post by alexa » Mon 17 Sep 2018 12:53

There is no such an option. Though, you can add a suggestion on our UserVoice forum where other users can vote for it https://devart.uservoice.com/forums/87893-sql-complete

We collect and analyze the information from this forum in order to make a proper roadmap for the future product releases.

Post Reply