从服务打开表
我可以从 Windows 服务打开 ads_err 表吗?
Can I open the ads_err table from a windows service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以从 Windows 服务打开 ads_err 表吗?
Can I open the ads_err table from a windows service?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的。您应该能够像打开任何其他表一样打开它。您没有提及您正在使用的开发环境(客户端类型),因此我无法针对您的情况提供更多详细信息。
连接到服务器后,所需要做的就是提供错误日志的完整路径。如果您不想对路径进行硬编码(可能希望避免这种情况),您可以使用 sp_mgGetConfigInfo()。
Error Log Path
字段就是您想要的字段。您还可以通过包含路径来使用 SQL 读取错误日志。例如,
从 [c:\ads_err] 选择 *
。Yes. You should be able to open it just like any other table. You don't mention what development environment (client type) you are using, so I am not able to give more details specific to your situation.
After you have a connection to the server, all that is necessary is to supply the full path to the error log. If you don't want to hard code the path (probably desirable to avoid that), you can retrieve it with sp_mgGetConfigInfo(). The
Error Log Path
field is the one you would want.You could also read the error log with SQL by including the path. For example,
select * from [c:\ads_err]
.