web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

Container Data Type SQL

(0) ShareShare
ReportReport
Posted on by

I am trying to select the Info field from BatchHistory Table.. somehow this is treated as varbinary, so I tried casting this as varchar but its still not how as I wanted it. Can anyone guide me on how to convert this as same as info log?

*This post is locked for comments

I have the same question (0)
  • Verified answer
    Anton Venter Profile Picture
    20,670 Super User 2026 Season 1 on at

    The Info field in the BatchHistory table is of type container which is a varbinary type in the SQL database. You will have to use X++ code to extract the information from the binary data. The following code is a crude example of how to extract the original data. See the infoLog.viewBuild method for more details on how AX does it.

    static void AV_batchHistoryShowInfo(Args _args)
    {
        SysInfologEnumerator    enum;
        BatchHistory            batchHistory;
        
        select firstOnly batchHistory; //for demonstration purposes only
        
        enum = SysInfologEnumerator::newData(batchHistory.Info);
        
        while (enum.moveNext())
        {
            info(enum.currentMessage());
        }
        
    }
  • Community Member Profile Picture
    on at

    Thank you. I guess there is no way around it for SQL.

  • Anton Venter Profile Picture
    20,670 Super User 2026 Season 1 on at

    You are welcome. Correct, there is no way around it for SQL.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Joris dG Profile Picture

Joris dG 5

#2
Andrew Jones a1x Profile Picture

Andrew Jones a1x 2

#3
GL-01081504-0 Profile Picture

GL-01081504-0 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans