<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1031398" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1031398</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1184787</link>
    <description> &lt;p&gt;With triggers, if they work the same as with MS SQL and oracle, are handled by the database directly. On the programming end (the php program), you do not have to call anything. Basically the server itself looks for any update, and when it occurs executes the stored procedure itself. The one benefit for me is it can do an update only on the records being adjusted. We were in a slight hurry to get the program up and running, so I didn&#039;t code it to look to see which data was updated in my included file, it jsut goes and recalcs everything (yes i know, poor design, but i have 50 &quot;need to do first&quot; things here and I&#039;m the only one to do them). &lt;/p&gt;
&lt;p&gt; Part of the preformance increase will be that there will be no need to transfer the data back and forth from mySQL to PHP. [for my project] If you have 20 employees and adjust one of the tax rates, it has to get a list of all employees, then each employee get their data accross from 3 tables, and then calculate it all, then update 2 tables. As with a lot of programming &quot;preformance&quot; issues, it may seem small, but it all adds up.&lt;/p&gt;
&lt;p&gt; -Greg&lt;/p&gt;
 </description>
     <pubDate>Mon, 07 Nov 2005 19:08:01 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1184787 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1184731</link>
    <description> &lt;p&gt;There should be, using stored procedures (provided you use them correctly) can give a noticeable performance boost especially for examples as Greg cited.&lt;/p&gt;
&lt;p&gt;Not tried MySQL 5 as yet though.&lt;/p&gt;
 </description>
     <pubDate>Mon, 07 Nov 2005 08:13:48 +0000</pubDate>
 <dc:creator>chrishirst</dc:creator>
 <guid isPermaLink="false">comment 1184731 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1184681</link>
    <description> &lt;p&gt;Ah, cool. So in this case it would just call a stored procedure and MySQL will do it itself.&lt;/p&gt;
&lt;p&gt;Wonder if there&#039;ll be a performance increase from it doing that? Suppose it wont make much difference, SQL is SQL.&lt;/p&gt;
 </description>
     <pubDate>Sun, 06 Nov 2005 17:35:22 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1184681 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1184668</link>
    <description> &lt;p&gt;The big thing I am lookingforward to is the stored procedures and triggers. In our program, any time you change any one of 5 pages, it needs to recalculate some items. Right now every page that does a SAVE VALUES function calls an included file that loops though all the data and updates it all.&lt;/p&gt;
&lt;p&gt;Will be nice to have that separate from the main program. &lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Sun, 06 Nov 2005 03:29:45 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1184668 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1184661</link>
    <description> &lt;p&gt;Oooooh, I wish we were on MySQL 5 (sorry just found this thread &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt; ), what&#039;re the new features like?&lt;/p&gt;
&lt;p&gt;I read they have triggers, stored procedures and all sorts of other whizzo gumpf. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
Have you played with any of the new stuff yet?&lt;/p&gt;
&lt;p&gt;And PHP 5 has totally re-written OOP support, mmmmm OOP support. Although a nasty bug has reared it&#039;s ugly head and there isn&#039;t a fix for PHP 5 yet, but there is one for 4. Bit strange IMO, although I suppose most people are using 4.&lt;/p&gt;
 </description>
     <pubDate>Sun, 06 Nov 2005 02:20:28 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1184661 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1184477</link>
    <description> &lt;p&gt;Man I just ran into this problem yesterday. We had purchased a dedicated server though our hosting company a few months ago. Last month they went through and upgraded all their shared servers to the latest 4.x version of mysql. Well on their dedicated servers, mysql is running on your own machine, so they either only upgrade it if your request it, or maybe they just havent gotten to upgrading the dedicated servers yet.&lt;/p&gt;
&lt;p&gt;I did an export of all my tables in phpMyAdmin, switched over the our dedicated server, went to run the  sql script, and errors out the wazzoo (sp?). Called them up and found out that the dedicated still was using the older version. &lt;/p&gt;
&lt;p&gt;Well now that v5.x has a &quot;stable&quot; version (or whatever), they gave me that option as well. As soon as they did the upgrade, the sql script ran no problems at all (other than the delay that it took to upload the 3meg file).&lt;/p&gt;
&lt;p&gt;So now I have v5 and can play around witht he new features. I found out that for $50 fee they will switch me over to PHP 5 if I want. Have to investigate to see if it has anything to offer to make it worth it.&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Thu, 03 Nov 2005 19:01:34 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1184477 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1183932</link>
    <description> &lt;p&gt;&lt;code&gt;mysqldump --opt -p -uUSER DBNAME &amp;gt; DBNAME.20051028.sql&lt;/code&gt;&#039;&lt;br /&gt;
&lt;code&gt;mysql -p -uUSER DBNAME &amp;lt; DBNAME.20051028.sql&lt;/code&gt;&#039;&lt;br /&gt;
might want to compress to transfer...&lt;br /&gt;
&lt;code&gt;gzip -S .gz DBNAME.20051028.sql&lt;/code&gt;&#039;&lt;br /&gt;
&lt;code&gt;gunzip DBNAME.20051028.sql.gz&lt;/code&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Fri, 28 Oct 2005 19:53:14 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1183932 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1183922</link>
    <description> &lt;p&gt;It looks like, by your error, you have some odd characters in your code. What did you use to export your SQL? If it wasn&#039;t phpMyAdmin, I&#039;d suggest using that. That way it will be readable when it imports it into the new database. &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;
 </description>
     <pubDate>Fri, 28 Oct 2005 18:03:38 +0000</pubDate>
 <dc:creator>mscreashuns</dc:creator>
 <guid isPermaLink="false">comment 1183922 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/transfer-problems#comment-1183916</link>
    <description> &lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;MySQL said&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;#1064 - You have an error in your SQL syntax.&amp;nbsp; Check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;ï»¿-- phpMyAdmin SQL Dump&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;version 2.6.3&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;pl1&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-- &amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;a href&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;http://www\&quot; class=\&quot;bb-url\&quot;&amp;gt;http://www&amp;lt;/a&amp;gt;.&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 28 Oct 2005 17:07:25 +0000</pubDate>
 <dc:creator>Assgoblin</dc:creator>
 <guid isPermaLink="false">comment 1183916 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
