MS SS 7.0 - 8.1.7: "Migrate Table Data" N/A

Hello there,
We're currently attempting to do a migration from MS SQL Server 7.0 to Oracle 8.1.7, using Migration Workbench.
I'm able to capture, and create the model successfully, but when going to Object->Migrate Table Data it is grayed out and disabled. I'm able to generate SQL*Loader scripts, but I really would prefer to do everything end-to-end via the Workbench.
Also, please note, I do not have sa rights on the target server, so I'm not able to run the Action->Migrate to Oracle wizard.
Any insight would be greatly appreciated!
Thanks,
-Jason Alexander

Hi,
The 3rd page of the migration wizard should contain a question asking you whether you would like to migrate the data or not.
Please be aware that we recommend data migration before any primary/foreign key creation.
Also, the migrate table data menu item only becomes enabled once you click on a table folder in the Oracle Model UI tab. You can also click on the 'Tables' folder to migrate the data for all tables.

Similar Messages

  • Access 97 to Oracle 9i - Unable to migrate table data

    I cannot seem to get the Access security set correctly to migrate the table data. I created a new Access database by importing the old one into a blank, and I thought I was doing what needed to be done to allow READ access for the Workbench. I'm getting nowhere!
    The WB is creating the model correctly and creating the tablespaces, users and table objects in my Oracle database. But it is not able to migrate table data due to insufficient rights to the Access tables.
    Any thoughts? I can't seem to find an answer to this in any documentation.
    Thanks in advance.

    Did you (or anyone) ever find a solution to this problem? I am having a similar issue. I have even tried creating a new Access 97 database (blank db w/imported tables). All permissions are set for the default 'Admin' user and the 'Admin' user is the owner of all tables.

  • How to migrate 'table' data type into oracle solution?

    Say, I have following sample code in Sql Server:
    Declare @v1 table(old_value int, new_value int)
    insert into @v1 select old_value, new_value from aTable where....
    declare cur cursor for
    select new_value from @v1 where old_value=...
    what should I use in oracle to convert above code? I was thinking about nested table, but it seems not very suitable here. Any better solutions out there?

    It's been a while since I've done any SQL Server development, but if I recall correctly, a table data type in Transact SQL is used for storing temporary result sets.
    In your example, you seem to be temporaily storing the results of a query in a Transact SQL table, and then opening a cursor to iterate over the results.
    In Oracle PL/SQL, there is usually no need to do this, just open a cursor:
    create or replace procedure test_proc as
    begin
    for curs_rec in (select old_value, new_value from myTable) loop
    ... process each row ...
    end loop;
    end test_proc;
    If you really want your results in an array which your code can iterate over, look into the BULK COLLECT clause of the SELECT statement:
    create or replace procedure test_proc as
    TYPE array_type IS TABLE of myTable%ROWTYPE INDEX BY BINARY_INTEGER;
    my_array array_type;
    begin
    SELECT * BULK COLLECT INTO my_array FROM myTable;
    for idx in my_array.FIRST..my_array.LAST loop
    dbms_output.put_line(my_array(idx).col1);
    end loop;
    end test_proc;
    Note that I have not actually compiled the above code, so there may be syntax errors :)
    Also, prior to 9i you can not BULK COLLECT into a table based on a rowtype (you need to created an array for each attribute).
    SQL Server also allows function which return table types. This is similar to PL/SQL pipelined table functions (available in 9i and higher - see the PL/SQL guide), which can be used to materialize rows which can be processed like any other result set.
    SQL Server also has a concept of temporary tables which is totally different than Oracle's temporary tables. SQL Server developers must often resort to using temporary tables in their stored procedures; in Oracle, this is rarely necessary.

  • Wikiadmin does not seem to migrate wiki data

    I recently upgraded from lion server to mountain lion server. Wikis did not automatically migrate. I saved old wiki data in ~/server.library.backup/Wiki/ and I tried using wikiadmin to migrate the data:
    1. stop wiki service
    2. sudo wikiadmin migrate -r server.library.backup/Wiki/
    3. start wiki service
    Now there was something moved to:
    /Library/Server/Wiki/FileData
    [root@truffula]FileData# ls -l
    total 0
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 3d
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 50
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 c3
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 d1
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 e4
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 fb
    However, it does not show up when I log into the wiki, and it is far too small
    original files du -h
    796M
    /Volumes/disk1/home1/kirkw/server.library.backup/Wiki/
    new files du -h
    96K
    Any advice on what to try next would be most appreciated. And by the way... I can create a new wiki, so I know that the sevice is working properly.
    Here is a copy of the output form running wikiadmin migrate:
    [kirkw@truffula]~$ sudo wikiadmin migrate -r server.library.backup/Wiki/
    Password:
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [main.m:189 72665180 +0ms] Repository location appears to be a relative path (server.library.backup/Wiki), prepending --sourceRoot ()
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [main.m:192 72665180 +0ms] Repository location is server.library.backup/Wiki
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [CSConfig:54 72665180 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:61 72665180 +4ms] -[PGCConnection connect] with [user=collab dbname=collab]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +5ms] Executing update [SET bytea_output TO escape]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT true FROM pg_attribute WHERE attrelid='global_settings'::regclass AND attname='value_int']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +4ms] Executing scalar query [SELECT value_int FROM global_settings WHERE key = 'com.apple.setting.schema_version']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:148 72665180 +0ms] Updating schema...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SELECT * FROM entity_acls WHERE entity_uid_fk = '19A307C1-82BC-45C7-845A-21839FB222C7']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT true FROM pg_attribute WHERE attrelid='global_settings'::regclass AND attname='value_int']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT value_int FROM global_settings WHERE key = 'com.apple.setting.schema_version']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:442 72665180 +0ms] Schema updates completed.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:770 72665180 +0ms] Migrating...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [SELECT uid FROM entity WHERE uid = $1::UUID OR tiny_id = $2 LIMIT 1] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb",
                  m5v217
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [SELECT * FROM user_entity LEFT OUTER JOIN entity ON user_entity.entity_uid_fk = entity.uid WHERE external_id = $1] with params [(
                  "FFFFEEEE-DDDD-CCCC-BBBB-AAAA00000000"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [UserMigrator:66 72665180 +0ms] found already migrated user 9762a4b8-713d-4336-a3a4-d24b84149828
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, long_name, ownedby_uid_fk, createdby_user_fk) VALUES ($1::UUID, $2, 'com.apple.entity.Migration', $3, $1::UUID, $4::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb",
                  m5v217,
                  20121206T102050,
                  "9762a4b8-713d-4336-a3a4-d24b84149828"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +5ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [INSERT INTO migration_entity (entity_uid_fk) VALUES ($1::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE master_entity_scratch_20121206T102050 AS SELECT * FROM entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +4ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [ALTER TABLE master_entity_scratch_20121206T102050 ADD COLUMN original_location varchar]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE document_entity_scratch_20121206T102050 AS SELECT * FROM document_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE page_entity_scratch_20121206T102050 AS SELECT * FROM page_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE user_entity_scratch_20121206T102050 AS SELECT * FROM user_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE project_entity_scratch_20121206T102050 AS SELECT * FROM project_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE blog_entity_scratch_20121206T102050 AS SELECT * FROM blog_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_attrs_scratch_20121206T102050 AS SELECT * FROM entity_attrs WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_private_attrs_scratch_20121206T102050 AS SELECT * FROM entity_private_attrs WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_acls_scratch_20121206T102050 AS SELECT * FROM entity_acls WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE file_entity_scratch_20121206T102050 AS SELECT * FROM file_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE file_data_entity_scratch_20121206T102050 AS SELECT * FROM filedata_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_changesets_scratch_20121206T102050 AS SELECT * FROM entity_changesets WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_comment_scratch_20121206T102050 AS SELECT * FROM entity_comment WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE saved_query_entity_scratch_20121206T102050 AS SELECT * FROM savedquery_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE relationship_scratch_20121206T102050 AS SELECT * FROM relationship WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE subscription_scratch_20121206T102050 AS SELECT * FROM subscription WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:776 72665180 +0ms] Migrating known users
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Warning>: [UserMigrator:269 72665180 +0ms] No Users directory found. Skipping.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:778 72665180 +0ms] Generating placeholders for all known pages and wikis
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Warning>: [ProjectMigrator:267 72665180 +0ms] No Groups directory found. Skipping.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:780 72665180 +0ms] Found 0 pages belonging to 0 wikis and 1 users.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:783 72665180 +0ms] Re-scanning 0 pages for pasted image/attachment URLs
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:536 72665180 +0ms] Copying content to real tables...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SET maintenance_work_mem TO '1GB']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [DELETE FROM migrationplaceholder_entity WHERE entity_uid_fk IN (SELECT uid FROM entity WHERE ownedby_uid_fk = $1::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:430 72665180 +0ms] Executing count query [DELETE FROM entity WHERE entity_type_fk = 'com.apple.entity.MigrationPlaceholder' AND ownedby_uid_fk = $1::UUID] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [UPDATE master_entity_scratch_20121206T102050 SET revision = 1 WHERE revision IS NULL]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [UPDATE master_entity_scratch_20121206T102050 SET is_hidden = false WHERE is_hidden IS NULL]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_blog_enabled) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_blog_enabled FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Project')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Blog')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO blog_entity (entity_uid_fk) (SELECT entity_uid_fk FROM blog_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Page')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO document_entity (entity_uid_fk, original_location) (SELECT uid, original_location FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Page')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO page_entity (entity_uid_fk, is_detail_page, is_blogpost) (SELECT entity_uid_fk, is_detail_page, is_blogpost FROM page_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO project_entity (entity_uid_fk, detail_page_fk) (SELECT entity_uid_fk, detail_page_fk FROM project_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.FileData')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO filedata_entity(entity_uid_fk, size, uti, content_type, data_uri) (SELECT entity_uid_fk, size, uti, content_type, data_uri FROM file_data_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.File')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO document_entity (entity_uid_fk, original_location) (SELECT uid, original_location FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.File')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO file_entity (entity_uid_fk, content_type, data_uid_fk) (SELECT entity_uid_fk, content_type, data_uid_fk FROM file_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_changesets (uid, entity_uid_fk, entity_revision, change_user_fk, change_action, change_type, change_time, change_comment, change_fields, change_data_bin) (SELECT uid, entity_uid_fk, entity_revision, change_user_fk, change_action, change_type, change_time, change_comment, change_fields, change_data_bin FROM entity_changesets_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_attrs (entity_uid_fk, attrs_bin) (SELECT entity_uid_fk, attrs_bin FROM entity_attrs_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_private_attrs (entity_uid_fk, attrs_bin) (SELECT entity_uid_fk, attrs_bin FROM entity_private_attrs_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DELETE FROM entity_acls WHERE entity_uid_fk IN (SELECT entity_uid_fk FROM entity_acls_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_acls (entity_uid_fk, eval_order, login, external_id, action, allow) (SELECT entity_uid_fk, eval_order, login, external_id, action, allow FROM entity_acls_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_comment (uid, parent_uids, entity_uid_fk, title, body, author_user_fk, is_approved, approvedby_user_fk, approval_time, create_time) (SELECT uid, parent_uids, entity_uid_fk, title, body, author_user_fk, is_approved, approvedby_user_fk, approval_time, create_time FROM entity_comment_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO savedquery_entity (entity_uid_fk, query_bin) (SELECT entity_uid_fk, query_bin FROM saved_query_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO relationship (uid, source_uid_fk, target_uid_fk, reltype, create_time) (SELECT uid, source_uid_fk, target_uid_fk, reltype, create_time FROM relationship_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO subscription (user_uid_fk, entity_uid_fk, notification_type) (SELECT user_uid_fk, entity_uid_fk, notification_type FROM subscription_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SELECT uid, avatar_uid_fk FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk != 'com.apple.entity.User']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:641 72665180 +0ms] Destroying migration entity and scratch tables...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE master_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE document_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE page_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE user_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE project_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_attrs_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_private_attrs_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_acls_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE file_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE file_data_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE blog_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE saved_query_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_changesets_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_comment_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE relationship_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE subscription_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [DELETE FROM migration_entity WHERE entity_uid_fk IN (SELECT uid FROM entity WHERE ownedby_uid_fk = $1::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [DELETE FROM entity WHERE uid = $1::UUID] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +7ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:669 72665180 +0ms] Done
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_attrs (entity_uid_fk) (SELECT uid FROM entity WHERE uid NOT IN (SELECT entity_uid_fk FROM entity_attrs))]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_private_attrs (entity_uid_fk) (SELECT uid FROM entity WHERE uid NOT IN (SELECT entity_uid_fk FROM entity_private_attrs))]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [UPDATE entity SET is_hidden = true WHERE entity_type_fk = 'com.apple.entity.User' AND is_hidden = false AND (short_name = 'unauthenticated' OR short_name = 'authenticated')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:793 72665180 +0ms] Importing user preferences
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSWorkerPool:151 72665180 +5ms] All workers finished, continuing
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:702 72665180 +0ms] Rebuilding search index...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SELECT true FROM entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSConnectionPool:95 72665180 +1ms] Opening DB connection
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:61 72665180 +0ms] -[PGCConnection connect] with [dbname=collab application_name=wikiadmin client_encoding=utf-8 options='-c bytea_output=escape' user=collab]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +2ms] Executing query [SELECT oid FROM pg_type WHERE typname='hstore']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT array_agg(uid::varchar) FROM entity]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [CREATE TABLE search_index_scratch_20121206T102050 AS SELECT * FROM search_index LIMIT 0]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +3ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSWorkerPool:151 72665180 +177ms] All workers finished, continuing
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:456 72665180 +0ms] Executing count query [SELECT true FROM search_index_scratch_20121206T102050 LIMIT 1]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [TRUNCATE TABLE search_index]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +3ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [INSERT INTO search_index SELECT * FROM search_index_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +6ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=139
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [DROP TABLE search_index_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +3ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [SET maintenance_work_mem TO '1GB']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [VACUUM FULL ANALYZE search_index]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +29ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSConnectionPool:291 72665180 +0ms] Closing DB connection
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:469 72665180 +0ms] -[PGCConnection close]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:469 72665180 +0ms] -[PGCConnection close]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:728 72665180 +0ms] Done
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:799 72665180 +0ms] Migration complete
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:457 72665180 +0ms] Running post-migration updates...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:106 72665180 +0ms] Executing migration SQL script /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/sql/migra tions/36.sql
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [/**
               * Copyright (c) 2010-2012, Apple Inc. All rights reserved.
               * IMPORTANT NOTE: This file is licensed only for use on Apple-branded
               * computers and is subject to the terms and conditions of the Apple Software
               * License Agreement accompanying the package this file is a part of.
               * You may not port this file to another platform without Apple's written consent.
               * IMPORTANT NOTE: This file is licensed only for use with the Wiki Server feature
               * of the Apple Software and is subject to the terms and conditions of the Apple
               * Software License Agreement accompanying the package this file is part of.
              UPDATE entity e
                 SET blog_uid_fk=(SELECT uid FROM entity b WHERE b.ownedby_uid_fk=e.uid AND b.entity_type_fk='com.apple.entity.Blog' LIMIT 1)
               WHERE e.blog_uid_fk IS NULL
                 AND (e.entity_type_fk='com.apple.entity.User' OR e.entity_type_fk='com.apple.entity.Project')
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:106 72665180 +0ms] Executing migration SQL script /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/sql/migra tions/48.sql
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [/**
               * Copyright (c) 2010-2012, Apple Inc. All rights reserved.
               * IMPORTANT NOTE: This file is licensed only for use on Apple-branded
               * computers and is subject to the terms and conditions of the Apple Software
               * License Agreement accompanying the package this file is a part of.
               * You may not port this file to another platform without Apple's written consent.
               * IMPORTANT NOTE: This file is licensed only for use with the Wiki Server feature
               * of the Apple Software and is subject to the terms and conditions of the Apple
               * Software License Agreement accompanying the package this file is part of.
              INSERT INTO user_activity (user_uid_fk, action, entity_uid_fk, entity_revision, action_time, parent_uids, container_uid_fk)
                  SELECT cs.change_user_fk AS user_uid_fk,
                         CASE cs.change_type
                           WHEN 'create' THEN 'com.apple.activity.EntityCreated'
                           WHEN 'edit' THEN 'com.apple.activity.EntityUpdated'
                         END AS action,
                         cs.entity_uid_fk,
                         cs.entity_revision,
                         cs.change_time AS action_time,
                         e.parent_uids::uuid[],
                         e.container_uid_fk
                    FROM entity_changesets cs
                      LEFT OUTER JOIN entity e ON (e.uid=cs.entity_uid_fk)
                   WHERE cs.change_type IN ('create', 'edit')
                     AND e.uid IS NOT NULL
                     AND cs.change_user_fk NOT IN (SELECT uid FROM entity WHERE entity_type_fk='com.apple.entity.User' and short_name='serverhomeu')
                     AND NOT (cs.entity_uid_fk IN (SELECT entity_uid_fk FROM page_entity WHERE is_detail_page) AND cs.change_type='create')
                     AND e.entity_type_fk IN ('com.apple.entity.Page', 'com.apple.entity.File', 'com.apple.entity.Project')
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=3
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:118 72665180 +0ms] Executing migration block #58
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [INSERT INTO session (uid, user_uid_fk, auth_token) SELECT uuid_v4(), entity_uid_fk, $1 FROM user_entity WHERE external_id='unauthenticated' RETURNING uid] with params [(
                  "2v1V8rG49lJPGyKedAXCRwJUX8KV0wUcVM4jO9P136Q="
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:289 72665180 +0ms] Executing update [INSERT INTO preview_queue (entity_uid_fk, session_uid_fk) SELECT entity_uid_fk, $1 FROM page_entity] with params [(
                  "ce2c5184-4316-9868-0784-b78c2a54eaf1"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=6
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:106 72665180 +0ms] Executing migration SQL script /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/sql/migra tions/68.sql
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [/**
               * Copyright (c) 2010-2012, Apple Inc. All rights reserved.
               * IMPORTANT NOTE: This file is licensed only for use on Apple-branded
               * computers and is subject to the terms and conditions of the Apple Software
               * License Agreement accompanying the package this file is a part of.
               * You may not port this file to another platform without Apple's written consent.
               * IMPORTANT NOTE: This file is licensed only for use with the Wiki Server feature
               * of the Apple Software and is subject to the terms and conditions of the Apple
               * Software License Agreement accompanying the package this file is part of.
              UPDATE entity e
                 SET blog_uid_fk=(SELECT uid FROM entity b WHERE b.ownedby_uid_fk=e.uid AND b.entity_type_fk='com.apple.entity.Blog' LIMIT 1)
               WHERE (e.blog_uid_fk IS NULL OR e.blog_uid_fk=e.uid)
                 AND (e.entity_type_fk='com.apple.entity.User' OR e.entity_type_fk='com.apple.entity.Project')
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:464 72665180 +0ms] Post-migration updates completed.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:469 72665180 +0ms] Performing a VACUUM FULL ANALYZE of user_activity
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [VACUUM FULL ANALYZE user_activity]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +8ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    [kirkw@truffula]~$

    Hi,
    Interestingly, the same app seems to deploy to a stand alone OC4J(9.0.4)server without any problems. The version of 9ias that I'm working with is 9.0.3.1
    Thanks,
    David R

  • I bought  an iPad 3 yesterday; this is an upgrade from the original iPad. I was told that migrating the data would be simple. My desktop is a PC with Windows 7 Professional. I can't find a way to back up my old iPad so I can restore the data to the new

    I bought an update to the original iPad an iPad 3. In was told that migrating the data from my old iPad to the new will be a snap. Alas, it isn't. My desktop is a new high end PC that came preloaded with Windows 7 Professional and I have had nothing but problems. My earlier computer was XP and everything, including my Apple interface, in particular iTunes, worked without problems. When I was trying to back up my data from the old iPad to my desktop, the only thing it would do is synchronize, then got an error message to download the latest iTunes, which I did but it still did not work. I have a lot of music both purchased through iTunes and a lot of others which were CDs that were copied to the desktop. I also have a lot of books through Kindle and other books in iBooks and audio books from other sources, plus two iPods I want to sync. I need some advise on where I find the back up feature in iTunes so I can copy all the data on from my old iPad. Your help would be most appreciated. Thank you.

    In technical support, sometimes you have to make educated guesses. I'm sorry that you were offended.
    iTunes does prompt when it is going to erase a device, and the message is clear.
    She said in her message that she was able to successfully sync the old ipad. This indicated to me that itunes wiping the data was not an issue, because either it had been setup at the apple store (in which case it doesn't actually wipe the ipad despite saying it will*) (*based on a single case I saw), or because the itunes media folder was migrated.
    Furthermore, my solution was to tell her how to backup her ipad (by either doing it manually, or as a last resort, by deleting the corrupt backup -- that she couldn't access anyway.)
    I got that last part of the instructions from the "Taking Control of your iphone" book which I found samples of when I did a google search for "corrupted backup itunes".
    She marked this as a solution, so it worked for her.

  • Error while migrating BLOB data

    Hi ,
    I am migrating the data from oracle to oracle and both soruce and target tables have BLOB type field.
    I am getting error when I am executing the interface with these blob fields. But My interface is successfull if I am not maaping this blob files.
    Below is the error message.
    ODI-1217: Session BLOB (162501) fails with return code 942.
    ODI-1226: Step BLOB fails after 1 attempt(s).
    ODI-1240: Flow BLOB fails while performing a Loading operation. This flow loads target table IMAGES.
    ODI-1228: Task SrcSet0 (Loading) fails on the target ORACLE connection YAGLD.
    Caused By: java.sql.BatchUpdateException: ORA-00942: table or view does not exist
    Thanks,
    Patel.

    Hi Ayush ,
    Thank you for the information. Yes it is a bug and it seems it is rectified in 11.1.1.7 version.
    thanks ,
    Patel.

  • Unable to migrate table, character set from WE8MSWIN1252 to AL32UTF8

    Hi,
    On our source db the character set is AL32UTF8
    On our own db, we used the default character set of WE8MSWIN1252 .
    When migrating one of the table, we get an error of this: ORA-29275: partial multibyte character
    So in to alter our character set from WE8MSWIN1252 to AL32UTF8, we get this error:
    ALTER DATABASE CHARACTER SET AL32UTF8
    ERROR at line 1:
    ORA-12712: new character set must be a superset of old character set
    I would sure not like to reinstall the db and migrate the tables again. Thanks.

    See this related thread - Re: Want to change characterset of DB
    You can use the ALTER DATABASE CHARACTER SET command in very few cases. You will most likely have to recreate the database and re-migrate the data.
    HTH
    Srini

  • How do I migrate the data on a RAID on my old Mac Pro to a new RAID array on my new Mac Pro?

    We have an older Mac Pro (no Thunderbolt) with four drives (2 of which are configured RAID 0).  The new machine has a LaCie RAID on it with 2 drives RAID 1 and 2 drives RAID 0.  What's the best way to migrate the data from the old system to the new system?  Do I use Migration asst to get the data and settings from the old main to the new main and then xfer the data from the ancillary drives over?

    Read my post in this discussion.
    https://discussions.apple.com/thread/3445538?start=0&tstart=0

  • Need help in Migration of data !

    We developed a application using Apex and currently it is going through client testing.
    There is one challenge at client side; there are some third party legacy inventory systems at client side where there is data stored in databases like Paradox, SQL server, XML the customers have been using them for last 10 to 15 years.
    Now there is some amount of data where they enter into those system; we want to extract some of the data and show in our application. Ours is a hosted On Demand application we need to migrate the data from the client machine and push into our server so that they can view the data online. And we want to run a scheduler every day to extract the data .
    Do you have any idea how we can do this in APEX or any tool that can support our need.
    Did you hear about spectral.com (full convert)
    I really appreciate your help on this.

    Hi,
    it is not too difficult to load data into a database using only Apex tools, but the problem with this is that it can't be completely automated, as at some stage, a user would have to do a manual file upload.
    In order to achieve completely automated upload you would need access at a lower database and database server O/S level as well as have direct connectivity between your Apex server and the legacy source systems. As your Apex system is a "hosted On Demand application" you may be severely limited in your access at those levels.
    Depending on your access, you would typically extract and load data from other non-oracle sources using technologies like Oracle's heterogeneous Gateways or third party odbc connectivity and use database links. Or you could automate files to be dropped from the legacy systems to somewhere that is accessible to the destination system where it could be loaded using tools such as SQL Loader or External Tables. This could be scheduled using tools such as cron or dbms scheduler.
    I know this is very general, but I hope it points you in the right direction.
    Regards
    Andre

  • I can't migrate my data from my old pc to my new macbook pro

    Hi,
        I have been trying to migrate my data from my PC to my new mac but it always seems to fail.
    At first, I would begin the migration assistant and then after a while the PC would just crash.
    But then I finally thought I managed to get it working. It said that process was complete (on both the PC and mac), but there was no data on my computer and no music in my iTunes.
    If anyone has any advice I would really appreciate it!!
    PS I also have an Ethernet cable if that's of any use but I don't know how to use it.

    I suggest you stop using the Migrastion Assistant. Simple fact is, as you have found out, that it does not work most of the time and when it fdoes actuall transfer data it doesn't do it very well.
    Just network the 2 computer together over your LAN and copy and past the files you want to move to the Mac.
    Otr use an External drive, formatted either FAT32 or exFAT (doinig the formatting on the Windows PC) and then copy to the external from the Win PC and then copy from the external to the Mac.
    You'll be happier.

  • How to migrate the data from DB to another DB

    Hi folks,
                 In my project I have one requirement. Let me explain in detail we are maintain two databases one for
                 master database called *GIIS* and one is history database HIST. Both DB version is 10g R1.
                 (Both DB’s have same no table as well structures)
                 1.  The GIIS database contains nearly 400 tables (master table as well as temporary table)   
                       each Master table having it’s own temporary table.
                 2. Whenever we made the entry first it will go to temporary table after authorized that entry it will move to the master table
                 3. But the temporary table contains the data after move to master table .
                 4.     The temporary table data’s will be move to the HIST database each and every day at the night.
                    This migration we done through the procedure.  After migration complete the temporary table data’s will de deleted.
    My Question:
               1.     Whether it’s good practice to migrate the data from GIIS DB to another HIST DB using oracle stored procedure.
                     (we created the DB link from GIIS to HIST) 
               2.     If not can any one suggest me the way to migrate the data from GIIS to HIST.?
               3.     Is there any other possibility to migrate the data from GIIS to HIST with out using procedure?Thanks
    Arun

    Arun wrote:
    Hi Mr.Aman Brother
    First of all sorry . I am not saying that don't command my requirement. Just i want know the way of migrate the data from one DB to another DB.
    you saying that IMPORT/EXPORT is one of the way to do migration.
    But in client side they don't know how to do the IMPORT & EXPORT the database..
    Can you suggest me the another way to do that
    Arun,
    If the client doesn't know how to do exp/imp, I would really doubt and would be immensely concerned before suggesting the client any other way. If they don't know, tell them that there is a concept called test database which is used for learning so they should invest time to learn this technique since the other options suggested by fellow members are far more tougher than this one.
    Aman....

  • CR XI to 2008, can I create a new MySQL & later migrate SQLServer data?

    I am creating a new environment with 2008 testing and all before I move my reports over.   The current environment is CR XI with a SQL Server database.   Can I create the 2008 server with MySQL and be able to migrate my data over to test with? 
    If you have any advice or instruction, I'd appreciate it!! Thanks!

    Let me clarify and see if it still holds true.  The database for my data for the report's content is an oracle database, but Crystal Reports is using a SQL Server database for storing the report and schedules.   Though I believe all of our reports are quite simple compared to most anyway.   My concern is that the users, reports and their schedules set up by the users make it over.  I haven't really done anything with the MySQL database yet, so no damage yet .

  • How to migrate the data in AS/400 to Oracle

    I have a customer, they plan to migrate their data from AS/400 DB2 V5R3,V6R1 to Oracle 11g. Since the source system is in production, they can only halt for 48 hours,
    which way is the fastest?
    ORACLE workbench can only support to IBM DB2/400 V4R3 and V4R5, must we export the data from AS400 to ASCII then sql load to Oracle, the user data size is about 3T?
    even get the initial data, how to capture the increased data? Oracle GoldenGate 11g can't access AS400 as source.

    Hello,
    An option would be to use the Database Gateway for DRDA. With this tool, all the data in the iSeries machine will be seen like an Oracle Table.
    You will be able to run statements like :
    INSERT INTO <Oracle_table> SELECT <col1, col2.....> FROM <iSeries_table>@AS400
    or even like
    CREATE TABLE <oracle_table> AS SELECT * FROM <iSeries_table>@AS400
    The Database Gateway for DRDA is more an integration tool than a migration tool. You will be able to access live data on the AS/400 like this data was in Oracle
    table(s). You can even modify the AS/400 data (insert, update, delete) from Oracle. This can avoid to have to do a one-time migration.
    The Database Gateway for DRDA documentation is available at http://download.oracle.com/docs/cd/E11882_01/gateways.112/e12014/toc.htm

  • Migration of data of GL 10.7 for 11i

    Good morning
    To do the migration of data of GL, do I need to use some tool??
    Will I have to use SQLLOAD, to do a package, to use IMPORT/EXPORT??
    Somebody can give me a trick, it can be a link, article, document
    Thank you!
    JOSE CARLOS

    Hi Guys,
    Following up on your discussion of upgrading. If I have a new server, doing the latest Apps 11i install (stable one) and then load my previous version's data (therefor take the export and import it into the blank installation... is that the common methodology. We are on Apps 11.5.9, no patching done for a year, and now we have to move forward, so I have been contemplating best methodology. I take it to be something like this? : Note (Single Node Server Installation)
    1. Get new server, install new OS (SuSE Linux 9)
    2. Install blank Oracle 9i DB
    3. Install Oracle Apps on Server
    4. Take Backup before Importing current data from DB.
    5. Run in Parallel for a month to confirm data to be 100% correct.
    Thanks, a yes or no (if that simple) will suffice
    Regards,
    Willis

  • Migrating SQL data from iSCSI LUNs on one NetApp to another

    Hi....
    I have a clustered pair of SQL 2012 servers which are using the Microsoft iSCSI initiator service to attach to some LUNs on a NetApp storage system.  I am trying to migrate the data on these LUNs to a different NetApp system and am not 100% sure how
    I should do this.  I have dedicated LUNs for:
    Database data
    Logs
    TempDB data
    TempDB logs
    Quorum
    Backup
    Each LUN is mapped to a drive.
    Does anyone know the best way to go about this?  I was going to detach all clients from the database, stop cluster services on the standby node, copy the data from active node to the standby node on the new LUNs with the same drive mappings, then stop
    all services on the active node, followed by turning on services on the standby making it the active.
    I have a feeling this isn't going to work as I expect so I figure I would ask the question.

    Hi,
    I recommend you check out the following articles:
    WINDOWS 2008 / 2008 R2 SAN Migration
    http://blogs.technet.com/b/hugofe/archive/2012/07/04/windows-2008-2008-r2-san-migration.aspx
    Swapping a new larger LUN for an existing LUN
    http://social.technet.microsoft.com/Forums/en-US/cfeac1ce-760f-4a92-a20c-02e4181b876b/swapping-a-new-larger-lun-for-an-existing-lun
    Best Regards,
    Tracy
    Tracy Cai
    TechNet Community Support

Maybe you are looking for

  • My imports are not showing up in Photos or Events

    My imports are not showing up in Photos or Events.  The only place I can see them is in the "Last Import" folder.  When I try to re-import them it pops up the Duplicate warning which means they are in the library but not showing up.  Any ideas?

  • Java ME SDK 3.0 not working on Windows 7 64-bit

    Hi everybody, the sdk has no 64-bit Version and the solution described at: http://forums.sun.com/thread.jspa?threadID=5434297&tstart=45 did not work for me. Even after changing the two configuration files bin\java and toolbar\bin\java to point to 32-

  • Error implementing MSS

    Hi, I'm trying to implement MSS on EP SP9. I just downloaded MSS ZIP file called BPMSS601_18-20001489.ZIP from Portal Content Portofolio. When I try to deploy this ZIP file with SDM, this error appears: com.sap.sdm.util.sduread.IllFormattedSduFileExc

  • Find a delete date for FI parked invoice?

    Hi, Can any one tell me how to find the date when FI parked invoice is deleted? Any help will be appreciated. Thanks

  • Optimizer Setup

    Hi, Our Solution Manager system is dual stack (ABAP + JAVA) , Unicode. I upgraded Kernel at ABAP level and imported Support Packages SP10 and finally completed Optimizer setup and it is working fine. But, I forgot about  Kernel patch Upgrade, Support