<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>it.rss24h.com &#187; Database</title>
	<atom:link href="http://it.rss24h.com/index.php/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://it.rss24h.com</link>
	<description>Solving technology problems</description>
	<lastBuildDate>Wed, 28 Apr 2010 07:28:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>check constraint using SELECT from lookup table sql server 2005</title>
		<link>http://it.rss24h.com/index.php/check-constraint-using-select-from-lookup-table-sql-server-2005/</link>
		<comments>http://it.rss24h.com/index.php/check-constraint-using-select-from-lookup-table-sql-server-2005/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 04:32:23 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[constraints]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=65122</guid>
		<description><![CDATA[Question:
Hi Experts,
Just wondering if this is A possible and B the right thing to do if it is.
Or what is best practice when you have lots of small (count) variable constraints.
I would like to use a constraint on a table field, as a lookup from another table, tblConstraints.
So for example see code attachment
Code Snippet:
&#8211;Table for [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">Hi Experts,</p>
<p>Just wondering if this is A possible and B the right thing to do if it is.<br />
Or what is best practice when you have lots of small (count) variable constraints.</p>
<p>I would like to use a constraint on a table field, as a lookup from another table, tblConstraints.</p>
<p>So for example see code attachment<br />
Code Snippet:</p>
<p>&#8211;Table for All Constraints<br />
CREATE TABLE tblConstraints (                    intConstraintID int IDENTITY(1,1) NOT NULL,<br />
vchConstraintName varchar(50) NOT NULL,<br />
vchConstraintValue varchar(100) NOT NULL,<br />
intOrder int NULL<br />
)<br />
GO<br />
&#8211;Insert a Constraint<br />
INSERT INTO tblConstraints (vchConstraintName, vchConstraintValue)<br />
SELECT &#8216;TreeSpecies&#8217;, &#8216;ACA&#8217; UNION ALL<br />
SELECT &#8216;TreeSpecies&#8217;,  &#8216;BAN&#8217;</p>
<p>&#8211;Select Constraint<br />
SELECT vchConstraintValue<br />
FROM tblConstraints<br />
WHERE vchConstraintName = &#8216;TreeSpecies&#8217;</p>
<p>&#8211;Add Constraint to a table??<br />
CREATE TABLE [dbo].[TreeSpecies] (<br />
[Species] char (255)  NOT NULL )</p>
<p>ALTER TABLE [TreeSpecies]<br />
ADD CONSTRAINT [CK_TreeSpecies_Species] CHECK ( (<br />
[Species] IN (<br />
SELECT vchConstraintValue<br />
FROM tblConstraints<br />
WHERE vchConstraintName = &#8216;TreeSpecies&#8217;<br />
)  )  )  ) ;</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">The column that a foreign key references does not have to be a primary key, it just has to have a unique constraint on it.</p>
<p>I don&#8217;t think SQL is simply &#8216;looking&#8217; in sys.constraints, rather that the constraints are a piece of table metadata the existence of which can be viewed using this system view.<br />
Posted via EE Mobile</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/check-constraint-using-select-from-lookup-table-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Loader Problem</title>
		<link>http://it.rss24h.com/index.php/sql-loader-problem/</link>
		<comments>http://it.rss24h.com/index.php/sql-loader-problem/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 04:10:29 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=65100</guid>
		<description><![CDATA[Question:
When I try to run SQL Loader, it has an error&#8230;
Anyone knows how to solve it?
Solution:
Hi,
You need to set the ORACLE_BASE in path.
This link should help you
http://www.orafaq.com/forum/t/51572/2/
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">When I try to run SQL Loader, it has an error&#8230;<br />
Anyone knows how to solve it?</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">Hi,</p>
<p>You need to set the ORACLE_BASE in path.</p>
<p>This link should help you</p>
<p>http://www.orafaq.com/forum/t/51572/2/</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/sql-loader-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>redundant_tables</title>
		<link>http://it.rss24h.com/index.php/redundant_tables/</link>
		<comments>http://it.rss24h.com/index.php/redundant_tables/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 07:39:31 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=65090</guid>
		<description><![CDATA[Question:
is there a way/method to identify or remove redundant/unused tables in a production database?
would there be any harm of leaving those tables there.
Solution:
1 &#8211; if you only turn auditting on for tables you think are good candidates then no, it shouldn&#8217;t affect performance,  if you are right and they aren&#8217;t used, then it will have [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">is there a way/method to identify or remove redundant/unused tables in a production database?<br />
would there be any harm of leaving those tables there.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">1 &#8211; if you only turn auditting on for tables you think are good candidates then no, it shouldn&#8217;t affect performance,  if you are right and they aren&#8217;t used, then it will have 0-performance because you only audit when the object is touched.  No touch=no audit=no performance</p>
<p>&#8220;drop any not referenced&#8221;  &#8211; remember auditting records are windows in time<br />
if you audit everything today and then I touch your table tomorrow, I won&#8217;t appreciate it if you drop the table.</p>
<p>So, your audit window must be large enough to capture all possible (and desirable) activity</p>
<p>And &#8220;referenced&#8221; using dba_dependencies ONLY returns objects that are in that database.<br />
If you have references in other databases through db links, those won&#8217;t be seen<br />
If you have references in dynamic sql in that or other db&#8217;s, those won&#8217;t be seen<br />
If you have references in applictions (c#, java, vb, fortran, python, whatever) that aren&#8217;t in the database those won&#8217;t be seen.</p>
<p>1 and 2 give you a good start,  then you have to use your own knowledge of the database and all possible entry points to it to determine how far you need to search</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/redundant_tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bounce_instance</title>
		<link>http://it.rss24h.com/index.php/bounce_instance/</link>
		<comments>http://it.rss24h.com/index.php/bounce_instance/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 07:19:35 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=65073</guid>
		<description><![CDATA[Question:
Does anyone know the pros/cons of bouncing a production instance every weekend?
Is this a normal or bad practice for oracle databases.
My understanding it is not good. however, our DBA does it every weekend to take a cold backup of the database. Oracle then seems to lose all the cache advice statistics after that.
Solution:
1st  &#8211; you [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">Does anyone know the pros/cons of bouncing a production instance every weekend?<br />
Is this a normal or bad practice for oracle databases.</p>
<p>My understanding it is not good. however, our DBA does it every weekend to take a cold backup of the database. Oracle then seems to lose all the cache advice statistics after that.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">1st  &#8211; you are forcing an outage, your system is unavailable while you do the backup.</p>
<p>2nd &#8211; any &#8220;cached&#8221; information is lost when you bounce the database<br />
some examples&#8230;<br />
- advice views as you already determined<br />
- automatic memory management  pool sizes will need to readjust<br />
- all statements will need to be reparsed<br />
- all data in buffer caches will need to be reloaded<br />
- all pinned code will need to be reloaded</p>
<p>3rd &#8211; schedules will be thrown off<br />
- any scheduled processes will either be skipped during the down time<br />
or they will need to play &#8220;catchup&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/bounce_instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with search table</title>
		<link>http://it.rss24h.com/index.php/working-with-search-table/</link>
		<comments>http://it.rss24h.com/index.php/working-with-search-table/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 06:11:22 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=65022</guid>
		<description><![CDATA[Question:
My db has a mysql backend and MSAccess frontend. Currently I am using a temporary table (created from query of multiple tables with some concatenate and calculated fields) as the record source for a search form. Problem is that it takes about 10 sec to create the temporary table and this delay is set to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">My db has a mysql backend and MSAccess frontend. Currently I am using a temporary table (created from query of multiple tables with some concatenate and calculated fields) as the record source for a search form. Problem is that it takes about 10 sec to create the temporary table and this delay is set to increase as the db grows.</p>
<p>I am know thinking of turning the temporary table into a permanent table. My delema is in deciding the best way to up date that table so that the search result are always current.</p>
<p>I believe that my options are:</p>
<p>1) After entering a new record or editing an exiting record &#8211; Delete related records in the search table and then insert the updated related record.</p>
<p>2)After entering a new record Insert the record in the search table. After updating an existing record run and update query on the search table with the primary key of the updated record as the where condition.</p>
<p>I would prefer to use the first option as the code will be far easier. However, I am worried that errors may pop &#8211; up if a record is deleted in the search table while another user is looking at it.</p>
<p>Need some advise for MSAcceQL experts.</p>
<p>Cheers</p>
<p>SB9</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">Well, I imagine that it all comes down to how you handle it in your code.</p>
<p>If you try to pull details up for a particular record and the record isn&#8217;t there then I would suggest displaying to the user that the record does not exist and the possible reason for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/working-with-search-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need help configuring new install of phpmyadmin</title>
		<link>http://it.rss24h.com/index.php/need-help-configuring-new-install-of-phpmyadmin/</link>
		<comments>http://it.rss24h.com/index.php/need-help-configuring-new-install-of-phpmyadmin/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 05:45:54 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql phpmyadmin]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=65018</guid>
		<description><![CDATA[Question:
I just installed phpmyadmin version 3.2.2 with mysql 5.1.40 and Apache 2.2 on Windows. When I goto the index page, I get the normal phpmyadmin login screen. I put my username and password in and it hangs for about a minute and then I get a blank page. I tried an invalid password and it [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">I just installed phpmyadmin version 3.2.2 with mysql 5.1.40 and Apache 2.2 on Windows. When I goto the index page, I get the normal phpmyadmin login screen. I put my username and password in and it hangs for about a minute and then I get a blank page. I tried an invalid password and it does the same thing. I created a config file by going to the Setup folder in the root directory of phpmyadmin and typing in all the correct info. I then clicked Save and it shows the server I just created in the server list. If I refresh the page, I then get a message that says &#8220;There are no configured servers&#8221;, even though I just configured one and clicked save. I then created another server, saved it and then before refreshing it, I clicked Download and saved it to phpmyadmin\config, which is where the documentation says the config file should be. If I refresh the setup page again, it still is not listed there and the phpmyadmin login page still does the same thing. I tried using different login methods such as cookie, http and config, but all do the same. I have included the config.inc.php file, which is in the phpmyadmin\config folder. Also, I connected via command line and it works fine, so obviously there is not a firewall issue and my ip, username and password must be correct. I must be missing something here, I have done this a few times and never had any trouble.<br />
Code Snippet:</p>
<p>&lt;?php<br />
/*<br />
* Generated configuration file<br />
* Generated by: phpMyAdmin 3.3.2 setup script by Piotr Przybylski &lt;piotrprz@gmail.com&gt;<br />
* Date: Sat, 24 Apr 2010 12:00:21 -0700<br />
*/</p>
<p>/* Servers configuration */<br />
$i = 0;</p>
<p>/* Server: mysql [1] */<br />
$i++;<br />
$cfg['Servers'][$i]['verbose'] = &#8216;mysql&#8217;;<br />
$cfg['Servers'][$i]['host'] = &#8216;192.168.0.31&#8242;;<br />
$cfg['Servers'][$i]['port'] = 3306;<br />
$cfg['Servers'][$i]['socket'] = &#8221;;<br />
$cfg['Servers'][$i]['connect_type'] = &#8216;tcp&#8217;;<br />
$cfg['Servers'][$i]['extension'] = &#8216;mysql&#8217;;<br />
$cfg['Servers'][$i]['auth_type'] = &#8216;http&#8217;;<br />
$cfg['Servers'][$i]['user'] = &#8216;root&#8217;;<br />
$cfg['Servers'][$i]['password'] = &#8221;;</p>
<p>/* End of servers configuration */</p>
<p>$cfg['DefaultLang'] = &#8216;en-utf-8&#8242;;<br />
$cfg['ServerDefault'] = 1;<br />
$cfg['UploadDir'] = &#8221;;<br />
$cfg['SaveDir'] = &#8221;;<br />
?&gt;</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">I just reread the documentation and must have missed the fact that you are suppose to move the config file out of the config folder. I did that and it works fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/need-help-configuring-new-install-of-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to store a file path in MySQL?</title>
		<link>http://it.rss24h.com/index.php/how-to-store-a-file-path-in-mysql/</link>
		<comments>http://it.rss24h.com/index.php/how-to-store-a-file-path-in-mysql/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 05:16:10 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=64992</guid>
		<description><![CDATA[Question:
I know this must be very simple, but I cannot make this work &#8211; I am trying to store a simple file path in a MySQL database from my PHP web page. But the backslashes get lost when I write the update statement (it&#8217;s an existing record).
$sPath = &#8220;c:\\mypath\myfile.jpg&#8221;;
$sSQL = &#8220;UPDATE mytable SET filepath=&#8217;&#8221; . [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">I know this must be very simple, but I cannot make this work &#8211; I am trying to store a simple file path in a MySQL database from my PHP web page. But the backslashes get lost when I write the update statement (it&#8217;s an existing record).</p>
<p>$sPath = &#8220;c:\\mypath\myfile.jpg&#8221;;<br />
$sSQL = &#8220;UPDATE mytable SET filepath=&#8217;&#8221; . $sPath . &#8220;&#8216; WHERE id = 9&#8243;;<br />
mysql_query($sSQL);</p>
<p>I end up with a filepath that is c:mypathmyfile.jpg</p>
<p>If I first call addslashes($sPath) then I end up with double the slashes in the database.</p>
<p>Can someone help this poor soul? <img src='http://it.rss24h.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">Or use mysql_real_escape_string()</p>
<p>http://www.php.net/manual/en/function.mysql-real-escape-string.php</p>
<p>Regards</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/how-to-store-a-file-path-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dim/Fac Vs FK/PK</title>
		<link>http://it.rss24h.com/index.php/dimfac-vs-fkpk/</link>
		<comments>http://it.rss24h.com/index.php/dimfac-vs-fkpk/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 03:58:28 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=64944</guid>
		<description><![CDATA[Question:
What is the basic difference between Dimension/Facts relationship and PK/FK realtionships?
Thanks
Solution:
No difference that I can think of.
OLAP doesn&#8217;t necessarily imply &#8220;dimensional&#8221;. If by &#8220;OLAP&#8221; you just mean a database used for business intelligence / decision support purposes then that could also be a normal form model. But either way a foreign key means the same [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">What is the basic difference between Dimension/Facts relationship and PK/FK realtionships?</p>
<p>Thanks</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">No difference that I can think of.</p>
<p>OLAP doesn&#8217;t necessarily imply &#8220;dimensional&#8221;. If by &#8220;OLAP&#8221; you just mean a database used for business intelligence / decision support purposes then that could also be a normal form model. But either way a foreign key means the same thing in each case.</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/dimfac-vs-fkpk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql select every two months</title>
		<link>http://it.rss24h.com/index.php/mysql-select-every-two-months/</link>
		<comments>http://it.rss24h.com/index.php/mysql-select-every-two-months/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 06:53:05 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[select]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/index.php/mysql-select-every-two-months/</guid>
		<description><![CDATA[Question:
Hi everybody.
I have an application that send emails to subscribers every week, every 14 days and every month, I select this information using an sql script every day.
Now i need to implement the two months subscription.
I like to make an sql select that retrieves this information and send the newsletter (for months with more than [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">Hi everybody.</p>
<p>I have an application that send emails to subscribers every week, every 14 days and every month, I select this information using an sql script every day.<br />
Now i need to implement the two months subscription.<br />
I like to make an sql select that retrieves this information and send the newsletter (for months with more than 28 days i&#8217;m sending the month email on 28th day)<br />
Thanks for all your help.</p>
<p>Byron H.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">how about using modulo?</p>
<p>like&#8230;.</p>
<p>select &#8230;&#8230;&#8230;..<br />
from &#8230;&#8230;&#8230;.<br />
where &#8230;&#8230;&#8230;&#8230;<br />
and day(current_date)=28<br />
and month(current_date) % 2 = 0</p>
<p>That will return true for all even months<br />
while the</p>
<p>and month(current_Date) % = 1<br />
will return true for all odd months</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/mysql-select-every-two-months/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>auto matic backup mysql table</title>
		<link>http://it.rss24h.com/index.php/auto-matic-backup-mysql-table/</link>
		<comments>http://it.rss24h.com/index.php/auto-matic-backup-mysql-table/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 06:51:11 +0000</pubDate>
		<dc:creator>xumi</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://it.rss24h.com/?p=64884</guid>
		<description><![CDATA[Question:
please suggest the method to back up my sql automatic ly to flash drive or another server
Solution:
http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html
If you are in a *nix environment, write a cronjob to run at the times you want, get it to mysqldump the databases you need, tar them up (optional) then either scp them to another server or cp them [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Question</strong></span>:</p>
<p style="text-align: justify;">please suggest the method to back up my sql automatic ly to flash drive or another server</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Solution</strong></span>:</p>
<p style="text-align: justify;">http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html</p>
<p>If you are in a *nix environment, write a cronjob to run at the times you want, get it to mysqldump the databases you need, tar them up (optional) then either scp them to another server or cp them to the flash drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://it.rss24h.com/index.php/auto-matic-backup-mysql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
