Top "Copy" questions

To copy is to create a duplicate of an object without destroying the original.

How to copy data from one table to another new table in MySQL?

I want to copy data from one table to another in MySQL. Table 1 (Existing table): aid st_id from_uid …

mysql copy
Standard concise way to copy a file in Java?

It has always bothered me that the only way to copy a file in Java involves opening streams, declaring a …

java file copy
Find and copy files

Why does the following does not copy the files to the destination folder? # find /home/shantanu/processed/ -name '*2011*.xml' …

linux copy find
Unix - copy contents of one directory to another

Folder1/ -fileA.txt -fileB.txt -fileC.txt > mkdir Folder2/ > [copy command] And now Folder2/ looks like: Folder2/ -fileA.…

file unix copy directory
How to copy a java.util.List into another java.util.List

I have a List<SomeBean> that is populated from a Web Service. I want to copy/clone the …

java collections copy
Copying a local file from Windows to a remote server using scp

So, I'm attempting to simply transfer folder of files from my local computer to a server via ssh and scp. …

windows ssh copy sudo scp
How to copy Java Collections list

I have an ArrayList and I want to copy it exactly. I use utility classes when possible on the assumption …

java list collections copy
How to export all data from table to an insertable sql format?

I have a Table (call it A_table) in a database (call it A_db) in Microsoft SQL Server Management …

sql sql-server copy export ssms
Understanding dict.copy() - shallow or deep?

While reading up the documentation for dict.copy(), it says that it makes a shallow copy of the dictionary. Same …

python dictionary copy
Copy a table from one database to another in Postgres

I am trying to copy an entire table from one database to another in Postgres. Any suggestions?

postgresql copy database-table