<font size=2 face="sans-serif">I have this statement in each result file
for ny DB. I am currently accessing a other than default schema on a DB2
server, which has no way to set a different schema as default for a user.</font>
<br>
<br><font size=2 face="sans-serif">__PACKAGE__-&gt;table(&quot;ACCOUNT_DETAILS&quot;);<br>
</font>
<br>
<br><font size=2 face="sans-serif">To get my data out of the DB, I have
been forced to change this to </font>
<br>
<br><font size=2 face="sans-serif">__PACKAGE__-&gt;table(&quot;HCDB_TEST.ACCOUNT_DETAILS&quot;);</font>
<br>
<br><font size=2 face="sans-serif">Specifying the schema. Unfortunately,
anytime I need to re-create my model all these edits will go away. &nbsp;I
do not want to edit 52+ files everytime I need to reload.</font>
<br>
<br><font size=2 face="sans-serif">My question is, is there a way to have
the string &quot;HCDB_TEST&gt;&quot; prepended when making a call to any
model?</font>
<br>
<br><font size=2 face="sans-serif">Whet would it look like and where should
it be put?</font>
<br>
<br><font size=2 face="sans-serif">Can I re-define the table below the
&quot;Do Not edit&quot; line? Or would it be better to add something more
global in nature?</font>
<br>
<br>
<br>