<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : error &#111;n install</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : error &#111;n install]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 08 Apr 2026 01:41:19 +0000</pubDate>
  <lastBuildDate>Mon, 16 Feb 2004 13:20:18 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=9862</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[error &#111;n install : Thanks for all your help. I had...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53102.html#53102</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15522">Bill</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 1:20pm<br /><br /><P>Thanks for all your help. I had been blind - I had not seen the second common.asp file.</P><P>Really appreciate all your assistance!</P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 13:20:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53102.html#53102</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install : There are two common.asp files...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53097.html#53097</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 1:04pm<br /><br />There are two common.asp files make sure that the prefix for the tables and stored procedures are changed in both.<br><br>At the moment becuase you have changed the prefix for the storedprocedures and tables it is still looking for the old prefix namebecause you have not updated all the contents for the sp's and tableprefixes.<br>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 13:04:58 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53097.html#53097</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install : PS you can do the same for showing...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53096.html#53096</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13756">thekiwi</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 12:49pm<br /><br /><P>PS you can do the same for showing the tables:</P><P><table width="99%"><tr><td><pre class="BBcode"></P><P>SELECT name&nbsp;<BR>&nbsp; &nbsp; FROM sysobjects&nbsp;<BR>&nbsp; &nbsp; WHERE xtype='U'&nbsp;<BR>&nbsp; &nbsp; ORDER BY name&nbsp;<BR>&nbsp;<BR>-- or&nbsp;<BR>&nbsp;<BR>SELECT TABLE_NAME&nbsp;<BR>&nbsp; &nbsp; FROM INFORMATION_SCHEMA.TABLES&nbsp;<BR>&nbsp; &nbsp; WHERE TABLE_TYPE='BASE TABLE'&nbsp;<BR>&nbsp; &nbsp; ORDER BY TABLE_NAME&nbsp;<BR></P><P></pre></td></tr></table></P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 12:49:24 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53096.html#53096</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install :   Bill wrote: (Unfortunately...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53095.html#53095</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13756">thekiwi</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 12:47pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Bill" alt="Originally posted by Bill" style="vertical-align: text-bottom;" /> <strong>Bill wrote:</strong><br /><br /><P>(Unfortunately I can't use enterprise manager on the site I'm trying to install the forum on, so I cannot 'see' what SPs are there etc.</P><P>Thanks</P><P>Bill</P><P></td></tr></table> </P><P>Use this:</P><P><table width="99%"><tr><td><pre class="BBcode"><BR>CREATE PROCEDURE dbo.listProcedures&nbsp;<BR>AS&nbsp;<BR>BEGIN&nbsp;<BR>&nbsp; &nbsp; SET NOCOUNT ON&nbsp;<BR>&nbsp; &nbsp; SELECT&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; ROUTINE_NAME&nbsp;<BR>&nbsp; &nbsp; FROM&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; INFORMATION_SCHEMA.ROUTINES&nbsp;<BR>&nbsp; &nbsp; WHERE&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; ROUTINE_TYPE='PROCEDURE'&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; AND OBJECTPROPERTY&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; (&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OBJECT_ID(ROUTINE_NAME),&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'IsMsShipped'&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; ) = 0&nbsp;<BR>&nbsp; &nbsp; ORDER BY&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; ROUTINE_NAME&nbsp;<BR>END&nbsp;<BR>GO<BR></pre></td></tr></table></P><P>then in ASP</P><P><table width="99%"><tr><td><pre class="BBcode"><BR><TABLE cellSpacing=0 cellPadding=10><T><TR><TD =code>&lt;%&nbsp;<BR>&nbsp; &nbsp; set conn = CreateObject("ADODB.Connection")&nbsp;<BR>&nbsp; &nbsp; conn.open "&lt;connection string&gt;"&nbsp;<BR>&nbsp; &nbsp; set rs = conn.execute("EXEC dbo.listProcedures")&nbsp;<BR>&nbsp; &nbsp; do while not rs.eof&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; response.write rs(0) &amp; "&lt;br&gt;"&nbsp;<BR>&nbsp; &nbsp; &nbsp; &nbsp; rs.movenext&nbsp;<BR>&nbsp; &nbsp; loop&nbsp;<BR>&nbsp; &nbsp; rs.close: set rs = nothing&nbsp;<BR>&nbsp; &nbsp; conn.close: set conn = nothing&nbsp;<BR>%&gt;</TD></TR></T></TABLE></pre></td></tr></table></P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 12:47:07 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53095.html#53095</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install :   Bill wrote: No! As explained,...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53094.html#53094</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13756">thekiwi</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 12:45pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Bill" alt="Originally posted by Bill" style="vertical-align: text-bottom;" /> <strong>Bill wrote:</strong><br /><br /><P>No! As explained, I changed the prefixes in common.asp and the sql set up file, and only THEN did the installation of the SPs and tables. </P><P>But the index.asp&nbsp;&nbsp;page is still looking for the old wwf... SP! </P><P></td></tr></table> </P><P>Just to make sure we have all bases covered:</P><UL><LI>THere is no index.asp, its default.asp?</LI></UL><P>The error you are getting is because of this line:</P><P><table width="99%"><tr><td><pre class="BBcode">If strDatabaseType = "SQLServer" Then<BR>&nbsp;strSQL = "EXECUTE " &amp; strDbProc &amp; "SelectConfiguration"</pre></td></tr></table></P><P>As you can see, the prefix is a variable set a few lines above, and therefore to get the error you have, the variable <strong>must</strong> be set as wwfSP.</P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 12:45:28 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53094.html#53094</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install : No! As explained, I changed the...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53092.html#53092</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15522">Bill</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 12:27pm<br /><br /><P>No! As explained, I changed the prefixes in common.asp and the sql set up file, and only THEN did the installation of the SPs and tables. </P><P>But the index.asp&nbsp;&nbsp;page is still looking for the old wwf... SP! </P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 12:27:09 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53092.html#53092</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install : if the SPs and tables where installed...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53090.html#53090</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12292">Semikolon</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 12:22pm<br /><br /><P>if the SPs and tables where installed before you changed the prefix, you will need to drop everything and reinstall, or rename everything..</P><P>you also have to change the prefixes in both common.asp files and the&nbsp;sql setup file</P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 12:22:53 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53090.html#53090</guid>
  </item> 
  <item>
   <title><![CDATA[error &#111;n install : Have just completed the install...]]></title>
   <link>https://forums.webwiz.net/error-on-install_topic9862_post53086.html#53086</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15522">Bill</a><br /><strong>Subject:</strong> 9862<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 12:03pm<br /><br /><P>Have just completed the install procedure, first changing the constants:</P><P>Const strDbTable = "bds"<BR>Const strDbProc = "bds"</P><P>in common.asp and msSQL_server_setup.asp</P><P>Then ran the msSQL_server_setup.asp file and it said installation successful. But then, when I went to the forum/index.asp page to have a look for the first time, I got the error message:</P><P>Microsoft OLE DB Provider for SQL Server<FONT face="Times New Roman" size=3> </FONT><FONT face=Arial size=2>error '80040e14'</FONT><FONT face="Times New Roman" size=3> </FONT></P><P><FONT face=Arial size=2>Could not find stored procedure 'wwfSpSelectConfiguration'.</FONT> <P><FONT face=Arial size=2>/forum/common.asp</FONT><FONT face=Arial size=2>, line 283</FONT> </P><P>It would appear to be looking for a SP with the old 'wwf' name prefix. Can someone give me a steer on this? Is it a page that's corrupted, or am I going to have to do a complete reinstall? If so, I presume I am going to have to go through and drop all the tables and SPs first?</P><P>(Unfortunately I can't use enterprise manager on the site I'm trying to install the forum on, so I cannot 'see' what SPs are there etc.</P><P>Thanks</P><P>Bill</P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 12:03:07 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/error-on-install_topic9862_post53086.html#53086</guid>
  </item> 
 </channel>
</rss>