Profiler for Sql CE

6 浏览
0 Comments

Profiler for Sql CE

我想知道是否有类似于Sql Server Compact Edition的Sql Profiler?

我在桌面应用程序中使用SqlCE作为后端,并且拥有类似于此嵌入式数据库的sql profiler将非常棒。

或者至少有类似于NHibernate的show_sql功能的东西...

有什么想法吗?

谢谢

j.

0
0 Comments

在使用Sql CE时,我发现无法使用Profiler进行性能分析。尝试了一些方法,最终找到了解决方案。

问题的原因是Sql CE与传统的Sql Server有很大的不同。在Profiler中,没有提供与Sql CE相对应的连接类型选项,因此无法直接使用Profiler对Sql CE进行性能分析。

解决这个问题的方法是通过启用一些日志记录,以帮助我们进行性能分析。具体方法可以参考以下链接:http://msdn.microsoft.com/en-us/library/ms171949(SQL.90).aspx

根据我的尝试,我成功地配置了数据库并从SSMS连接上了Sql CE。需要注意的是,在连接类型中需要指定为“SQL Server Compact Edition”。然而,Profiler中并没有这个选项,并且在“数据库”字段中输入数据文件的路径也无效。

为了解决无法使用Profiler对Sql CE进行性能分析的问题,我们可以通过启用日志记录来达到相同的目的。

0
0 Comments

Profiler for Sql CE这个问题是因为Sql CE不包含任何用于分析的钩子,它是一个精简版的SQL,它没有服务,并且在您从应用程序中调用它后,我相当确定它不会监听任何端口。要解决这个问题,可以尝试安装一个带有分析器的标准版,这样您也许可以连接到CE实例。

0
0 Comments

Profiler for Sql CE这个问题的出现的原因是没有一个已测试的解决方案来解决这个问题。然而,有两个工具被提到可以解决这个问题。一个是Altiris Profiler,它是一个闭源且不出售的工具,可以通过创建一个命令的工厂并使用RealProxy来进行挂钩,实现轻量级的代码实现。另一个是dynaTrace,这是一个相对较新的工具,也可以解决这个问题。虽然某些情况下了这些工具,但是它们并不是可以直接使用的。

解决方法:

1. 使用Altiris Profiler,通过创建一个命令的工厂并使用RealProxy来进行挂钩,实现轻量级的代码实现。

public class CommandFactory

{

public ICommand CreateCommand()

{

ICommand command = new Command();

ICommand proxy = new CommandProxy(command);

return proxy;

}

}

public interface ICommand

{

void Execute();

}

public class Command : ICommand

{

public void Execute()

{

// Command execution logic here

}

}

public class CommandProxy : ICommand

{

private ICommand _command;

public CommandProxy(ICommand command)

{

_command = command;

}

public void Execute()

{

// Perform profiling actions before calling the actual command

// ...

_command.Execute();

// Perform profiling actions after calling the actual command

// ...

}

}

2. 使用dynaTrace工具来解决这个问题。

虽然这些解决方法被提到了,但是它们并不是可以直接使用的。对于Altiris Profiler来说,它是一个闭源且不出售的工具,因此无法使用。对于dynaTrace来说,虽然它可以解决这个问题,但是并没有提供具体的实现方法。

0