LogParser 可以输出到 Azure SQL 吗?
Can LogParser output to Azure SQL?
Azure SQL tables 需要聚簇索引,如果不存在则不会接受插入。如果存在,LogParser 会抱怨 select 列表中的列数与目标 table.
中的列数不匹配
请问有什么方法可以把这个圆变成平方吗?也许在 LP 的 select 列表中嵌入一个表达式,例如“SELECT DateTime,Thread,Level,Logger,Message,Exception,(select max(id)+1 from loggerTbl)...
将普通的旧 Azure 日志解析到 sql 上帝希望它们成为的地方变得异常困难。
Azure SQL tables require a clustered index and will not accept insertions if one is not present.
这不再是事实。 Azure SQL DB v12 不再有此限制。将您的数据库移动到新层之一(基本、标准),您的数据库将升级到 v12。
Azure SQL tables 需要聚簇索引,如果不存在则不会接受插入。如果存在,LogParser 会抱怨 select 列表中的列数与目标 table.
中的列数不匹配请问有什么方法可以把这个圆变成平方吗?也许在 LP 的 select 列表中嵌入一个表达式,例如“SELECT DateTime,Thread,Level,Logger,Message,Exception,(select max(id)+1 from loggerTbl)...
将普通的旧 Azure 日志解析到 sql 上帝希望它们成为的地方变得异常困难。
Azure SQL tables require a clustered index and will not accept insertions if one is not present.
这不再是事实。 Azure SQL DB v12 不再有此限制。将您的数据库移动到新层之一(基本、标准),您的数据库将升级到 v12。