How do i clone the content of a mysql database? [closed] - mysql

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to be able to clone all the tables in my mysql database into another database. But the catch here is that i don't want the cloned content to be static. I want it to update synchronously with the original database. is it possible in Mysql?

You need to set up a mysql slave.

Related

What is routines in mysql And what benefit [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What is the routines in MySQL
Possible a simple example routines
A stored procedure or a function...Like a script in your database. MySql has good docs http://dev.mysql.com/doc/refman/5.0/en/stored-routines-syntax.html

For search purposes: HTML files or store content in database? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is it faster to search your web page content if the content is stored in html files or in a database like SQL?
depends on how you want to search through it. I would prefer to store it into a database and implement full-text-search.

WebGraph storage in Relational Databases [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How one can efficiently store the WebGraph in Relational databases such MySQL for playing with algorithms like PageRank? I think of creating two tables: one for URLs where only distinct URLs will be stored and another outgoing links table, for each url store its outgoing URL. Any ideas or any suggestions for efficient storage?
There are specific databases which where created for such a purpose. Take a look at
http://neo4j.org/
https://launchpad.net/giraffedb

How to compare hash tables in sql server 2008 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to compare 2 hash tables in sql server 2008 using query. Whether its possible or not
Please Help

mysql database in gwt [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how to upload and select image through mysql
u have to set image path in your database associated with your data,
when u want to update image, simply update the image path of corresponding data
and to select an image, use that image_path in src
<img src="here"