Note: You can use Microsoft Excel to create a spreadsheet laying out your field information, and then import that Excel spreadsheet directly into your SQL Server.
Important: The Laserfiche Server service must be able to access the table or schema you are using.
Before you begin creating your external table, you should plan what information it will contain. See Planning Dynamic Fields for more information.
The following set of instructions explains how to create an external table in Microsoft SQL Server Management Studio. It is intended as a model set of instructions only. If you are using another database management system or database management tool, the instructions may differ.
To create an external table in Microsoft SQL Server Management Studio
Important: If you select another SQL Server, your external table will not work with your repository.
Note: You can use your Laserfiche repository database, but it isn't necessary to do so.
Example: An administrator is creating a table of employees for a Human Resources template. He creates four columns. The first has the column name "Employee Name," the type "nvarchar(64)", and does not allow nulls. The second has the column name "Department," the type "nvarchar(32)", and does not allow nulls. The third has the column name "E-mail Address," the type "nvarchar(64)", and allows nulls as some employees do not have listed email addresses. The fourth has the column name "Employee ID," the type "int", and does not allow nulls. The table definition would look like the following example.
Example: Once the administrator in the above example has created the table definition, he can begin filling in the columns. The table would look like the following example.