<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013198" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013198</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1077345</link>
    <description> &lt;p&gt;I don&#039;t know how much information there will be, so I better keep it as a text field.&lt;br /&gt;
Thanks anyway&lt;/p&gt;
&lt;p&gt;If you want to see what I am using it for, here is the URL &lt;a href=&quot;http://www.secretsofwar.net&quot; class=&quot;bb-url&quot;&gt;http://www.secretsofwar.net&lt;/a&gt; Just if you were curius.&lt;/p&gt;
&lt;p&gt;~Casper&lt;/p&gt;
 </description>
     <pubDate>Sat, 27 Jan 2001 15:36:30 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1077345 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1077344</link>
    <description> &lt;p&gt;Casper,&lt;/p&gt;
&lt;p&gt;The text field is inefficient in two ways:&lt;/p&gt;
&lt;p&gt;1) It requires more memory overhead than a char or varchar type field.&lt;/p&gt;
&lt;p&gt;2) Indexing/Searching is slower through a text field compared to a char or varchar field.&lt;/p&gt;
&lt;p&gt;If you know you&#039;re not going to exceed 6,000-8,000 characters I would recommend going with a varchar data type instead of text.&lt;/p&gt;
 </description>
     <pubDate>Sat, 27 Jan 2001 15:27:34 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1077344 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1077342</link>
    <description> &lt;p&gt;By the way, what do you mean that they are not effecient? Is it just because that they are heavy in the data weight, or is there a more specifik reason?&lt;/p&gt;
 </description>
     <pubDate>Sat, 27 Jan 2001 12:40:23 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1077342 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1076715</link>
    <description> &lt;p&gt;Thanks for that!&lt;/p&gt;
 </description>
     <pubDate>Sun, 14 Jan 2001 15:47:10 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1076715 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1076679</link>
    <description> &lt;p&gt;Casper,&lt;/p&gt;
&lt;p&gt;The memo field type in SQL is TEXT. So the statement would be:&lt;/p&gt;
&lt;p&gt;ALTER TABLE Games ADD Game_Title TEXT NULL&lt;/p&gt;
&lt;p&gt;Try not to use to many TEXT fields since they aren&#039;t super efficient.&lt;/p&gt;
 </description>
     <pubDate>Sat, 13 Jan 2001 16:42:52 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1076679 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1076667</link>
    <description> &lt;p&gt;I ran into another problem regarding this!&lt;/p&gt;
&lt;p&gt;I know wants to make a new row, that is in memo type, so that you can have ALL the data you wants in the cells.&lt;/p&gt;
&lt;p&gt;How do I do that?&lt;/p&gt;
&lt;p&gt;I suppose its something like:&lt;br /&gt;
ALTER TABLE Games ADD Game_Title VARCHAR(&lt;strong&gt;memo&lt;/strong&gt;) NULL &lt;/p&gt;
&lt;p&gt;But I aint sure on that... I REALLY hope that you can help me here!&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;br /&gt;
Casper&lt;/p&gt;
 </description>
     <pubDate>Sat, 13 Jan 2001 13:42:46 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1076667 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1076548</link>
    <description> &lt;p&gt;Tested it out, and it worked perfectly! Thanks a lot again! You spared my connection for a lot &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;See yóu&lt;br /&gt;
¨~Casper&lt;/p&gt;
 </description>
     <pubDate>Wed, 10 Jan 2001 17:03:06 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1076548 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1076546</link>
    <description> &lt;p&gt;Thanks Peter&lt;/p&gt;
&lt;p&gt;I will look at it, and see if I can make it work.&lt;/p&gt;
&lt;p&gt;Kind regards&lt;br /&gt;
~Casper&lt;/p&gt;
 </description>
     <pubDate>Wed, 10 Jan 2001 14:57:52 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1076546 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-new-column-sql#comment-1076544</link>
    <description> &lt;p&gt;Casper,&lt;/p&gt;
&lt;p&gt;I&#039;m not sure which platform you&#039;re using but for Microsoft SQL 6.5-2000 the syntax is:&lt;/p&gt;
&lt;p&gt;ALTER TABLE table_name&lt;br /&gt;
  ADD column_name column_type value&lt;/p&gt;
&lt;p&gt;for example:&lt;/p&gt;
&lt;p&gt;ALTER TABLE Games ADD Game_Title VARCHAR(20) NULL&lt;/p&gt;
&lt;p&gt;It&#039;s probably similar on other platforms.&lt;/p&gt;
 </description>
     <pubDate>Wed, 10 Jan 2001 14:02:48 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1076544 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
