我有一个示例sql服务器DBmdf
文件。我需要将文件转换为 excel 或搜索的 csv.i 但没有得到正确的解决方案。最后我从python中找到了一个包asammdf
我不知道该怎么做,我是python和sql服务器的新手。
我的尝试
from asammdf import MDF, Signal
import numpy as np
with MDF(r'sample.mdf') as mdf_file:
# do something
export('csv', mdf_file, oned_as)
我得到了错误
File "test.py", line 6
export('csv', mdf_file, oned_as)
^
IndentationError: expected an indented block
如果有人给我纠正。或者请指导我如何将mdf转换为excel或csv与Windows相关。
asammdf 处理汽车测量数据格式(见 https://www.asam.net/standards/detail/mdf)
您需要寻找另一个实现 sql mdf 文件的包