<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/dbcopyplugin/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/dbcopyplugin/bugs/</id><updated>2015-05-22T11:06:06.031000Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>dbcopy doesnt work anymore</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/22/" rel="alternate"/><published>2015-05-22T11:06:06.031000Z</published><updated>2015-05-22T11:06:06.031000Z</updated><author><name>tha_specializt</name><uri>https://sourceforge.net/u/specializt/</uri></author><id>https://sourceforge.net4023857a16897b1c81d193e588bde9bb6f33b124</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;this plugin is outdated, it doesnt work with newer versions of squirrel anymore&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>MySQL CREATE INDEX PRIMARY fails</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/21/" rel="alternate"/><published>2012-02-16T01:43:26Z</published><updated>2012-02-16T01:43:26Z</updated><author><name>PtcRochester</name><uri>https://sourceforge.net/u/ptcrochester/</uri></author><id>https://sourceforge.netf8ef071b95a0b5ee1e67aad120ce5d46046517cd</id><summary type="html">SQuirreL 3.3.0
DB Copy 1.15

Copying from one MySql schema to another, ir produced this error.  Even after un-checking "copy primary key definitions", it produces one such error per table.  If I restart the copy, it hits it on the next table, etc, etc.

MySQL 5.0 does not support the syntax used.
http://dev.mysql.com/doc/refman/5.0/en/create-index.html
</summary></entry><entry><title>needs to use batch inserts</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/20/" rel="alternate"/><published>2010-09-21T21:04:05Z</published><updated>2010-09-21T21:04:05Z</updated><author><name>TimJowers</name><uri>https://sourceforge.net/u/timjowers/</uri></author><id>https://sourceforge.netea3e5d4ff7b0d2ca398acdaa64ec398729b83944</id><summary type="html">Hmmm. methinks needs to use batch prepared statements. executeBatch
CopyExecutor.java

576: InsertStmt.executeUpdate\(\);

\(JDBC 2.0  feature\)</summary></entry><entry><title>Oracle copy fails for table with simple key</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/19/" rel="alternate"/><published>2010-04-26T18:51:36Z</published><updated>2010-04-26T18:51:36Z</updated><author><name>Brian Kalbfus</name><uri>https://sourceforge.net/u/bkalbfus/</uri></author><id>https://sourceforge.net95af0b0dca48e221c063c853922a90155db21875</id><summary type="html">I have a table with a simple primary defined.  The Source tab says:

\-------------------------------
CREATE TABLE I\_SPECIES\_CLASS
\(
I\_SPECIES\_CLASS\_CODE varchar2\(2\) PRIMARY KEY NOT NULL,
I\_SPECIES\_CLASS varchar2\(25\) NOT NULL
\);
CREATE UNIQUE INDEX I\_SPECIES\_CLASS\_PK ON I\_SPECIES\_CLASS\(I\_SPECIES\_CLASS\_CODE\);
\------------------------------

When I copy the table to a schema that does not have it defined already, it gives me the error:  Copy failed: ORA-01408: such column list already exists.  
Looking at the Source of the newly created table, it shows:
\---------------------------
CREATE TABLE I\_SPECIES\_CLASS
\(
I\_SPECIES\_CLASS\_CODE varchar2\(2\) PRIMARY KEY NOT NULL,
I\_SPECIES\_CLASS varchar2\(25\) NOT NULL
\);
CREATE UNIQUE INDEX SYS\_C0015017 ON I\_SPECIES\_CLASS\(I\_SPECIES\_CLASS\_CODE\);
\--------------------------------------

I think it is creating an index for the primary key automatically, and then failing to create it explicitly.  My work-around is to paste the table again and it skips the table creation step since the table is created in the destination schema already.

</summary></entry><entry><title>db2 to postgres on delete cascade not copied</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/18/" rel="alternate"/><published>2009-05-21T00:26:04Z</published><updated>2009-05-21T00:26:04Z</updated><author><name/><uri>https://sourceforge.net</uri></author><id>https://sourceforge.net8f4bb74dc7b2e4ce83f5c33a5fb822997cece851</id><summary type="html">I'm using SQuirrel 3.0.1, DB2 9.5 and PosgreSQL 8.3

When I copy tables from DB2 to PostgreSQL, the "ON DELETE CASCADE" on foreign key constraints are not copied over. Instead, they become "ON DELETE NO ACTION".
</summary></entry><entry><title>Copy to H2 Db fails</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/17/" rel="alternate"/><published>2009-04-15T09:55:04Z</published><updated>2009-04-15T09:55:04Z</updated><author><name>olddave</name><uri>https://sourceforge.net/u/olddave/</uri></author><id>https://sourceforge.net509dbfd9f7b9a0c2ac77928fc4d101e4232fc0aa</id><summary type="html">When a copy to a H2 database occurs it creates this SQL "CREATE TABLE databasename.tablename.tablename" when it should create this
"CREATE TABLE databasename.schemaname.tablename". So fails everytime. 

V 1.1.3 in SQuirreL SQL V 2.6.9

</summary></entry><entry><title>Table Index definition not copied to linux mysql</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/16/" rel="alternate"/><published>2007-03-15T13:35:50Z</published><updated>2007-03-15T13:35:50Z</updated><author><name>fransj</name><uri>https://sourceforge.net/u/fransj/</uri></author><id>https://sourceforge.net83597ac685ae3de10c4bb8ae49eba7ad1b3fb70f</id><summary type="html">Hi,

I try to migrate a Progress Database to a MySql database on Linux.
When I copy a table from Progress \(Windows\) to MySql \(Linux\) the Table index definitions are NOT copied.

When I try the same, but now using a Windows version of MySql the index definitions are copied.

When I copy a Table from the Windows MySql to the Linux MySql the indexes are also copied ok.

Used dbCopy 1.0 in Squirrel 2.4.1
MySql 5.0.27 on Both Linux and Windows, MySql connector 5.0.5 as Driver.

Used Both the Progress 9.1E and the ODBC-JDBC bridge to connect to the Progress database.</summary></entry><entry><title>Exception when pasting</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/15/" rel="alternate"/><published>2007-03-02T14:21:02Z</published><updated>2007-03-02T14:21:02Z</updated><author><name>Kai Blankenhorn</name><uri>https://sourceforge.net/u/userid-267476/</uri></author><id>https://sourceforge.netb7c3f1dd8bf26dfcccd9b5fcbda5273884bde894</id><summary type="html">I try to copy some tables from a remote DB2 instance to my local one. So what I do is select the tables and click "Copy Table", then change to my local connection, select the right schema by clicking it and then select "Paste Table" from the context menu. Nothing happens, but I get the following exception in the log:

Logged by class net.sourceforge.squirrel\_sql.client.Application at 02.03.07 15:08:

Exception occured dispatching Event java.awt.event.MouseEvent\[MOUSE\_RELEASED,\(207,808\),button=1,modifiers=Button1,clickCount=1\] on frame0



SquirrelSQL 2.4, DBCopy Plugin 1.1, Java 1.5</summary></entry><entry><title>Copy is not completing</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/14/" rel="alternate"/><published>2006-12-27T16:28:46Z</published><updated>2006-12-27T16:28:46Z</updated><author><name>Bob Coss</name><uri>https://sourceforge.net/u/bobcoss/</uri></author><id>https://sourceforge.net0ebaece09fa10912a19360a3218180a13be1aac5</id><summary type="html">Hi,

I installed the latest version of Squirrel SQL and DBCopy 1.0 on my windows xt sp2 machine.  I'm using JRE 1.5.0\_10.

When I copy a database table from an Remote Oracle 10g session to an Oracle 10g Express session on my local computer, it sits there until I cancel it.  When I refresh the tables, I can see that it created the table, there just are no rows copied.  If I do the paste again, it will copy the rows perfectly. 

I also tried this with a H2 database, and it behaves exactly the same.

I am not seeing any error messages.

Thanks you,

Bob</summary></entry><entry><title>Copy failed - NULL</title><link href="https://sourceforge.net/p/dbcopyplugin/bugs/13/" rel="alternate"/><published>2006-12-14T23:15:46Z</published><updated>2006-12-14T23:15:46Z</updated><author><name>cleversoft</name><uri>https://sourceforge.net/u/cleversoft/</uri></author><id>https://sourceforge.net7dd1f19f3a23e4b62e7903e94401ac2d1dc2fe0f</id><summary type="html">I've tried to copy from a sybase ASE 15 Server \(source\) to a second ASE 15 Server \(destination\) both being JDBC connected using the database owner's account. Squirrel was running on a third client being different from both RDBMS servers.

On the destination host I created an empty database ant then tried to copy the tables from the source host. After ~ half an houre everything nearly completed and the copy process died with a message like "Copy failed - NULL".

Involved Systems: All thre hosts running fedora core Linux. The Host running squirrel has:

\[root@ejbsvn ~\]\# uname -a
Linux ejbsvn.mi.hdm-stuttgart.de 2.6.18-1.2849.fc6 \#1 SMP Fri Nov 10 12:45:28 EST 2006 i686 athlon i386 GNU/Linux
\[root@ejbsvn ~\]\# java -version
java version "1.5.0\_08"
Java\(TM\) 2 Runtime Environment, Standard Edition \(build 1.5.0\_08-b03\)
Java HotSpot\(TM\) Client VM \(build 1.5.0\_08-b03, mixed mode, sharing\)


I just installed the current Squirrel release with DB copy plugin selected. The starting messages in the logfile somewhat scare me but I didn't find any hint to install additional libraries \(like hibernate\) myself.


</summary></entry></feed>