The story is that I want to copy a table column data in a database to another table of another database. Both database are on same sql server 2005. Is this possible to copy the data in this manner or used to any software for do this.
I am using only one column with different table names and only copy the column data.
please do the needful.
Note: this question may be duplicate but I did not get the solutions.
thanks
If you want to simply copy rows from a source database to a target database, something like this should work, assuming the databases are on the same server, which you said they were:
If you want to synchronize rows (e.g., update or delete rows based on some criteria) between two tables in two different databases, this is far more complex. I would suggest a tool like Red-Gate Data Compare, or maybe some freeware app that does this. If you are using SQL Server 2008, the MERGE statement might work for you as well.