(V8.1 REPLICATION) UPDATABLE SNAPSHOT환경 구축을 위한 초기 작업

제품 : ORACLE SERVER
작성날짜 : 2001-07-19
(V8.1 REPLICATION) UPDATABLE SNAPSHOT환경 구축을 위한 초기 작업
=============================================================
1. 개요
=======
Symmetric Replication의 한 종류인 updatable snapshot환경의 구축을 위해서는
replication manager를 사용하도록 한다. 이 문서는 replication manager사용을
통해 snapshot group및 object 등을 등록하고 관리하기 이전에 master및 snapshot
site에서 미리 설정되고 수행되어야 하는 작업들을 정리한다.
이중 일부 작업은 replication manager를 통해서도 구현이 되지만, 정확한
수행이 요구되어 지는 작업에 대해서는 이 문서에서와 같이 직접 SQL command를
통해 수행되어지는 것이 권고된다.
Oracle 8.1.x부터는 snapshot과 materialized view가 동의로 사용되어지나, 이
문서에는 snapshot으로 표시한다.
2. Init.ora parameters
======================
아래와 같은 initialisation parameter들이 추가되거나 수정되어져야 한다.
아래의 설정은 master site와 snapshot site모두 설정이 필요하며, master site가
하나뿐인 경우는 job_queue부분과 parallel_ parameter의 경우는 설장할 필요가
없다.
Parameter 이름 권장되는 초기 값
COMPATIBLE 8.1.5.0.0 이상
SHARED_POOL_SIZE 20M ~ 40M 정도가 추가로 요구
PROCESSES 현재 값에서 12정도 추가
GLOBAL_NAMES 반드시 TRUE
OPEN_LINKS 4, 추가되는 master site당 2 증가
DISTRIBUTED_TRANSACTIONS 최소 5 이상 (기본값은 trsactions/4)
가되는 master site당 2 증가
REPLICATION_DEPENDENCY_TRACKING TRUE
아래의 값은 상황에 맞게 조정하여 사용한다.
JOB_QUEUE_INTERVAL 10 초
JOB_QUEUE_PROCESSES 3, 추가되는 master site당 1씩 증가
PARALLEL_MAX_SERVERS 10
PARALLEL_MIN_SERVERS 2, max server의 갯수와 동일한것이 권장
parallel propagation을 사용하지 않고자
하면 설정하지 않는다.
SNAPSHOT_ 로 시작하는 parameter나 JOB_QUEUE_KEEP_CONNECTIONS parameter는
Oracle 8.1에서는 없어졌으므로 지정하지 않도록 한다.
3. Tablespace 요구 사항
=======================
다음은 replication을 사용하기 위해 추가적으로 필요한 tablespace용량이다.
Tablespace 권장사항
SYSTEM 최소 40 Mb free space
ROLLBACK SEGMENTS 최소 30 Mb free space
TEMPORARY 최소 20 Mb free space
4. Replication Catalogue 설치
==============================
database생성시에 replication catalog를 설치하지 않았다면, Database
Configuration Assistant 를 이용하여 Advance Replication Option부분을
database에 추가하도록 하거나, 아니면 다음과 같이 작업한다.
cd $ORACLE_HOME/rdbms/admin
sqlplus internal
SQL>spool rep.log
SQL>@catrep
SQL>spool off
이 script는 약 1시간 정도 수행되며, spool을 받아 수행에 문제가 있었는지
이후에 확인하도록 한다.
[주의] 이 script를 수행하게 되면, replication관련 table과 queue등이 system
owner로 생성되게 된다.
그러므로 이후에 replication작업이 일시 중단되어 queue가 커지게 되면,
system user의 default tablespace에 부담이 되므로 system owner의
default tablespace를 tools나 그외 replication관리를 위한 별도의
table로 일시 지정하도록 한다.
SQL>ALTER USER sysem DEFAULT TABLESPACE REPTBS;
catrep의 수행이 끝나면 spool로 생긴 rep.log도 확인하여 보고, 아래 문장을
통해 invalid상태인 object를 확인하고 재 compile을 시도한다.
SQL> SELECT OWNER, OBJECT_NAME FROM ALL_OBJECTS
WHERE STATUS = 'INVALID';
이때 만약 SYS나 SYSTEM package의 body가 invalid로 나타나면 다음과 같이 재
compile을 시도한다. package body만 invalid인데 aler package문장에서 compile
body대신 compile이라고만 하면 그 package에 대한 definition이 변경되어,
이 package와 dependency관계에 있는 다른 object도 invalid상태가 되도록 한다.
작업이 성공적으로 끝났으면, system user의 default tablespace의 원래대로,
tool나 system으로 수정한다.
SQL> alter user system default tablespace system;
5. Setup NET8
=============
Replication환경에 포함된 모든 server는 listener를 구동하도록 하며, snapshot
site에서는 master site를 가리키는 service alias를 tnsnames.ora file에 등록하
도록 한다.
또한, replication manager를 사용하는 client도 tnsnames.ora file에 master와
snapshot site와 연결가능하도록 service alias를 net8 easy configuration등을
통하여 등록하도록 한다.
6. Replication Manager Setup Wizard
===================================
위의 작업이 모두 끝났으면 앞으로의 작업은 replication manager를 통해서도
수행 가능하다.
그러나 이 문서에 포함된 내용은 replication환경 설정시 한번만 필요한 작업이며,
이 부분에 대한 사소한 실수도 이후 사용에 문제를 야기하기 때문에, 여기에 포함된
작업만큼은 sql command를 통해 직접 작업하기를 권고한다.
Replication manager가 포함되어 있는 OEM version은 1.4부터이며, Oracle8.1의
경우는 2.1이 최적화되어 있다. 그러나 그 이전 version도 사용가능하다.
7. Replication Users
=====================
일반적으로, multi-master환경보다는 updatable snapshot환경이 더 보안이 문제시
된다. multi-master의 경우는 일반적으로 중앙에서 같은 db admin에 의해 관리
되는것이 일반적이나 snapshot의 경우는 지역적으로 떨어져 별개로 관리되는 경우가
많아 그 snapshot에서 master site의 database에 손상을 주는 일을 막는것이
중요하여, user구성은 multi-master환경보다 복잡하다.
Snapshot Site Master Site
Replication administrator
Snapshot replication administrator ---> Proxy snapshot administrator
Propagator ---> Receiver
Refresher ---> Proxy refresher
Snapshot Owner(s) ---> Proxy refresher
- Replication administrator: master site에서, master group들의 구성과
관리를 책임진다.
- Snapshot administrators: snapshot site에서 snapshot replication group을
구성하고 관리하는 책임을 지며, master site의 Proxy administrator가
master group의 최소한의 access만 허용하게 된다.
- Propagators: deferred transaction을 master site에 전달하면, master site의
Receiver가 전달받은 data를 master table에 적용시킨다.
- Refreshers: snapshot site에서 master site의 변경된 data를 snapshot
site로 끌어오는 역할을 하며, master site의 Proxy refresher는 master
site의 table에 대한 최소한의 acess만을 허용한다.
이러한 user들의 생성하고 이용하는 방법은 여러가지로 가능하다. 아래에서는,
그중 가장 일반적으로 사용되는 방법을 기술한다.
8. Replication user 생성 및 권한 부여
=====================================
Oracle 8.1부터 updatable snapshot 환경 구축시 trusted와 untrusted두가지
방법이 가능하다. untrusted의 경우 snapshot site가 master site와 같은 관리자
아래에 포함되지 않아 보안을 더 강화해야 하는 model이다.
하나의 master site에 snapshot group이 여러개이고, 각 snapshot별로, 이
snapshot group을 공유하는것이 아니고, 별개로 사용하는 경우 서로 다른
snapshot이 사용하는 group에 대해 보안을 유지하려면 untrusted model을 사용해야
하나 실제 이러한 환경으로 구성되는 일은 거의 없고, 작업의 번거로움으로 이
문서에는 trusted model에 대해서는 설명한다.
8.1 Master Site user와 권한
(1) Replication Administrator (REPADMIN)
SQL>CONNECT system/<password>
SQL>CREATE USER repadmin IDENTIFIED BY <password>
DEFAULT TABLESPACE <tablespace name>
TEMPORARY TABLESPACE <tablespace name>;
SQL>GRANT connect, resource TO repadmin;
SQL>EXECUTE dbms_repcat_admin.grant_admin_any_schema('repadmin');
SQL>GRANT comment any table TO repadmin;
SQL>GRANT lock any table TO repadmin;
만약 replication group이 어느 특정 schema에만 한정된다면,
grant_admin_any_schema대신 grant_admin_schema를 사용하여도 된다.
(2) Proxy snapshot administrator / Receiver / Proxy refresher (SNAPPROXY)
master site의 proxy snapshot administrator, receiver, proxy refresher는
하나의 user로 관리하는 것이 일반적이다. 이러한 SNAPPROXY user를 생성하지
않고 REPADMIN user가 이러한 역할도 수행하도록 설정할 수 있으나, 그렇게
되면 snapshot site에 너무 많은 권한을 부여하게 되어 바람직하지 않다.
replication manager를 이용해 이러한 user를 생성하면 master site에 연결된
snapshot site마다 각각의 snapproxy_n과 같은 형태로 user를 생성하나,
같은 snapshot group에 대하여 이렇게 각각의 user를 생성하는 것은 의미가
없으므로 권장되지 않는다.
SQL>CONNECT system/<password>
SQL>CREATE USER snapproxy IDENTIFIED BY <password>
DEFAULT TABLESPACE <tablespace name>
TEMPORARY TABLESPACE <tablespace name>;
(3) Proxy snapshot administrator privileges
SQL>CONNECT system/<password>
SQL>BEGIN
dbms_repcat_admin.register_user_repgroup(
username => 'snapproxy',
privilege_type => 'proxy_snapadmin',
list_of_gnames => NULL);
SQL>END;
SQL>/
register_user_repgroup procedure를 통해 권한을 부여한다. 이때, "create
session" 과 dbmsobjgwrapper / dbms_repcat_untrusted package에 대한
"execute"권한이 부여된다.
Replication group에 table을 add하게 되면 그 table에 대한 "select" 권한이
부여된, master objects에 대한 DML권한은 이 user에게 부여되지 않는다.
(4) Receiver privileges
SQL>CONNECT system/<password>
SQL>BEGIN
dbms_repcat_admin.register_user_repgroup(
username => 'snapproxy',
privilege_type => 'receiver',
list_of_gnames => NULL);
SQL>END;
SQL>/
이 문장을 통해 "create session" 과 dbms_defer_internal packages,
dbms_defer package에 대한 "execute"권한이 부여된다. 그러나 이것도
마찬가지로 master object에 대한 DML권한을 부여하지 않는다.
또한 receiver는 replication object를 추가한 후 replication support시에
생성되는 <schema>.<object name>$RP (LOB table에 대해서는 $RL)에 대한
execute권한을 부여 받아 master site에 변경사항을 적용하게 된다.
(5) Proxy refresher privileges
SQL>CONNECT system/<password>
SQL>GRANT create session TO snapproxy;
SQL>GRANT select any table TO snapproxy;
(6) Schema Owner(s) (여기에서는 REPUSER로 명시)
SQL>CONNECT system/<password>
SQL>CREATE USER repuser IDENTIFIED BY <password>
DEFAULT TABLESPACE <tablespace name>
TEMPORARY TABLESPACE <tablespace name>;
SQL>GRANT connect, resource TO repuser;
8.2 Snapshot Site user와 권한
(1) Snapshot administrator / Propagator / Refresher (SNAPADMIN)
snapshot administrator, propagator, refresher에 대해서 하나의 user로
관리하는것이 일반적이다.
SQL>CONNECT system/<password>
SQL>CREATE USER snapadmin IDENTIFIED BY <password>;
DEFAULT TABLESPACE <tablespace name>
TEMPORARY TABLESPACE <tablespace name>;
(2) Snapshot administrator 권한
SQL>CONNECT system/<password>
SQL>EXECUTE dbms_repcat_admin.grant_admin_any_schema('snapadmin');
SQL>GRANT comment any table TO snapadmin;
SQL>GRANT lock any table TO snapadmin;
(3) Propagator 권한
SQL>EXECUTE DBMS_DEFER_SYS.REGISTER_PROPAGATOR('snapadmin');
(4) Refresher 권한
SQL>GRANT create any snapshot TO snapadmin;
SQL>GRANT alter any snapshot TO snapadmin;
refresher와 대응하는 master site의 proxy refrsher에 의해 master site의
table에 대한 "select any table" 권한을 가지게 된다.
(5) Schema Owner(s) (여기에서는 REPUSER로 명시)
replicate되고자 하는 table에 대한 master site의 schema와 동일한 이름의
shema가 snapshot site에서도 필요하다. 단 password는 같을 필요는 없다.
만약 다른 schema에 대해서 updatable snapshot을 생성하면, snapshot생성시는
오류없이 만들어지지만, create_snapshot_repobject 수행시에 아래와 같이
오류가 발생할 것이다.
ORA-23306: schema <schema name> does not exist
ORA-23308: object <schema name>.<object name> does not exist or is invalid
아래 문장과 같은 schema owner생성시 주의할 점은 이 권한을 role을 통해
부여하지 말고 직접 주어야 한다는것이다. 즉, 이미 connect, resource등을
통해 create table과 같은 권한은 부여된 상황임에도 불구하고, 이후에
procedure나 package등에서 이 권한이 필요한 경우 role을 통해 부여된 것은
인식이 되지 않고 ORA-1031이 발생하기 때문에 아래와 같이 직접 권한을
부여하여야 한다.
SQL>CONNECT system/<password>
SQL>CREATE USER repuser IDENTIFIED BY <password>
DEFAULT TABLESPACE <tablespace name>
TEMPORARY TABLESPACE <tablespace name>;
SQL>GRANT connect, resource TO repuser;
SQL>GRANT create table TO repuser;
SQL>GRANT create snapshot TO repuser;
이 user가 master site에 대해서 수행할 수 있는 권한에 대해서는 이 user에서
master site로 생성하는 database link를 어느 user로 connect하느냐에 달려
있으며 이것은 9.4에서 설명한다.
(6) End Users
snapshot schema에 있는 snapshot을 이용하는 user가 별도로 존재할 수
있으며, 이 경우 특별한 권한이 추가적으로 필요하지는 않고, snapshot
object에 대한 필요한 권한을 부여하면 된다.
9. Database Link
================
database link를 생성하기 전에 중요한 것은 replication 환경에 포함된 모든
database는 고유한 global name을 가지고 있어야 한다. default global name은
<db_name>과 동일하나 다음과 같이 문장을 통해 global name을 수정가능하다.
그러므로 db_name이 같더라도 이렇게 global name을 수정하여 replication
환경을 구성할 수 있다.
SQL>ALTER DATABASE RENAME GLOBAL_NAME TO <new global name>;
SQL>SELECT * FROM GLOBAL_NAME;
updatable snapshot환경에서 database link가 제대로 구성되지 않으면 이후
작업에 계속 문제가 생기므로 주의하여야 한다. 이 database link는 snapshot
site에서 master site로만 구성하면 되며, 반대로 master site에서 snapshot
site로 구성할 필요는 없다.
(1) Public Database Links
Net8 connection alias를 이용하여 다음과 같이 public database link를
만든다. 이후 생성되는 private link는 using절을 포함하지 않게 되며,
모두 public database link와 동일한 이름의 db link이름을 가져야 한다.
(global_names=true이기 때문)
SQL>CONNECT system/<password>
SQL>CREATE PUBLIC DATABASE LINK <remote databases global name.world>
USING 'Net8 alias';
여기에서 표현한 Net8 alias는 snapshot site의 tnsnames.ora file에 정의
되어 있어야만 한다.
(2) Snapshot Administrator / Snapshot propagator / refresher
snapshot administrator와 proxy snapshot administrator 다음과 같이 private
database link가 필요하다.
SQL>CONNECT snapadmin/<password>
SQL>CREATE DATABASE LINK <remote databases global name.world>
CONNECT TO snapproxy IDENTIFIED BY <password>;
(3) Schema Owner (여기에서는 REPUSER로 명시한다)
snapshot을 가지고 있는 모든 schema는 master site에 private database
link를 생성해야 한다. 이때, "Schema to Schema" 와 "Schema to Proxy
Refresher" 두가지를 고려할 수 있다.
만약 link를 schema to schema방식으로 생성하게 되면, snapshot owner는
쉽게 master site로 연결하여, master table에 DDL이나 DML을 수행가능하다.
이것은 일반적으로 바람직하지 않으므로 master의 proxy refresher로
private database link를 만들도록 권고된다. master에서 proxy refresher와
proxy administrator가 동일한것이 일반적으로 결국 proxy administrtor에게
연결하면 된다.
이렇게 되면 snapshot의 schema owner는 proxy refresher user에 의해,
master table에 대한 "select any table"권한은 가지게 되지만, DDL이나,
DML은 허용되지 않으므로 더 안정적이다.
SQL>CONNECT repuser/<password>
SQL>CREATE DATABASE LINK <remote databases global name.world>
CONNECT TO snapproxy IDENTIFIED BY <password>;
(5) End User
database link가 필요하지 않다.
9.6 Testing Database Links
database link생성 작업이 끝나면 다음과 같이 하여, 각 user별로 database
link 생성이 올바로 되었는지 확인하도록 한다.
SQL>CONNECT user/<password>
SQL>SELECT * FROM DUAL@<database link name>
10. schedule설정
================
1 ~ 9번까지 성공적으로 수행되었다면 이제 replication manager를 이용하여,
replication/snapshot group과 object를 추가할 수 있다.
replication manager를 이용시 master site는 repadmin user로 접속하고,
snapshot site는 snapadmin user로 접속하도록 한다.
snapshot site의 변경 작업을 master site로 주기적으로 push시키고, 이렇게
push된 data를 또 다른 주기로 purge시키는 scheduling이 필요하다.
이것은 replication manager를 이용하려면, 아래 menu를 이용하면 된다.
- Scheduling --> Scheduled Links
- Database Information --> Purge Job Tab
이 작업을 sql문으로 수행하려면 다음과 같은 문장을 snapshot site에서
수행한다.
SQL>CONNECT snapadmin/<password>
SQL>BEGIN
dbms_defer_sys.schedule_push(
destination => '<destination databases global name>.WORLD',
interval => '/*10:Mins*/ sysdate + 10/(60*24)',
next_date => sysdate,
stop_on_error => FALSE,
delay_seconds => 0,
parallelism => 1);
SQL>END;
SQL>/
SQL>BEGIN
dbms_defer_sys.schedule_purge(
next_date => sysdate,
interval => '/*1:Hr*/ sysdate + 1/24',
delay_seconds => 0,
rollback_segment => '');
SQL>END;
SQL>/

Similar Messages

  • Adpatch 9239089 taking time for Updating Snapshot Tables

    Hi,
    I am upgrading Apps R12.1.1 to Apps R12.1.3 . Applying patch 9239089 as prerequisite of patch 9239090.
    This patch is taking much time and Updating Snapshot Tables as below
    No of records processed =205032 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:04:15
    Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:04:17
    No of records processed =210033 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:06:37
    Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:06:38
    No of records processed =215033 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:08:57
    Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:08:58
    No of records processed =220034 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:11:17
    Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:11:18
    No of records processed =225034 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:13:36
    Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:13:37
    No of records processed =230035 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:15:56
    Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:15:57
    No of records processed =235035 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:18:16
    Done Updating Snapshot Tables
    Please see if there is any issue or how can avoid to updating snapshot tables.
    Regards,
    Raj

    Hi Raj,
    I am using shared appl_top on NFS file system , and this patch is using the NFS file system . So this issue could be NFS file system.
    when I am performing any write intensive operation on NFS file system it is taking huge time. adadmin utility is also taking muchtime to invoke.I also applied the same patch on a shared APPL_TOP but never had any performance issue.
    So I need some oracle recommendation to use NFS file system or how performance can be tune of nfs file system.?Have you tried to maintain snapshot via adadmin before applying the patch and see how it behaves?
    Oracle Applications Maintenance Utilities
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Thanks,
    Hussein

  • Update snapshot encountered errors

    Hi All,
    We encountered errors when updating snapshot using adadmin.
    About to attempt instantiating the current-view snapshot: Fri Jul 20 2012 21:55:22
    Invalid Release :
    Error in calling adphistRlseExists for
    AD Administration error:
    Error calling adusnapInstCurrVwSnapshot
    AD Administration error:
    Error calling adusnapGetSnapshotId
    AD Administration error:
    Error calling adusnapGetCurViewSnapshotId
    Failed to store APPL_TOP Snapshot to tables
    adusnapMaintainSnapshot() : Error calling adusnapUpdateCurrentView2()
    Error calling adusnapPartialCurVw()
    Error calling adusnapMaintainSnapshot
    Time is: Fri Jul 20 2012 21:55:22
    It seems some records are missing.
    SQL> select APPL_TOP_ID,name from ad_appl_tops;
    APPL_TOP_ID NAME
    1 tan
    2 tfw
    45 GLOBAL
    47 adela501p
    21 PRESEEDED
    1048 adela500p
    6 rows selected.
    SQL> col SNAPSHOT_NAME for a20
    SQL> select snapshot_name,appl_top_id from ad_snapshots;
    SNAPSHOT_NAME APPL_TOP_ID
    CURRENT_VIEW 1
    CURRENT_VIEW 2
    CURRENT_VIEW 47
    Is there any way to re-create the snapshot if we are lose some records.
    Thanks,
    Kevin
    Edited by: Kevin on Jul 23, 2012 10:49 AM

    1. Check if AD_APPL_TOPS has the right entry for APPL_TOP.
    -- Take a backup of AD_APPL_TOPS, remove the entry of the invalid apl_top_id.Can you update the forum with the contents of AD_APPL_TOPS and the backup of AD_APPL_TOPS table?
    -- modify the XML file in appl_top/admin to have APPL_TOP_NAME correct. (if its not correct).Is this correct?
    -- Run adconfig.sh (only needed if appl_top_name is not correct).Did it complete successfully?
    2. Take a backup of AD-SNAPSHOTS table, modify to have the entry of the corrcet APPL_TOP_ID.
    3. Run adadmin,
    -- This will create the snapshot for the correct appl_top_id can cross check it from ad_snapshots table.Have you verified this?
    Thanks,
    Hussein

  • Updating snapshots

    Hello, We will be using basic replication as we just need the
    data to go from our master tables to our snapshots. The thing is
    we need to then update some of the snapshots from the snapshot
    database and not send it back to the master tables.
    I was thinking of moving the data from the snapshot to a
    updatable table and then we could add our new data to the
    updatable table. I would just need to move the changed data to
    the new table. Any ideas.
    Craig

    It's a READ-ONLY snapshot for a reason :)
    One thing you could do is create a snapshot, create a separate
    table with you "changes" and then create a view on top of those
    two tables to join the data. Obviously, this only works if you
    are inserting data and not updating existing rows.

  • Multi Master Site replication with Snapshot features

    Dear,
    I am implementing a Multi Master site replication. I want to replicate Table A in MASTER SITE A to Table A in MASTER SITE B.
    However, I don't want all the data from MASTER SITE A to be propagated to MASTER SITE B.I may want data that belongs to a certain criteria only to be replicated over.
    I know I can achieve this in a snapshot site replication. But can this be done in a Multi Master Site replication too ?

    Hai,
    As far under my observation, the tables that is marked for a replication from the MASTER SITE to Child Site is an exact replica of data. Your case could be achieved only thru SNAPSHOT VIEWS/GROUPS
    - [email protected]

  • Replication update statement takes long time

    Hi Replication experts,
    I have a issue and please suggest if my understanding and solution is correct.
    We have a transactional replication setup for data warehouse, from today morning replication got huge latency so when I looked into it I saw the "sp_MSupd_< tablename >" was running for very long time and by this time it was running for 9 hours
    still no data was updated, Latency went very high. What we feel is that the index maintenance was not done in subscriber also it was not replicated too. So due to high fragmentation the update statement could take very long.
    As there was no error message or blocks found all we see is the update taking very long. So to avoid this we are planning to remove the index, as this is just data warehouse index maintenance is not required by removing we can gain some space too. Is this a
    good Idea to implement?
    When we ran profiler nothing was found, no error or alert logged.
    Please let me know your suggestions
    Thanks
    Best Regards Moug

    Hi All,
    The Issue we found to be is that a day before, new column was added to the table and 9000 rows were updated ... This caused the distributor to slow down the update operation as the index in subscriber(15 million rows) was updating every time  a row
    is updated.. So we suspect that adding a new column and updating it at the same time is the culprit..
    But still am not convinced as per my understanding the distributor operates by comparing the primary key of publisher that was changed with the primary key of the subscriber and apply those change.. If that is the case why should it worry about the new column
    added or the number of updates..
    Also one strange thing is another table was also lagging behind in its operation ,though that table was updated with just 18 rows.. So in a nutshell the update operation was totally down by distributor operation on that day..
    Can someone please shed some light on this, Replication is my favorite topic but now I got fear of it.. after failing to know what could be issue... 
    Best Regards Moug

  • Transactional replication update causing deadlock

    Hello,
    I am using sql server 2012 SE. I am using Transactional replication and noticed that we have been receiving deadlocks lately. The select statement that is inserting data into a temptable is getting deadlocked by the transactionalreplication update statement.
    I am in the process of avoiding this deadlock. Is adding any missing index is the only solution here? PLease find the deadlock information below:
    3/13/2015 11:03:17,spid3s,Unknown,waiter id=process85b6b2928 mode=IX requestType=wait
    03/13/2015 11:03:17,spid3s,Unknown,waiter-list
    03/13/2015 11:03:17,spid3s,Unknown,owner id=process505246558 mode=S
    03/13/2015 11:03:17,spid3s,Unknown,owner-list
    03/13/2015 11:03:17,spid3s,Unknown,pagelock fileid=1 pageid=8285871 dbid=6 subresource=FULL objectname=PaigahDB.dbo.EmailLogs id=lock73c690280 mode=S associatedObjectId=72057594176077824
    03/13/2015 11:03:17,spid3s,Unknown,waiter id=process505246558 mode=S requestType=wait
    03/13/2015 11:03:17,spid3s,Unknown,waiter-list
    03/13/2015 11:03:17,spid3s,Unknown,owner id=process85b6b2928 mode=IX
    03/13/2015 11:03:17,spid3s,Unknown,owner-list
    03/13/2015 11:03:17,spid3s,Unknown,pagelock fileid=1 pageid=8286764 dbid=6 subresource=FULL objectname=PaigahDB.dbo.EmailLogs id=lock3d4201500 mode=IX associatedObjectId=72057594176077824
    03/13/2015 11:03:17,spid3s,Unknown,resource-list
    03/13/2015 11:03:17,spid3s,Unknown,Proc [Database Id = 6 Object Id = 323532236]
    03/13/2015 11:03:17,spid3s,Unknown,inputbuf
    03/13/2015 11:03:17,spid3s,Unknown,[FullName] = case substring(@bitmap<c/>2<c/>1) & 8 when 8 then @c12 else [FullName] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[LastName] = case substring(@bitmap<c/>2<c/>1) & 4 when 4 then @c11 else [LastName] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[FirstName] = case substring(@bitmap<c/>2<c/>1) & 2 when 2 then @c10 else [FirstName] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[AddressOrder] = case substring(@bitmap<c/>2<c/>1) & 1 when 1 then @c9 else [AddressOrder] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[EmailType] = case substring(@bitmap<c/>1<c/>1) & 128 when 128 then @c8 else [EmailType] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[AddressContactAttempts] = case substring(@bitmap<c/>1<c/>1) & 64 when 64 then @c7 else [AddressContactAttempts] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[Address] = case substring(@bitmap<c/>1<c/>1) & 32 when 32 then @c6 else [Address] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[Timestamp] = case substring(@bitmap<c/>1<c/>1) & 16 when 16 then @c5 else [Timestamp] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[LogStatus] = case substring(@bitmap<c/>1<c/>1) & 8 when 8 then @c4 else [LogStatus] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[JobID] = case substring(@bitmap<c/>1<c/>1) & 4 when 4 then @c3 else [JobID] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,[EmailAddressID] = case substring(@bitmap<c/>1<c/>1) & 2 when 2 then @c2 else [EmailAddressID] end<c/>
    03/13/2015 11:03:17,spid3s,Unknown,update [dbo].[EmailLogs] set
    03/13/2015 11:03:17,spid3s,Unknown,frame procname=PaigahDB.dbo.sp_MSupd_dboEmailLogs line=52 stmtstart=4900 stmtend=8184 sqlhandle=0x03000600ccb54813d9b8250031a4000001000000000000000000000000000000000000000000000000000000
    03/13/2015 11:03:17,spid3s,Unknown,executionStack
    03/13/2015 11:03:17,spid3s,Unknown,process id=process85b6b2928 taskpriority=0 logused=793868 waitresource=PAGE: 6:1:8285871  waittime=1805 ownerId=591093165 transactionname=user_transaction lasttranstarted=2015-03-13T11:03:07.047 XDES=0x8fbb7cd28 lockMode=IX
    schedulerid=2 kpid=1496 status=suspended spid=70 sbid=0 ecid=0 priority=0 trancount=2 lastbatchstarted=2015-03-13T11:03:15.870 lastbatchcompleted=2015-03-13T11:03:15.867 lastattention=1900-01-01T00:00:00.867 clientapp=webapp_rep_10032014 hostname=DBServer
     hostpid=3112 loginname=dom\user isolationlevel=read committed (2) xactid=591093165 currentdb=6 lockTimeout=4294967295 clientoption1=671156320 clientoption2=128056
    03/13/2015 11:03:17,spid3s,Unknown,Proc [Database Id = 17 Object Id = 853578079]
    03/13/2015 11:03:17,spid3s,Unknown,inputbuf
    03/13/2015 11:03:17,spid3s,Unknown,where el.[Timestamp] between ji.LastExportTime and @currentExportTime;
    03/13/2015 11:03:17,spid3s,Unknown,join PaigahDB.dbo.EmailLogStatuses es on el.LogStatus = es.EmailLogStatusID
    03/13/2015 11:03:17,spid3s,Unknown,join PaigahDB.dbo.EmailLogs el on el.JobID = ji.EmailJobId
    03/13/2015 11:03:17,spid3s,Unknown,from #JobIds ji
    03/13/2015 11:03:17,spid3s,Unknown,select 'EMAIL'<c/> el.EmailLogID<c/> el.ImportPersonId<c/> el.JobID<c/> el.Timestamp<c/> es.Details<c/> es.Name<c/> el.AddressContactAttempts<c/> null<c/> null<c/>
    el.LogStatus<c/> es.Details<c/> el.EmailLogIdentity
    03/13/2015 11:03:17,spid3s,Unknown,(MessageType<c/> LogId<c/> ImportPersonId<c/> JobId<c/> [Timestamp]<c/> Details<c/> Name<c/> NumberContactAttempts<c/> Number<c/> PatientResponse<c/> LogStatusID<c/>
    LogStatus<c/> LogIdentity)
    03/13/2015 11:03:17,spid3s,Unknown,insert into #LogFlexes
    03/13/2015 11:03:17,spid3s,Unknown,frame procname=PlazaDB.dbo.GetJobResults line=111 stmtstart=7788 stmtend=9074 sqlhandle=0x030011005f91e032b241de0050a4000001000000000000000000000000000000000000000000000000000000
    03/13/2015 11:03:17,spid3s,Unknown,executionStack
    03/13/2015 11:03:17,spid3s,Unknown,process id=process505246558 taskpriority=0 logused=0 waitresource=PAGE: 6:1:8286764  waittime=7082 ownerId=591097183 transactionname=INSERT lasttranstarted=2015-03-13T11:03:10.667 XDES=0x8f5b68d28 lockMode=S schedulerid=1
    kpid=5128 status=suspended spid=188 sbid=0 ecid=0 priority=0 trancount=2 lastbatchstarted=2015-03-13T11:03:10.397 lastbatchcompleted=2015-03-13T11:03:10.397 lastattention=2015-03-13T10:52:07.350 clientapp=.Net SqlClient Data Provider hostname=GW-W hostpid=5468
    loginname=abc\admin isolationlevel=read committed (2) xactid=591097183 currentdb=17 lockTimeout=4294967295 clientoption1=673185824 clientoption2=128056
    03/13/2015 11:03:17,spid3s,Unknown,process-list
    03/13/2015 11:03:17,spid3s,Unknown,deadlock victim=process505246558
    03/13/2015 11:03:17,spid3s,Unknown,deadlock-list
    Experts I need your valuable inputs.
    Thanks a ton

    This is what I would do.
    Check when update statistics were ran last time?
    Check for any fragmentation on tables?
    Turn on trace flag 1204, 1222
    Use deadlock graph, deadlock chain and narrow down the statements and tune them.
    See below link which might be useful.
    https://www.simple-talk.com/sql/performance/sql-server-deadlocks-by-example/

  • SQL server Replication and snapshot

    Hi All,
    We are faced with a scenario where the Replication snapshot folder is corrupted.
    We have the subscibers as SQL Server Compact(PDA) and dont want to re-install the PDA.
    Is there a way to recreate a Snapshot folder, and the PDA's dont have to be re-setup.
    Quick Advise is really appreciated.
    Joji

    Can you recreate the folder in windows?
    You should be able to recreate the folder in windows and you will not need to reinitailize. If you do change the folder location in the publication properties a reinitialization will  NOT be forced.
    looking for a book on SQL Server 2008 Administration?
    http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search?
    http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941

  • Occurs "AD Administration error" when i update snapshot

    ours is upgraded to EBS R12.0.6.
    then,apply patch 7665691 and 7533081.all above is successful!
    next ,when i execute "adadmin" -->2.Maintain Applications Files menu-->4.Maintain snapshot information-->2.Update current view snapshot-->1.Update Complete APPL_TOP
    after running about 8 minutes,the errors occurs like this below:
    ==========================
    AD Administration error:
    Error while executing statement
    AD Administration error:
    ORA-00600: internal error code, arguments: [kdddgb5], [4294967295], [0], [], [], [], [], []
    ORA-06512: at "APPS.AD_FILE_UTIL", line 1357
    ORA-06512: at line 3
    ==========
    can somebody help me ? i can't resolve the problem
    Edited by: user515977 on Apr 26, 2009 10:25 PM
    Edited by: user515977 on Apr 26, 2009 10:27 PM
    Edited by: user515977 on Apr 26, 2009 10:27 PM

    Hi,
    Have a look at the following document.
    Note: 153788.1 - Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=153788.1
    If this does not help, please log a SR.
    Regards,
    Hussein

  • Update Snapshot?

    Would anyone know a keyboard shortcut for "Update with Current Settings" with the active Snapshot? It would be wonderful for my workflow to not have to go up and right click the Snapshot to access it. I have found nothing in any shortcut list so far.

    I know of no off-the-shelf way to do it, but an autohotkey script could be used to do it if you're clever (or similar mac technique). Also a short plugin could do it on Windows (but not Mac - since it doesn't support keyboard shortcuts to plugins).
    One fly in the ointment: There is no such thing as an "Active Snapshot", they are arranged alphabetically, and none is "selected" whilst editing, so you would have to come up with a scheme for targeting the correct snapshot.

  • Lost replication updates

              Hi.
              I have a web app in a .war format running on two nodes in a WLS6.0sp2 cluster
              (round-robin). When I try to access the JSP's that access session data, I get
              the following error.
              Can somebody tell me what the stack trace I have posted below means? (This is
              from one of the nodes, altough I see the same thing on the other node). The symptom
              of the exception seems to be that some of the data seems to be replicated while
              some is not.
              Thanks in advance,
              Saman
              <Mar 18, 2002 1:16:12 PM EST> <Error> <Kernel> <ExecuteRequest failed
              weblogic.cluster.replication.NotFoundException: Lost 2 updates of 5509919717493478763
              at weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOutboundRequest.java:90)
              at weblogic.cluster.replication.ReplicationManager_WLStub.update(ReplicationManager_WLStub.java:316)
              at weblogic.cluster.replication.ReplicationManager.updateSecondary(ReplicationManager.java:426)
              at weblogic.servlet.internal.session.ReplicatedSessionData.sync(ReplicatedSessionData.java:398)
              at weblogic.servlet.internal.session.ReplicatedSessionContext.sync(ReplicatedSessionContext.java:147)
              at weblogic.servlet.internal.ServletRequestImpl.syncSession(ServletRequestImpl.java:1535)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1310)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              --------------- nested within: ------------------
              weblogic.utils.NestedError: Could not find secondary on remote server - with nested
              exception:
              [weblogic.cluster.replication.NotFoundException: Lost 2 updates of 5509919717493478763]
              at weblogic.servlet.internal.session.ReplicatedSessionData.sync(ReplicatedSessionData.java:405)
              at weblogic.servlet.internal.session.ReplicatedSessionContext.sync(ReplicatedSessionContext.java:147)
              at weblogic.servlet.internal.ServletRequestImpl.syncSession(ServletRequestImpl.java:1535)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1310)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              <Mar 18, 2002 1:16:12 PM EST> <Info> <Cluster> <Got stale replication request
              for object 5509919717493478763>
              <Mar 18, 2002 1:16:12 PM EST> <Info> <Cluster> <Got stale replication request
              for object 5509919717493478763>
              

              You didn't tell if you were using a proxy in front of the cluster. If you are not,
              that's a problem. Make sure that there are no problems with multicast.
              Cheers,
              -- Prasad
              "Kumar Allamraju" <[email protected]> wrote:
              >Have you applied any rolling patches?
              >if not, can you upgrade to the latest SP and see if that solves the problem.
              >
              >If you still see the problem, contact support and reference CR045425
              >
              >--
              >Kumar
              >
              >"Saman Aria" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Hi.
              >>
              >> I have a web app in a .war format running on two nodes in a WLS6.0sp2
              >cluster
              >> (round-robin). When I try to access the JSP's that access session data,
              >I
              >get
              >> the following error.
              >> Can somebody tell me what the stack trace I have posted below means? (This
              >is
              >> from one of the nodes, altough I see the same thing on the other node).
              >The symptom
              >> of the exception seems to be that some of the data seems to be replicated
              >while
              >> some is not.
              >>
              >> Thanks in advance,
              >>
              >> Saman
              >>
              >> <Mar 18, 2002 1:16:12 PM EST> <Error> <Kernel> <ExecuteRequest failed
              >> weblogic.cluster.replication.NotFoundException: Lost 2 updates of
              >5509919717493478763
              >> at
              >weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOutboundRe
              >quest.java:90)
              >> at
              >weblogic.cluster.replication.ReplicationManager_WLStub.update(ReplicationMan
              >ager_WLStub.java:316)
              >> at
              >weblogic.cluster.replication.ReplicationManager.updateSecondary(ReplicationM
              >anager.java:426)
              >> at
              >weblogic.servlet.internal.session.ReplicatedSessionData.sync(ReplicatedSessi
              >onData.java:398)
              >> at
              >weblogic.servlet.internal.session.ReplicatedSessionContext.sync(ReplicatedSe
              >ssionContext.java:147)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.syncSession(ServletRequestImpl.
              >java:1535)
              >> at
              >weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              >ntext.java:1310)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              >:1631)
              >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >> --------------- nested within: ------------------
              >> weblogic.utils.NestedError: Could not find secondary on remote server
              >-
              >with nested
              >> exception:
              >> [weblogic.cluster.replication.NotFoundException: Lost 2 updates of
              >5509919717493478763]
              >> at
              >weblogic.servlet.internal.session.ReplicatedSessionData.sync(ReplicatedSessi
              >onData.java:405)
              >> at
              >weblogic.servlet.internal.session.ReplicatedSessionContext.sync(ReplicatedSe
              >ssionContext.java:147)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.syncSession(ServletRequestImpl.
              >java:1535)
              >> at
              >weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              >ntext.java:1310)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              >:1631)
              >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >> >
              >> <Mar 18, 2002 1:16:12 PM EST> <Info> <Cluster> <Got stale replication
              >request
              >> for object 5509919717493478763>
              >> <Mar 18, 2002 1:16:12 PM EST> <Info> <Cluster> <Got stale replication
              >request
              >> for object 5509919717493478763>
              >
              >
              

  • Merge replication and Snapshot replication monitoring

    Hi All,
    I have mere publication with 56 subscriptions. I need to monitor their synchronization status twice in a day.
    I want to do it using TSQL. Like i will create a table for that and i will schedule a job, which inserts the replication status records and Using SSRS i will to create a report for replication monitoring.
    Can anybody help me on this.

    Hi Kushi N,
    We can monitor replication programmatically using T-SQL or RMO.  Please see
    Programmatically Monitor Replication for information on monitoring replication programmatically.  From here you can do custom alerting.  Also, keep in mind that replication
    comes with predefined alerts which can be configured to response to various replication events.  This is covered in
    Use Alerts for Replication Agent Events and
    Configure Predefined Replication Alerts (SQL Server Management Studio).
    Brandon Williams (blog |
    linkedin)

  • Oracle Replication update conflict handler creating notifications

    Hi All,
    I want to use an update conflict handler that overwrites the records in the destination database, while notifying the dba about the conflict by creating a log entry to a log file (alert log or other custom log file).
    I know that I can use prebuilt overwrite update conflict handler to overwrite the conflicting record. As far as I know there is no way to create a log entry using this prebuilt conflict handlers.
    Is there a way to create a log entry via prebuilt conflict handlers?
    Or else I can use pl/sql to create a log entry and a pl/sql can be used as conflict handler.
    But how can I create a pl/sql overwrite conflict handler?
    Thank you,
    Sasika.

    You must create your own update conflict handler.
    Conflict handler is a PL/SQL procedure (usually in package). For given conflict type is defined what parameters this procedure must have.
    And in procedure you simply put locig you need:
    1/ write a log entry
    2/ update (overwrite) data in table

  • Snapshot replication slow during purge of master table

    I have basic snapshot/materialized view replication of a big table (around 6 million rows).
    The problem that I run into is that when I run a purge of the master table at the master site (delete dml), the snapshot refresh time becomes slower. After the purge the snapshot refresh time goes back to the normal time interval.
    I had thought that the snapshot does a simple select so any exclusive lock on the table should not hinder the performance.
    Has anyone seen this problem before and if so what has been the workaround?
    The master site and the snapshot site both are 8.1.7.4 and are both unix tru64.
    I don't know if this has any relevence but the master database is rule based while the snapshot site is cost based.
    thanks in advance

    Hello Alan,
    Your problem is, to know inside a table-trigger if the actual DML was caused
    by a replication or a normal local DML.
    One way (I'm practising) to solve (in Oracle 8.1.7) this is the following:
    You can use in the trigger code the functions DBMS_SNAPSHOT.I_AM_A_REFRESH(),
    DBMS_REPUTIL.REPLICATION_IS_ON() and DBMS_REPUTIL.FROM_REMOTE()
    (For details see oracle documentation library)
    For example: a trigger (before insert of each row) at the master side
    on a table which is an updatable snapshot:
    DECLARE
         site_x VARCHAR2(128) := DBMS_REPUTIL.GLOBAL_NAME;
         timestamp_x      DATE;
         value_time_diff     NUMBER;
    BEGIN
    IF (NOT (DBMS_SNAPSHOT.I_AM_A_REFRESH) AND DBMS_REPUTIL.REPLICATION_IS_ON) THEN
    IF NOT DBMS_REPUTIL.FROM_REMOTE THEN
    IF inserting THEN
         :new.info_text := 'Hello table; this entry was caused by local DML';
    END IF;
    END IF;
    END IF;
    END;
    By the way: I've got here at work nearly the same configuration, now in production since a year.
    Kind regards
    Steffen Rvckel

  • Snapshot with update on both sides

    Hi,
    I've created a snapshot with the for update clause, but when I
    use the dbms_snapshot.refresh procedure, the server looses
    everything made in the point B.
    Point A -> master
    Point B -> snapshot
    Sequence:
    1) Create a simple table in the master an populate it
    2) create snapshot log on master
    3) create database link on B to A
    4) create snapshot on B
    5) update the table on A
    6) dbms_snapshot.refresh on B =====> ok!!!
    7) update the table on A and on B
    8) commit on A and B
    9) dbms_snapshot.refresh on B ===> the server just applies the
    changes made in A, it looses the changes in B
    I need help.
    Best regards,
    Ari
    null

    Ari Arantes (guest) wrote:
    : Hi,
    : I've created a snapshot with the for update clause, but when I
    : use the dbms_snapshot.refresh procedure, the server looses
    : everything made in the point B.
    : Point A -> master
    : Point B -> snapshot
    : Sequence:
    : 1) Create a simple table in the master an populate it
    : 2) create snapshot log on master
    : 3) create database link on B to A
    : 4) create snapshot on B
    : 5) update the table on A
    : 6) dbms_snapshot.refresh on B =====> ok!!!
    : 7) update the table on A and on B
    : 8) commit on A and B
    : 9) dbms_snapshot.refresh on B ===> the server just applies the
    : changes made in A, it looses the changes in B
    : I need help.
    : Best regards,
    : Ari
    Ari,
    You need to generate replication support for the updatable
    snapshot using the dbms_repcat.create_snapshot_repobject
    procedure.
    2 way replication is pretty complex to set up. You will need
    correctly configured database links, snapshot logs at the master
    site and replication support for all your updatable snapshots at
    the snapshot site.
    There are quite a few ways of setting up updatable snapshot
    replication. My best advice is to get hold of the "replication
    bible" from Oracle Documentation.
    Oracle7 Server Distributed Systems Replicated Data or equivalent
    for 8. This is essential.
    good luck,
    Dave.
    null

Maybe you are looking for

  • How to measure frequency using daq 6009

    HAI..    Im using PFIO line to measure the frequency..i have attached my vi along with this..output is read approximately to the given input when i highlight the execution,but when i use run and run continuosly alone,am getting incorrect values..im t

  • How do I sync my ipod from one mac to a new one?

    I didn't own a Mac computer so when I recieved my iPod I synced it to my sister's computer.  Now that I own my own Mac how do I sync my iPod to my computer?  I got this iPod in 2008.

  • Hyperlinks that I create in InDesign CS3 don't work in the PDF

    I've created several hyperlinks in an InDesign CS3 file, using the Hyperlinks panel. But when I export to PDF format, the hyperlinks don't work. Even the ones that start with http:// or www. don't work. Is that just the way it is? Or am I doing somet

  • COPA Report Variable

    Hi All, My client needs a commissions report from COPA. I have been able to get the report but its in periods, but they need it to report by date or weekly. How can i configure the date variable at entry point on the report. Your assistance will be g

  • HOW TO RELINK OEM GRID CONTROL 10.1.0.2 ON AIX 5L

    We are in process for patching our OS from 5.3-01+APARs to 5.3-02 and usually we relink all our oracle products after OS patching. I have notes for DB and AS but not for OEM GRID CONTROL. Any help are appreciated. Diego.