show/hide this revision's text 4 The DDL for the source and target tables has been added.

Here is the SQL Server source table, containing about 1G of data in 1.9 million rows:

CREATE TABLE mss_t2 (   sampling_id                       BIGINT NOT NULL,   sample_set_number                 BIGINT NOT NULL,   connection_number                 BIGINT NOT NULL,   blocker_owner_table_name          VARCHAR ( 257 ) NULL,   blocker_lock_type                 VARCHAR ( 32 ) NULL,   blocker_owner_name                VARCHAR ( 128 ) NULL,   blocker_table_name                VARCHAR ( 128 ) NULL,   blocker_reason                    TEXT NULL,   blocker_row_identifier            VARCHAR ( 32 ) NULL,   current_engine_version            TEXT NOT NULL,   page_size                         INTEGER NOT NULL,   ApproximateCPUTime                DECIMAL ( 30, 6 ) NULL,   BlockedOn                         BIGINT NULL,   BytesReceived                     BIGINT NULL,   BytesSent                         BIGINT NULL,   CacheHits                         BIGINT NULL,   CacheRead                         BIGINT NULL,   "Commit"                          BIGINT NULL,   DiskRead                          BIGINT NULL,   DiskWrite                         BIGINT NULL,   FullCompare                       BIGINT NULL,   IndAdd                            BIGINT NULL,   IndLookup                         BIGINT NULL,   Isolation_level                   BIGINT NULL,   LastReqTime                       TEXT NOT NULL DEFAULT '1900-01-01',   LastStatement                     TEXT NULL,   LockCount                         BIGINT NULL,   LockName                          BIGINT NULL,   LockTableOID                      BIGINT NULL,   LoginTime                         TEXT NOT NULL DEFAULT '1900-01-01',   LogWrite                          BIGINT NULL,   Name                              VARCHAR ( 128 ) NULL,   NodeAddress                       TEXT NULL,   Prepares                          BIGINT NULL,   PrepStmt                          BIGINT NULL,   QueryLowMemoryStrategy            BIGINT NULL,   QueryOptimized                    BIGINT NULL,   QueryReused                       BIGINT NULL,   ReqCountActive                    BIGINT NULL,   ReqCountBlockContention           BIGINT NULL,   ReqCountBlockIO                   BIGINT NULL,   ReqCountBlockLock                 BIGINT NULL,   ReqCountUnscheduled               BIGINT NULL,   ReqStatus                         TEXT NULL,   ReqTimeActive                     DECIMAL ( 30, 6 ) NULL,   ReqTimeBlockContention            DECIMAL ( 30, 6 ) NULL,   ReqTimeBlockIO                    DECIMAL ( 30, 6 ) NULL,   ReqTimeBlockLock                  DECIMAL ( 30, 6 ) NULL,   ReqTimeUnscheduled                DECIMAL ( 30, 6 ) NULL,   ReqType                           TEXT NULL,   RequestsReceived                  BIGINT NULL,   Rlbk                              BIGINT NULL,   RollbackLogPages                  BIGINT NULL,   TempFilePages                     BIGINT NULL,   TransactionStartTime              TEXT NOT NULL DEFAULT '1900-01-01',   UncommitOp                        BIGINT NULL,   Userid                            VARCHAR ( 128 ) NULL,   previous_ApproximateCPUTime       DECIMAL ( 30, 6 ) NOT NULL DEFAULT 0.0,   interval_ApproximateCPUTime       AS ( COALESCE ( "ApproximateCPUTime", 0 ) - previous_ApproximateCPUTime ),   previous_Commit                   BIGINT NOT NULL DEFAULT 0,   interval_Commit                   AS  ( COALESCE ( "Commit", 0 ) - previous_Commit ),   previous_Rlbk                     BIGINT NOT NULL DEFAULT 0,   interval_Rlbk                     AS  ( COALESCE ( Rlbk, 0 ) - previous_Rlbk ) )

Here is the target table in SQL Anywhere 11:

CREATE TABLE sa_t2 (   sampling_id                       BIGINT NOT NULL,   sample_set_number                 BIGINT NOT NULL,   connection_number                 BIGINT NOT NULL,   blocker_owner_table_name          VARCHAR ( 257 ) NULL,   blocker_lock_type                 VARCHAR ( 32 ) NULL,   blocker_owner_name                VARCHAR ( 128 ) NULL,   blocker_table_name                VARCHAR ( 128 ) NULL,   blocker_reason                    TEXT NULL,   blocker_row_identifier            VARCHAR ( 32 ) NULL,   current_engine_version            TEXT NOT NULL,   page_size                         INTEGER NOT NULL,   ApproximateCPUTime                DECIMAL ( 30, 6 ) NULL,   BlockedOn                         BIGINT NULL,   BytesReceived                     BIGINT NULL,   BytesSent                         BIGINT NULL,   CacheHits                         BIGINT NULL,   CacheRead                         BIGINT NULL,   "Commit"                          BIGINT NULL,   DiskRead                          BIGINT NULL,   DiskWrite                         BIGINT NULL,   FullCompare                       BIGINT NULL,   IndAdd                            BIGINT NULL,   IndLookup                         BIGINT NULL,   Isolation_level                   BIGINT NULL,   LastReqTime                       TEXT NOT NULL DEFAULT '1900-01-01',   LastStatement                     TEXT NULL,   LockCount                         BIGINT NULL,   LockName                          BIGINT NULL,   LockTableOID                      BIGINT NULL,   LoginTime                         TEXT NOT NULL DEFAULT '1900-01-01',   LogWrite                          BIGINT NULL,   Name                              VARCHAR ( 128 ) NULL,   NodeAddress                       TEXT NULL,   Prepares                          BIGINT NULL,   PrepStmt                          BIGINT NULL,   QueryLowMemoryStrategy            BIGINT NULL,   QueryOptimized                    BIGINT NULL,   QueryReused                       BIGINT NULL,   ReqCountActive                    BIGINT NULL,   ReqCountBlockContention           BIGINT NULL,   ReqCountBlockIO                   BIGINT NULL,   ReqCountBlockLock                 BIGINT NULL,   ReqCountUnscheduled               BIGINT NULL,   ReqStatus                         TEXT NULL,   ReqTimeActive                     DECIMAL ( 30, 6 ) NULL,   ReqTimeBlockContention            DECIMAL ( 30, 6 ) NULL,   ReqTimeBlockIO                    DECIMAL ( 30, 6 ) NULL,   ReqTimeBlockLock                  DECIMAL ( 30, 6 ) NULL,   ReqTimeUnscheduled                DECIMAL ( 30, 6 ) NULL,   ReqType                           TEXT NULL,   RequestsReceived                  BIGINT NULL,   Rlbk                              BIGINT NULL,   RollbackLogPages                  BIGINT NULL,   TempFilePages                     BIGINT NULL,   TransactionStartTime              TEXT NOT NULL DEFAULT '1900-01-01',   UncommitOp                        BIGINT NULL,   Userid                            VARCHAR ( 128 ) NULL,   previous_ApproximateCPUTime       DECIMAL ( 30, 6 ) NOT NULL DEFAULT 0.0,   interval_ApproximateCPUTime       DECIMAL ( 30, 6 ) NOT NULL COMPUTE ( COALESCE ( "ApproximateCPUTime", 0 ) - previous_ApproximateCPUTime ),   previous_Commit                   BIGINT NOT NULL DEFAULT 0,   interval_Commit                   BIGINT NOT NULL COMPUTE ( COALESCE ( "Commit", 0 ) - previous_Commit ),   previous_Rlbk                     BIGINT NOT NULL DEFAULT 0,   interval_Rlbk                     BIGINT NOT NULL COMPUTE ( COALESCE ( Rlbk, 0 ) - previous_Rlbk ),   PRIMARY KEY ( sample_set_number, connection_number ) );
        
    Post Made Community Wiki by Breck Carter

show/hide this revision's text 3 oledb and linked-server are more important to the context than sql-server and tuning
show/hide this revision's text 2 tags
show/hide this revision's text 1