在 SQL Server Management Studio 中隐藏/筛选表

发布于 2024-08-14 04:00:29 字数 160 浏览 2 评论 0原文

我有一个 SQL 数据库,其中有数百个表,但我只需要使用其中的几个表。有没有办法在 SQL Server Management Studio 2008 中隐藏大部分表?另一种选择是创建某种只引用我感兴趣的表的分组。过滤表可以工作,但我无法添加 OR 逻辑运算符来包含多个条件。

谢谢, 马特

I have a SQL database that has several hundred tables in it, but I only need to work with a few. Is there a way to hide most of the tables from view within SQL Server Management Studio 2008? Another option would be to create some sort of grouping that would only reference the tables I'm interested in. Filtering the tables works, but I'm not able add an OR logical operator to include multiple criteria.

Thanks,
Matt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一袭水袖舞倾城 2024-08-21 04:00:29

在 Management Studio 中消除表干扰的一种方法是使用 microsoft_database_tools_support 属性来标记它们。这将导致 Management Studio 在“系统表”子文件夹下列出这些表。请注意,让用户表对用户可见通常是更好的做法。

我在 SSMS 中隐藏/取消隐藏表的脚本模板:
(剪切并粘贴到查询编辑器中,然后按 CTRL+SHIFT+M)

EXEC sp_addextendedproperty 
@name = N'microsoft_database_tools_support', 
@value = <Hide? , int, 1>, 
@level0type = 'schema', 
@level0name = N'<Schema Name, sysname, dbo>',
@level1type = 'table', 
@level1name = N'<Table Name, sysname, ?>'

One way to get tables out of the way in management studio is to mark them with the microsoft_database_tools_support property. This will cause management studio to list those tables under the "System Tables" subfolder. Note that leaving user tables visible to users is usually better practise.

My script template to hide/unhide a table in SSMS:
(Cut'n'paste into query editor, then CTRL+SHIFT+M)

EXEC sp_addextendedproperty 
@name = N'microsoft_database_tools_support', 
@value = <Hide? , int, 1>, 
@level0type = 'schema', 
@level0name = N'<Schema Name, sysname, dbo>',
@level1type = 'table', 
@level1name = N'<Table Name, sysname, ?>'
于我来说 2024-08-21 04:00:29

一种方法是创建一个只能访问您感兴趣的表的用户。
然后就这样连接。

One way would be to create a user which only has access the tables you're interested in.
Then connect as that.

苏大泽ㄣ 2024-08-21 04:00:29

我意识到这是一个老问题,但是在 SQL Server Managaement Studio 2008 中,您可以通过右键单击表、视图、存储过程对象“文件夹”并单击 Filter > 来按名称、架构、所有者或创建日期进行筛选;过滤器设置

I realize this is an old question, however in SQL Server Managaement Studio 2008, you can filter by name, schema, owner, or creation date by right clicking on tables, views, stored procedures object "folders" and clicking Filter > Filter Settings

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文