2

如何为语义日志记录设置 SQL Server 数据库。是否需要提前创建记录信息的表?如果是,要使用的架构是什么。

我有以下代码:

var listener = new ObservableEventListener();
string connectionString = @"Data Source=nibc2025;Initial Catalog=TreeDataBase;Integrated Security=True;User Id=sa;Password=nous@123";

listener.EnableEvents(AuditingEventSource.Log, EventLevel.LogAlways, Keywords.All);
databaseSubscription = listener.LogToSqlDatabase
(
    "Test",
    connectionString,
    "Traces",
    Buffering.DefaultBufferingInterval,
    1,
    Timeout.InfiniteTimeSpan, 500
);

// The following one line of code is not part of this function.
// It is just added here to show this is how I log my information.
// Inside LogInformation method I call the 'Write' method
AuditingEventSource.Log.LogInformation("sgsgg", "sgsg");

databaseSubscription.Sink.FlushAsync().Wait();
4

2 回答 2

3

好吧,由于这个线程在谷歌上获得最多的关于语义登录到 SQL DB 甚至 SLAB 的点击......

创建数据库的脚本在这里

\packages\EnterpriseLibrary.SemanticLogging.Database.1.0.1304.0\scripts

要创建 EventSource 和 Fire the Blocks,请在此处提供信息,以获取快捷方式和快速修复解决方案

http://entlib.codeplex.com/discussions/540723

问候,

于 2015-04-01T08:09:52.633 回答
1

好的。我得到了它。该脚本位于包文件夹中。我忽略了这一点。

于 2014-10-30T12:31:28.453 回答