Your code
bb = Load Text File( "I:\E\00820070306.zst", blob() );
ymd = Blob To Matrix( bb, "uint", 4, "little", 8 );
is creating a 2 dimensional matrix you are calling "ymd" with the values converted to decimal values. All you have to do, is to create a new data table, then create a new column and set the values in the new column to the first column in the matrix ymd.
Names Default To Here( 1 );
bb = Load Text File( "I:\E\00820070306.zst", blob() );
ymd = Blob To Matrix( bb, "uint", 4, "little", 8 );
dt = New Table( "zst" );
dt << New Column( "col 1" );
Column( dt, 1 ) << set values( ymd[0, 1] );
Then just repeat it for the remaining 7 columns in the matrix
Jim