Create the first version of the Metadata Catalog by documenting the metadata from all 5 systems in the "Data Dictionary" and "Business metadata" tabs of the provided Sheets template. code example

Example 1: metadata

a set of data that describes and gives information about other data.

Example 2: meta data

It is used for to get column information not the actual data of column

Common methods are getColumnCount and getColumnLabel


//ResultSetMetaData itself does not contains any row data
        ResultSetMetaData rsmd = rs.getMetaData();
        
        
        // Metadata -- data about the data
        // ResultSetMetaData -- data about the ResultSet object that 
        contain our resulting rows and columns
        // for example column names, column counts .. and more

Tags:

Html Example