Tracing and debugging

You can display interim results during testing or when isolating a problem. The stored procedures include examples of this which are commented out.

You can also insert your own stored procedures. For example:

/*
print char(13) + convert(varchar(19), sysdatetime(), 120) + 
  ': display some of the ATT_ATCDATA_EMPLOYEE_CUSTOM table records' ;
select 
  top 100
    *
  from 
    [dbo].[ ATT_ATCDATA_EMPLOYEE_CUSTOM]
;
*/