01-22-2007 04:58 PM
01-23-2007 12:49 PM
Let me see if I understand what you are saying:
Basically you want to take all of the information that is logged to the database and create one table that will log all this information? So 1 database with 1 table in it that contains Recordsets and Fields for all of the different information you can store when executing sequences?
The tables are created by your schema. The default schema is set up to minimize disk usage. If you had one table that had a Recordset with information about each step as well as information about each UUT then you would have a bunch of Recordsets that were only half filled with information therefore wasting space on your disk.
You can definitely create a schema that will log everything to one table in one database but it is not really recommended. Also you would have to create a Recordset that contained every Field available. So you would have to go to each table in your database and get all the Fields and then create a Recordset with all those Fields. If you took the TestStand course and have the manuals then in TestStand I Chapter 11 there are examples that show how to change the schema. If you don't have those manuals then the Reference Manual for TestStand talks about Database Logging in Chapter 6.
Regards,
01-23-2007 01:01 PM - edited 01-23-2007 01:01 PM
Message Edited by Roons1159 on 01-23-2007 01:02 PM
01-24-2007 05:07 PM