/*--------------------------------------------------------------------------------	*
* program:     metadata3.sas                                   						*
* Description: Verify that import captures all attributes of the dataset 			*
*				 and associated variables.													*
* Parameters:  source = source datasets													*		 		
*              metadb = metadata database library 										*
*              search = search criteria 													*
*              task = database management tasks   										*
*              output = output report	                                      	   	*					
* By:          Nam Phuong, 8/2/2005														*
*---------------------------------------------------------------------------------	*/
libname mylib "..\data\metadata";
%metadata (source = mylib.ae, 
           metadb = mylib.metadb, 
           search = ,
           task = update,
           output = );

