SQL Server 和 C/C++ 中的内存使用情况
有没有办法使用 C/C++ 和 SQL Server 2008 避免写入文件,并将表保留在主内存中?
Is there a way to avoid writing to file, and keep a table in main memory?, using C/C++ and SQL Server 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是是否有 SQL Server 的内存版本(例如 TimesTen for Oracle),那么答案是否定的。如果您指的是可以添加到应用程序中的“小型”数据库,请参阅 MS SQL Compact Server。
如果您的意思是使用内存映射文件而不是数据库,请参见此处:http://msdn.microsoft.com/en-us/library/system.io.memorymappedfiles.memorymappedfile(VS.100).aspx
否则,请你的问题更具体!
马里奥
If you mean whether there is an in-memory version of the SQL Server, like TimesTen for Oracle the answer is no. If you mean a 'little' database that you can add to your App see MS SQL Compact Server.
If you mean using memory mapped files instead of a database, see here: http://msdn.microsoft.com/en-us/library/system.io.memorymappedfiles.memorymappedfile(VS.100).aspx
Otherwise, please be more specific in your question!
hth
Mario