SQL 扩展属性和 BCS Sharepoint 2010

发布于 2024-10-15 01:59:24 字数 203 浏览 8 评论 0原文

我知道您可以在 SharePoint 2010 中使用 BCS 连接到 SQL 数据库,但我想知道是否可以导入/连接表的扩展属性,而不是将表信息与 SharePoint 连接在 SQL 到 SharePoint 中???

换句话说,如何在 SharePoint 中查看 SLQ 数据库表的扩展属性?我知道您可以查看数据,但是扩展属性呢?谢谢!

I know you can connect to SQL Databases using BCS in SharePoint 2010 but what I want to know is if instead of connecting the table information with SharePoint, is it possible to import/connect the Extended Properties of the tables in SQL to SharePoint???

In other words, how can I view extended properties of SLQ Database tables in SharePoint? I know you can view the data, but what about extended properties? Thanks!

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

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

发布评论

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

评论(2

梦断已成空 2024-10-22 01:59:24

最简单的事情是用这个 sql 在数据库中创建一个视图:

select tab.table_name, ex.name, ex.value
from sys.extended_properties ex
inner join information_schema.tables tab on ex.major_id = object_id(tab.table_name)

那么它应该只是一个标准的 bcs 连接(尽管我还没有测试过)

Easiest thing would be to make a view in the database with this sql:

select tab.table_name, ex.name, ex.value
from sys.extended_properties ex
inner join information_schema.tables tab on ex.major_id = object_id(tab.table_name)

Then it should be just a standard bcs connection (though i haven't tested it)

别在捏我脸啦 2024-10-22 01:59:24

这样做的问题是它不可编辑,它只是一个视图(另外,值不会出现在 SharePoint 中,因为它是一个对象(复杂)并且不受 SP 支持)。

The problem with this is that it is not editable, it is just a VIEW (plus, Value does not appear in SharePoint since it is an Object (complex) and not supported by SP).

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