结果窗口的默认大小SQL Server Management Studio或替代方法

时间:2022-12-31 16:59:37

Any one who uses SQL Server 2008, or earlier variants, knows that when you run the commands in the window the results window pops up for the lower half of the screen. I do want to see my results but when only the first or top 10 results will do have the window is a waste. Is there a way I can change the default size of that window?

使用SQL Server 2008或更早版本的任何人都知道,当您在窗口中运行命令时,结果窗口会弹出屏幕的下半部分。我确实希望看到我的结果,但只有第一个或前10个结果才会有窗口是浪费。有没有办法可以更改该窗口的默认大小?

Also if this kind of functionality exists in VS 2008 or 2010 let me know and I'll abandon SQL Server Management Studio.

此外,如果VS 2008或2010中存在此类功能,请告诉我,我将放弃SQL Server Management Studio。

3 个解决方案

#1


6  

There's no way to change the default size of the results pane. You may want to try sending your results to a separate tab instead. You can adjust this setting for both Results to Grid and Results to Text.

无法更改结果窗格的默认大小。您可能希望尝试将结果发送到单独的标签。您可以为“结果到网格”和“结果到文本”调整此设置。

Under the Tools -> Options menu: 结果窗口的默认大小SQL Server Management Studio或替代方法结果窗口的默认大小SQL Server Management Studio或替代方法

在工具 - >选项菜单下:

#2


7  

Tools->Options->Environment->Fonts and Colors->Grid Results

工具 - >选项 - >环境 - >字体和颜色 - >网格结果

结果窗口的默认大小SQL Server Management Studio或替代方法

#3


0  

can't you just use this:

你不能只使用这个:

set rowcount 10

And you will only get the first 10 lines of your result.

而且你只会获得结果的前10行。

#1


6  

There's no way to change the default size of the results pane. You may want to try sending your results to a separate tab instead. You can adjust this setting for both Results to Grid and Results to Text.

无法更改结果窗格的默认大小。您可能希望尝试将结果发送到单独的标签。您可以为“结果到网格”和“结果到文本”调整此设置。

Under the Tools -> Options menu: 结果窗口的默认大小SQL Server Management Studio或替代方法结果窗口的默认大小SQL Server Management Studio或替代方法

在工具 - >选项菜单下:

#2


7  

Tools->Options->Environment->Fonts and Colors->Grid Results

工具 - >选项 - >环境 - >字体和颜色 - >网格结果

结果窗口的默认大小SQL Server Management Studio或替代方法

#3


0  

can't you just use this:

你不能只使用这个:

set rowcount 10

And you will only get the first 10 lines of your result.

而且你只会获得结果的前10行。