Microsoft SQL Server Management Studio 2008 has several built in tab text options:
You can shorten tabs by omitting parts like server name or login name – SQLQuery1.sql was created with default settings, SQLQuery3.sql was created with database, login and server names off. These options don’t exist in SSMS 2005.
How can I change SqlQuery1.sql to let’s say sql1? I need the database name because I’m constantly changing database connections to query the different database so I need to know where I’m connected to.
Comment by keith — January 30, 2012 @ 8:41 am
Keith,
You can transform SQLQuery1.sql to SQL 1 with the following Title grouping regex in Tabs Studio options: (?<Name>SQL)Query(?<Ext>\d+)
But it really stretches current Tabs Studio abilities and will not work if you want to keep database name.
Comment by Sergey Vlasov — January 31, 2012 @ 6:58 am