How to get the partitions data from Azure ADX through SQL Server emulation?
Shanmuganandha Vadivel Mahesh Kumar, FG-210
0
Reputation points
I'm looking for support regarding viewing my partition data in Azure ADX through the jdbc SQLServer emulation. By following this page (https://learn-microsoft-com.translate.goog/de-de/azure/data-explorer/sql-server-emulation-overview?_x_tr_sl=de&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=sc), I'm building a SQLServer emulation for my data in Azure ADX. I'm using the following query to retrieve the partition details of my table ->
select distinct PARTITION_NUMBER from SYS.DM_DB_PARTITION_STATS where object_id = OBJECT_ID(?) and partition_number > 1
But I'm getting this error
There is no table '..sys.dm_db_partition_stats'
, which I couldn't understand why. Because, the partiton exist and I can view it through the query editor of Azure ADX.
Sign in to answer