Difference between revisions of "Increasing the Maximum Size of the Analyst E-Mail Address Field"

From support-works
Jump to navigation Jump to search
(Blanked the page)
Line 1: Line 1:
 +
== Increasing the Maximum Size of the Analyst E-Mail Address Field ==
  
 +
By default, the maximum number of characters you can have in an analyst's e-mail address, as stored in the ''swanalysts''  table, is 32. If you attempt to enter more than this in the relevant  field of the Analyst Properties form, you will find, on reading back  the  record, that the address has been truncated.
 +
 +
To extend the  maximum size, run the Interactive SQL utility by selecting Start >  All Programs > Hornbill Core Services > Interactive SQL and enter  the following SQL command:
 +
 +
<pre>use sw_systemdb
 +
alter table swanalysts modify contactE varchar (n);</pre>
 +
 +
where <code>n</code> is the required maximum number of characters.

Revision as of 08:55, 16 July 2015

Increasing the Maximum Size of the Analyst E-Mail Address Field

By default, the maximum number of characters you can have in an analyst's e-mail address, as stored in the swanalysts table, is 32. If you attempt to enter more than this in the relevant field of the Analyst Properties form, you will find, on reading back the record, that the address has been truncated.

To extend the maximum size, run the Interactive SQL utility by selecting Start > All Programs > Hornbill Core Services > Interactive SQL and enter the following SQL command:

use sw_systemdb
alter table swanalysts modify contactE varchar (n);

where n is the required maximum number of characters.