创建aspnet_membership表,请需要脚本

发布于 2024-08-29 11:05:31 字数 109 浏览 5 评论 0原文

有人有 aspnet_membership 表的创建脚本吗?

我在 MS 网站上找到了它的数据结构,但找不到在网络上任何地方创建它的脚本。

预先非常感谢

J

Does anyone out there have a create script for aspnet_membership table?

I found a data structure for it on MS site but cannot find a script to create it anywhere on the web.

Many thanks in advance

J

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

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-09-05 11:05:31

aspnet_regsql 可以使用正确的选项为您发出脚本。

一个基本示例:

C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe -S server -d database -E -ed

生成脚本的优点是您可以指定要使用的模式和所需的功能等内容,并且它将自定义和编译单个脚本。

无需将其拼凑在一起,也无需承担所涉及的固有风险。

使用 /? 运行它以获取使用情况列表。

aspnet_regsql can emit the script for you using the correct options.

a basic example:

C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe -S server -d database -E -ed

The advantage to generating the script is that you can specify things like the schema to use and the features that you need and it will customize and compile a single script.

No need to cobble one together and the inherent risks involved.

Run it with /? to get a usage listing.

轮廓§ 2024-09-05 11:05:31

该脚本随 .NET 框架一起安装。在这里寻找它:

C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallMembership.sql

请注意,此脚本假定首先运行 InstallCommon.sql(位于同一目录中)。

The script is installed with the .NET framework. Look for it here:

C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallMembership.sql

Note that this script asumes that InstallCommon.sql (found in the same dir) was run first.

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