Performance task

**SQL Query:**
SELECT DISTINCT claim_number,
status,
date_received,
pay_amount
FROM (SELECT c.claim_number,
c.status,
c.date_received,
p.pay_amount
FROM claims.ardis_active_groups aag,
claims.claim c,
claims.payment p
WHERE aag.GROUP_ID = c.GROUP_ID
AND c.claim_seq = p.claim_seq
AND c.status IN ('O', 'C')
UNION
SELECT c.claim_number,
c.status,
c.date_received,
p.pay_amount
FROM claims.claim c, claims.payment p, claims.service_provider sp
WHERE c.claim_seq = p.claim_seq
AND c.service_provider_seq = sp.service_provider_seq
AND c.status IN ('O', 'C')
UNION
SELECT c.claim_number,
c.status,
c.date_received,
p.pay_amount
FROM claims.claim c,
claims.payment p,
claims.claim_profile cp,
gman.mem_evd_address@ardis mea
WHERE c.claim_seq = p.claim_seq
AND c.member_claim_profile_seq = cp.claim_profile_seq
AND cp.ardis_member_seq = mea.mem_evd_seq
AND c.status IN ('O', 'C'));
Please suggest an alternative query for the above query , all the tables except 1 have like millions of rows so the query execution is very slow. I've tried inner joins, analyze functionality , with inner join execution time has gone down considerably but record count doesn't match. The database is Oracle 8i.

FYI: Database is Oracle 8i and CBO.
Script for claim:
ALTER TABLE CLAIMS.CLAIM
DROP PRIMARY KEY CASCADE;
DROP TABLE CLAIMS.CLAIM CASCADE CONSTRAINTS;
CREATE TABLE CLAIMS.CLAIM
CLAIM_FORM_SEQ NUMBER(18),
CLAIM_NUMBER VARCHAR2(40 BYTE),
CORRESPONDENCE_REQUIRED VARCHAR2(1 BYTE),
STATUS VARCHAR2(3 BYTE),
TOTAL_CHARGE NUMBER(9,2),
GROUP_ID VARCHAR2(10 BYTE),
CLAIM_SEQ NUMBER(18) CONSTRAINT SYS_C001506 NOT NULL,
SPECIAL_HANDLING_RULE_SEQ NUMBER(18),
MEMBER_CLAIM_PROFILE_SEQ NUMBER(18),
PATIENT_CLAIM_PROFILE_SEQ NUMBER(18),
AOB VARCHAR2(1 BYTE),
PAYEE VARCHAR2(1 BYTE),
GROUP_NAME VARCHAR2(80 BYTE),
POLICY_NUMBER VARCHAR2(20 BYTE),
CLAIM_QUALIFY_MESSAGE VARCHAR2(10 BYTE),
PLAN_TYPE VARCHAR2(4 BYTE),
LAST_UPDATED_USER VARCHAR2(40 BYTE),
LAST_UPDATED_DATE DATE,
CREATE_DATE DATE,
CREATE_USER VARCHAR2(40 BYTE),
ACCIDENT_INDICATOR VARCHAR2(1 BYTE),
XRAY VARCHAR2(1 BYTE),
USER_COMMENTS CLOB,
DATE_RECEIVED DATE,
WORK_COMP VARCHAR2(1 BYTE),
PROVIDER_SEQ NUMBER(18),
SERVICE_PROVIDER_SEQ NUMBER(18),
GENERATION NUMBER(18),
CLOSED_DATE DATE,
RECENT_DELAY_NOTICE_SENT_TS DATE,
PE_NUMBER VARCHAR2(5 BYTE),
CORRESPONDENCE_RESEND VARCHAR2(1 BYTE),
CLAIM_FORM_PROVDR_ZIP_OVERRIDE VARCHAR2(3 BYTE)
LOB (USER_COMMENTS) STORE AS (
TABLESPACE CLAIMS_5M
ENABLE STORAGE IN ROW
CHUNK 8192
RETENTION
NOCACHE
LOGGING
INDEX (
TABLESPACE CLAIMS_5M
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
TABLESPACE CLAIMS_100M
PCTUSED 40
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 160K
NEXT 100M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
NOMONITORING;
CREATE UNIQUE INDEX CLAIMS.CLAIMS_CLAIMNUM_IDX ON CLAIMS.CLAIM
(CLAIM_NUMBER)
LOGGING
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.CLAIMS_GROUPID_IDX ON CLAIMS.CLAIM
(GROUP_ID)
LOGGING
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
ALTER INDEX CLAIMS.CLAIMS_GROUPID_IDX
MONITORING USAGE;
CREATE UNIQUE INDEX CLAIMS.CLAIMS_IDX_4 ON CLAIMS.CLAIM
(PATIENT_CLAIM_PROFILE_SEQ)
LOGGING
TABLESPACE CLAIMS_5M_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE UNIQUE INDEX CLAIMS.CLAIM_IDX_3 ON CLAIMS.CLAIM
(MEMBER_CLAIM_PROFILE_SEQ)
LOGGING
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.CLAIM_IDX_5 ON CLAIMS.CLAIM
(CLAIM_FORM_SEQ)
LOGGING
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.CLAIM_IDX_6 ON CLAIMS.CLAIM
(LAST_UPDATED_DATE, LAST_UPDATED_USER, STATUS)
LOGGING
TABLESPACE CLAIMS_5M
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.CLAIM_IDX_7 ON CLAIMS.CLAIM
(SERVICE_PROVIDER_SEQ)
LOGGING
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.CLAIM_PROV_SEQ_IDX1 ON CLAIMS.CLAIM
(PROVIDER_SEQ)
LOGGING
TABLESPACE CLAIMS_256K
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 256K
NEXT 256K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE UNIQUE INDEX CLAIMS.SYS_C001507 ON CLAIMS.CLAIM
(CLAIM_SEQ)
LOGGING
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
ALTER TABLE CLAIMS.CLAIM ADD (
CONSTRAINT CK_ACCIDENT_INDICATOR
CHECK (ACCIDENT_INDICATOR IN ('Y', 'N')),
CONSTRAINT CK_XRAY
CHECK (XRAY IN ('Y', 'N')),
CONSTRAINT SYS_C002004
CHECK ("CLAIM_NUMBER" IS NOT NULL),
CONSTRAINT SYS_C002325
CHECK ("GENERATION" IS NOT NULL),
CONSTRAINT SYS_C001507
PRIMARY KEY
(CLAIM_SEQ)
USING INDEX
TABLESPACE CLAIMS_5M_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
CONSTRAINT CLAIM_NUMBER_UNIQUE
UNIQUE (CLAIM_NUMBER)
USING INDEX CLAIMS.CLAIMS_CLAIMNUM_IDX);
ALTER TABLE CLAIMS.CLAIM ADD (
CONSTRAINT FK_CLAIM_1
FOREIGN KEY (PROVIDER_SEQ)
REFERENCES CLAIMS.PROVIDER (PROVIDER_SEQ),
CONSTRAINT FK_CLAIM_2
FOREIGN KEY (SERVICE_PROVIDER_SEQ)
REFERENCES CLAIMS.SERVICE_PROVIDER (SERVICE_PROVIDER_SEQ),
CONSTRAINT FK_CLAIM_MEMBER_CPS
FOREIGN KEY (MEMBER_CLAIM_PROFILE_SEQ)
REFERENCES CLAIMS.CLAIM_PROFILE (CLAIM_PROFILE_SEQ),
CONSTRAINT FK_CLAIM_PATIENT_CPS
FOREIGN KEY (PATIENT_CLAIM_PROFILE_SEQ)
REFERENCES CLAIMS.CLAIM_PROFILE (CLAIM_PROFILE_SEQ));
AUDIT ALTER ON CLAIMS.CLAIM BY ACCESS WHENEVER SUCCESSFUL;
AUDIT ALTER ON CLAIMS.CLAIM BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT AUDIT ON CLAIMS.CLAIM BY ACCESS WHENEVER SUCCESSFUL;
AUDIT AUDIT ON CLAIMS.CLAIM BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT DELETE ON CLAIMS.CLAIM BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT GRANT ON CLAIMS.CLAIM BY ACCESS WHENEVER SUCCESSFUL;
AUDIT GRANT ON CLAIMS.CLAIM BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT INDEX ON CLAIMS.CLAIM BY ACCESS WHENEVER SUCCESSFUL;
AUDIT INDEX ON CLAIMS.CLAIM BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT INSERT ON CLAIMS.CLAIM BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT SELECT ON CLAIMS.CLAIM BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT UPDATE ON CLAIMS.CLAIM BY SESSION WHENEVER NOT SUCCESSFUL;
GRANT DELETE, INSERT, SELECT, UPDATE ON CLAIMS.CLAIM TO CLAIMS_ROLE;
GRANT DELETE, INSERT, SELECT, UPDATE ON CLAIMS.CLAIM TO CLAIMS_USER;
GRANT SELECT ON CLAIMS.CLAIM TO CRYSTAL_ROLE;
GRANT SELECT ON CLAIMS.CLAIM TO DB_LINK;
GRANT SELECT ON CLAIMS.CLAIM TO GRINS_VIEW_ONLY;
GRANT DELETE, INSERT, SELECT, UPDATE ON CLAIMS.CLAIM TO OPS$GMAN;
Script file for payment:
ALTER TABLE CLAIMS.PAYMENT
DROP PRIMARY KEY CASCADE;
DROP TABLE CLAIMS.PAYMENT CASCADE CONSTRAINTS;
CREATE TABLE CLAIMS.PAYMENT
PAYMENT_SEQ NUMBER(18),
CLAIM_SEQ NUMBER(18),
CREDIT_SAVINGS_AMT NUMBER(9,2),
STATUS VARCHAR2(1 BYTE),
TREATMENT_GROUP_NUMBER NUMBER(2),
EOB_IND VARCHAR2(1 BYTE),
EOB_CREATED_DATE DATE,
PAY_AMOUNT NUMBER(9,2),
CLAIM_NUMBER VARCHAR2(40 BYTE),
TREATMENT_GROUP_ID VARCHAR2(1 BYTE),
TG_CLOSE_DATE DATE,
REV_CREDIT_SAVINGS_IND VARCHAR2(1 BYTE),
POLICY_NUMBER VARCHAR2(20 BYTE),
PAYEE_TYPE VARCHAR2(1 BYTE),
PAYEE_NAME VARCHAR2(50 BYTE),
PAYEE_ADDRESS_LINE_1 VARCHAR2(80 BYTE),
PAYEE_ADDRESS_LINE_2 VARCHAR2(80 BYTE),
PAYEE_CITY VARCHAR2(40 BYTE),
PAYEE_STATE VARCHAR2(2 BYTE),
PAYEE_ZIP NUMBER(5),
PAYEE_ZIP4 NUMBER(4),
PAYEE_TAX_ID VARCHAR2(9 BYTE),
PAYMENT_TYPE VARCHAR2(1 BYTE),
PAYMENT_CREATED_DATE DATE,
PAYMENT_SENT_DATE DATE,
RECEIPT_DATE DATE,
RECEIPT_CHECK_NUMBER VARCHAR2(20 BYTE),
RECEIPT_DISB_CODE VARCHAR2(1 BYTE),
RECEIPT_CHECK_AMOUNT NUMBER(9,2),
RECEIPT_CHECK_DATE DATE,
LAST_UPDATED_USER VARCHAR2(40 BYTE),
LAST_UPDATED_DATE DATE,
ERROR_MESSAGE VARCHAR2(400 BYTE),
PRECERT_IND VARCHAR2(1 BYTE),
SETTLE_UNPAID_BALANCE VARCHAR2(1 BYTE) DEFAULT 'N',
UNPAID_SETTLED_CLAIM_SEQ NUMBER(18),
BATCH_DATE DATE
TABLESPACE CLAIMS_256K
PCTUSED 40
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 160K
NEXT 256K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 2
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
NOMONITORING;
CREATE INDEX CLAIMS.IDX_RECEIPT_CHK_NUM ON CLAIMS.PAYMENT
(RECEIPT_CHECK_NUMBER)
LOGGING
TABLESPACE CLAIMS_160K
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 160K
NEXT 160K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.PAYMENT_IDX_1 ON CLAIMS.PAYMENT
(CLAIM_SEQ)
LOGGING
TABLESPACE CLAIMS_512K_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 512K
NEXT 512K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE INDEX CLAIMS.PAYMENT_IDX_2 ON CLAIMS.PAYMENT
(CLAIM_NUMBER)
LOGGING
TABLESPACE CLAIMS_512K_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 512K
NEXT 512K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
CREATE UNIQUE INDEX CLAIMS.PK_PAYMENT ON CLAIMS.PAYMENT
(PAYMENT_SEQ)
LOGGING
TABLESPACE CLAIMS_512K_BK32_IDX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 512K
NEXT 512K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
NOPARALLEL;
ALTER TABLE CLAIMS.PAYMENT ADD (
CONSTRAINT PK_PAYMENT
PRIMARY KEY
(PAYMENT_SEQ)
USING INDEX CLAIMS.PK_PAYMENT);
ALTER TABLE CLAIMS.PAYMENT ADD (
CONSTRAINT FK_PAYMENT
FOREIGN KEY (CLAIM_SEQ, TREATMENT_GROUP_NUMBER)
REFERENCES CLAIMS.TREATMENT_GROUP (CLAIM_SEQ,TREATMENT_GROUP_NUMBER) DISABLE);
AUDIT ALTER ON CLAIMS.PAYMENT BY ACCESS WHENEVER SUCCESSFUL;
AUDIT ALTER ON CLAIMS.PAYMENT BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT AUDIT ON CLAIMS.PAYMENT BY ACCESS WHENEVER SUCCESSFUL;
AUDIT AUDIT ON CLAIMS.PAYMENT BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT DELETE ON CLAIMS.PAYMENT BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT GRANT ON CLAIMS.PAYMENT BY ACCESS WHENEVER SUCCESSFUL;
AUDIT GRANT ON CLAIMS.PAYMENT BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT INDEX ON CLAIMS.PAYMENT BY ACCESS WHENEVER SUCCESSFUL;
AUDIT INDEX ON CLAIMS.PAYMENT BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT INSERT ON CLAIMS.PAYMENT BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT SELECT ON CLAIMS.PAYMENT BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT UPDATE ON CLAIMS.PAYMENT BY SESSION WHENEVER NOT SUCCESSFUL;
GRANT DELETE, INSERT, SELECT, UPDATE ON CLAIMS.PAYMENT TO CLAIMS_ROLE;
GRANT SELECT ON CLAIMS.PAYMENT TO CRYSTAL_ROLE;
GRANT SELECT ON CLAIMS.PAYMENT TO DB_LINK;
GRANT SELECT ON CLAIMS.PAYMENT TO GRINS_VIEW_ONLY;
GRANT DELETE, INSERT, SELECT, UPDATE ON CLAIMS.PAYMENT TO OPS$GMAN;
Views used:
DROP VIEW CLAIMS.ARDIS_ACTIVE_GROUPS;
/* Formatted on 7/14/2011 9:16:22 AM (QP5 v5.163.1008.3004) */
CREATE OR REPLACE FORCE VIEW CLAIMS.ARDIS_ACTIVE_GROUPS
GROUP_ID,
NAME_1,
CITY,
STATE,
ZIP_CODE,
STREET_ADDR_1,
INST_EFF_DATE,
INST_TERM_DATE
AS
SELECT "GROUP_ID",
"NAME_1",
"CITY",
"STATE",
"ZIP_CODE",
"STREET_ADDR_1",
"INST_EFF_DATE",
"INST_TERM_DATE"
FROM gman.dental_active_groups_view@ardis;
AUDIT AUDIT ON CLAIMS.ARDIS_ACTIVE_GROUPS BY ACCESS WHENEVER SUCCESSFUL;
AUDIT AUDIT ON CLAIMS.ARDIS_ACTIVE_GROUPS BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT DELETE ON CLAIMS.ARDIS_ACTIVE_GROUPS BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT GRANT ON CLAIMS.ARDIS_ACTIVE_GROUPS BY ACCESS WHENEVER SUCCESSFUL;
AUDIT GRANT ON CLAIMS.ARDIS_ACTIVE_GROUPS BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT INSERT ON CLAIMS.ARDIS_ACTIVE_GROUPS BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT SELECT ON CLAIMS.ARDIS_ACTIVE_GROUPS BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT UPDATE ON CLAIMS.ARDIS_ACTIVE_GROUPS BY SESSION WHENEVER NOT SUCCESSFUL;
GRANT SELECT ON CLAIMS.ARDIS_ACTIVE_GROUPS TO CLAIMS_ROLE;
GRANT SELECT ON CLAIMS.ARDIS_ACTIVE_GROUPS TO CLAIMS_USER;
GRANT SELECT ON CLAIMS.ARDIS_ACTIVE_GROUPS TO CRYSTAL_ROLE;
GRANT SELECT ON CLAIMS.ARDIS_ACTIVE_GROUPS TO GRINS_VIEW_ONLY;
View refers to another view:
DROP VIEW GMAN.DENTAL_ACTIVE_GROUPS_VIEW;
/* Formatted on 7/13/2011 4:02:23 PM (QP5 v5.163.1008.3004) */
CREATE OR REPLACE FORCE VIEW GMAN.DENTAL_ACTIVE_GROUPS_VIEW
GROUP_ID,
NAME_1,
CITY,
STATE,
ZIP_CODE,
STREET_ADDR_1,
INST_EFF_DATE,
INST_TERM_DATE
AS
SELECT gpe.inf_group_id,
gpe.name_1,
gpe.city,
gpe.state,
gpe.zip_code,
gpe.street_addr_1,
p.eff_date,
p.term_date
FROM gman.group_pe gpe, gman.POLICY p
WHERE gpe.inf_group_id = p.inf_group_id AND p.cvg_type IN ('DENT', 'VDN')
AND (p.status_code = 'A'
OR (p.status_code = 'T' AND p.term_date >= SYSDATE));
AUDIT AUDIT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY ACCESS WHENEVER SUCCESSFUL;
AUDIT AUDIT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT DELETE ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT GRANT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY ACCESS WHENEVER SUCCESSFUL;
AUDIT GRANT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY ACCESS WHENEVER NOT SUCCESSFUL;
AUDIT INSERT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT SELECT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY SESSION WHENEVER NOT SUCCESSFUL;
AUDIT UPDATE ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW BY SESSION WHENEVER NOT SUCCESSFUL;
GRANT SELECT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW TO BUILD_USER;
GRANT SELECT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW TO CLAIMSJ2_ROLE;
GRANT SELECT ON GMAN.DENTAL_ACTIVE_GROUPS_VIEW TO DB_LINK;

Similar Messages

  • Switching from PC to Mac mini, enough power to perform tasks?

    Switchingfrom PC to Mac mini, enough power to perform tasks?
    Tasks:archiving slides, scans at 9600 DPI result 2.5 GB files, some of the scans are around 60 MB files. Also intend to edit video. Mostly working in Photoshop cs5.
    Miniconfiguration:
    i7processor with discret video memory
    500GB HD (with external USB 3 storage)
    4x1GB RAM  and add another 4x1 later
    PCDell XPS 8300 configuration:
    i7processor
    500GB HD (with external USB 3 storage)
    12-16GB RAM
    Don't know if the mini will be enough of a machine. It can only go up to 8GB RAM, but I know the architecture is different. Also, does the minirun cool and quiet? This is a home environment.
    ps operating system is Mac OS X , don't know about the (10.7.2) .

    I have both the new Mini Core i5 and my existing Gateway Core 2 Quad PC; both running 64 bit OS.  If you're running 32bit OS on a PC, only the first 4Gb is recognized and utilized.  The Mini is Lion, the PC is running Vista 64 and I do digital media stuff both for a living and also for fun.  First things first..
    You need at least 8Gb of RAM to start with the Mini if you're going to deal with HD video and working with CS5 in a 64bit environment.  8Gb of RAM on the Mini just flies, 16Gb even better; albeit noticeable faster than 4Gb especially if you are working with 64bit compliant applications -- I am.  My Mini came stock with only 2Gb of RAM, but a pair of Corsair Mac Memory certified RAM I bought from a PC store did the trick.  According to OWC (macsales.com), the Mini can be upgraded up to 16Gb of RAM, eventhough Apple official stance is 8Gb.  Secondly, throw in a SSD (Solid State Drive); this will speed bootup and applications plus act as a page memory place just in case 8Gb of RAM isn't enough, which is already the case as I am using 64bit applications in dealing with RAW images and HD videos.  But because SSD drives are fast, there isn't any lag at all on the Mac.  I have a SandForce 6G SSD drive installed on my Mini as a second drive (Mini Mid 2011 has 2 drive bays inside).  With the PC, however, you need at least 8Gb of RAM, and even then my PC is complaining that it is running low on memory when I'm working with DXO Optics Pro 7 Elite on RAW files.  So the Mac is more memory efficient in usage compared to the PC.  My PC too has a pair of SandForce RAIDed in 0 mode to help with memory paging and overall performance boost.  The beauty of the PC is that, you have lots of internal bays where you can configure the drives to function in RAID mode, especially RAID 0.  With the Mac Mini, you will only have a few choices; there is no option to add USB 3 storage unless you want to go the Sonnet Thunderbolt to Express 34 card USB 3 route which is severely limited by the Express 34 bus speed. 
    However, with Thunderbolt, you get faster than USB 3 port speed and is the future.  You can buy the Pegasus RAID array box for Thunderbolt.  It is pricy, but worth the investment.
    Last but not least.  Mini mostly runs cool if not pushed.  If it is pushed, it will run warm enough to keep my coffee warm when placed ontop of the aluminium case.  At least, it runs a lot quieter than my PC with those blazing fans spinning at insane speeds when rendering RAW and HD videos (both CPU and GPU).
    Hope this helps.

  • Database Performance task

    Hi,
    Who takes up the task of database performance tuning....is it the BW consulant or anyother?
    Thanks

    JB
    We actually never involve in Database performance tuning!, All the time DBA will handle the
    database tuning according SAP notes. We all the time involve in loading and query perfomance issues.
    Srinivas.D

  • Ow can i implement some method to perform task even if the user close

    Dear All
    I have a process need long time to complete , now how can i implement some method to perform this task even if the user close the browser??
    e.g
    if i have a button to update some value on one million recode which will take about 1 hour, is there a way to complete this update even if the user close his browser?

    Jaber,
    Sure, that works just fine too (having a Java application running). In order to "notify" it to run something, you can use whatever technology you like; if I were doing it, I'd probably use something like JMS backed by Oracle AQ to queue up tasks for it to do, however, that's just personal preference. You would have to design something that meets the needs of your particular use case. Perhaps another way would be to run it as a database job, in which case you can use the database scheduler to run it. There are probably one million and four different ways of doing it - the one you choose would depend upon your requirements and the technology you are comfortable with.
    John

  • Imac crashing/flashing when performing tasks

    Hi Guys,
    My Imac (Late 2011 21.5 Inch) is show casing a few odd issues the past week that are a bit scattered, I can't really connect them to one common diagnoses. Maybe you guys can shed some light on it for me please??
    1. Start up is suddenly taking longer than normal.
    2. Today, when performing an Iphoto Data transfer to USB it kept failing. The screen briefly flashes and the task is no longer viewable on the monitor. It was only possible to complete if I lowered the data transfer. I had 430 pics to transfer. I had to do it in chunks of 25 in order to complete the transfer, other wise it would Flash quickly and the task would fail.
    3. I use Logic Studio mostly on my Imac. If you are familiar with this soft ware you'll know about Plug Ins and the channel where they are viewable. This week the Plug Ins all had black lines through them as if they couldn't be located? This made me cry like Id lost a parent suddenly. Im still grieving 
    Finally.
    4. The main menu bar at the top of the screen doesn't appear, unless you click on any given App etc. I click finder to make it appear or Itunes etc.
    Clearly there is an issue but from the above, but do these symptoms collectively shout out an obvious diagnoses to you guys?? I get the feeling Il have more examples pretty soon  Additionally, Am I right in thinking there is a diagnostics test on-board I can run to determine any detectable errors??
    Appreciate any input!
    Thanks 

    When you have the problem, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Escalation set in Performance Task for deadlines

    Hello Team,
    Below is the Setup i have configured under deadline for Escalation:
    I was expecting an Alert to the Manager's Manager as the due date was today and escalation has to be triggered.
    Do we need to schedule any process for this notification to be triggered? Am i missing any flow here.
    Requirement is to send an escalation mail 1 level up manager when due date has been reached and the task is not completed.
    Any help regarding this is much appreciated.
    Regards
    Suveer

    No Experts to answer this???????????????????

  • Performance - Task manager for 1 - 2 minutes at 50%

    Hi,
    I know that performance is discussed before...
    Overall Lightroom is quick, but I have the following problem.
    With several functions Lightroom goes to 50% of CPU capacity that stays the same for 1, 2 or more minutes. Looking at the taks manager, no byte is written or read. Absolute no I/O actions, only 50% CPU capacity. I have included the specs of my machine below.
    Added: Only from time to time during this period the memory usage increases little.
    At this moment it happend when I selected 10 smart collections and deleted them. But it also happens when I open a Smart collection with 10 images or even a normal collection with 3 images. I even had it once when I hit the F2 key to rename my images.
    It is always the same behavior. CPU goes to 50%, stays like that for several minutes and then I can go on working and Lightroom is quick.
    It always happens shortly after I start LR. Later on it happens from time to time.
    On the otherside LR is quick, only from time to time it goes to 50%.
    Lightroom version: 3.3 [711369]
    Operating system: Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    Version: 5.1 [2600]
    Application architecture: x86
    System architecture: x86
    Physical processor count: 2
    Processor speed: 3,0 GHz
    Built-in memory: 2047,0 MB
    Real memory available to Lightroom: 716,8 MB
    Real memory used by Lightroom: 116,9 MB (16,3%)
    Virtual memory used by Lightroom: 109,5 MB
    Memory cache size: 31,4 MB
    System DPI setting: 96 DPI
    Displays: 1) 1280x1024
    Serial Number:
    Application folder: C:\Program Files\Adobe\Adobe Photoshop Lightroom 3.3
    Library Path: D:\Lightroom\FotoDatabase\FotoDatabase-3.lrcat
    Settings Folder: C:\Documents and Settings\Dick\Application Data\Adobe\Lightroom

    It could be syncing the changes you made to the DB, or adjusting extents (or whatever they are called in SQLite) because it detected there were enough changes to do so, and nothing much is going on. Most of the examples you give make a fair number of changes to the catalogue database.
    Do you have an architecture that supports hyperthreading?  If so, there is  know issue where virtual threads can queue up in a less ideal manner when the stackframes of the physical threads are the same depth.
    Then again, if nothing much else is going on, and Lr needs CPU for a lower priority thread, it will be given all the CPU it needs. That is, it is not necessarily a pathological case for an app to be given a fair chunk of CPU for some time frame, as long as it can be pre-empted in a reasonable manner.
    Activity monitoring is only part of the story. You would really have to profile the app to know if this was a real problem. Put another way, is this causing resources not to be given to other apps or processes, or interfering with the higher priority threads (e.g., the UI or develop operations) in Lightroom?

  • What software comes closest to performing tasks like I could do on the Appleworks drawing program ?

    What software is available for MacOSX that comes closest to performing like the old Appleworks drawing program?

    Maybe Apple's iWork, or more specifically Pages - part of a package of three apps (Pages/Numbers/Keynote).
    I never used Appleworks but Pages has some drawing tools for lines/boxes/circles/stars, etc. as well as a tool for freehand shapes. It will also open Microsoft Word files and Pages files can be exported in Word format.
    Numbers is akin to Microsoft's Excel and will open Excel files and also export as Excel.
    Keynote is an excellent app for presentations - a competitor to PowerPoint. Again it'll open PowerPoint files and export them.
    Finally - I'm not 100% on this so hopefully someone else will chime in - but I believe Pages will open AppleWorks files.
    iWork is available from the Mac App Store. The apps can be bought individually if you don't need all of them.

  • Need ajax to make user wait until server has performed task.

    Admittedly I'm a total noob to ajax AND somewhat even javascript and have in fact been avoiding it, despite having been a CF dev for nearly ten years.  But here I am wondering if someone would be gracious to help point me in the right direction since I can't seem to escape it this time.
    Here's the scenario.  This is for an ecommerce site that sells downloads.  Once the purchase clears, the application begins the creation and placement of the purchased files.  The user is given the success page with a link to the download area.  They click into the download area.  Now the creation of their files may or may not yet be complete.  SO what I must do is load the page which then displays *wait, this file is being created* images next to the link of each file until the file is complete.  Then the link becomes active.
    I've created my cfc that receives the ID of the record to check and returns its status (1 or 0).
    Well, now what?  I know I need to put some code on the page so it can display the wait image, make those calls to the database until it gets a 1 then change the image to a link but ?!?!? I'm at a total dead stop here.  I can't even find any similar apps on the net to work off of.
    Can you help me know the steps/tags to use?
    I have CF8 Enterprise and own the server/site so have complete control over any all setttings.
    TIA!

    Thanks for the added info, ValC!
    Okay, this is but a suggestion/thought on how one could approach such a task.
    Note: I use jQuery for my Ajax library but other libraries (MooTools, Prototype, Dojo, etc.) should have similar solutions and work equally well. I simply prefer jQuery.
    Since we're dealing with multiple CFM pages, I might take the following approach:
    Hold off creating the files to the success page (if this process is not there already)
    Use an Ajax call to the appropriate CFM/CFC, from the success page, to start the file generation process
    Add an event listener to this Ajax call
    While the call is in progress, show your wait image
    When the call reports back, display the link to the download page
    Here's a very basic way jQuery might be used with such an approach.
    Success page's JavaScript:
    <script src='load_jquery_lib.js'></script>
    <script>
      // jQuery fires this function when the DOM is loaded and ready to use/manipulate
      $(document).ready(
         function(){
            // set the path to your 'action' page or CFC
            _url = 'path/to/mycfc.cfc?method=doFileGeneration&returnformat=json';
         // .getJson gets data from the specified URL (above), passing the params (data)
            // via an HTTP GET action, and sets a function (callback) to run when it receives
            // a message back from the server
            $.getJSON(
              _url,
              { var1: #some_var#,
                      var2: #some_other_value# },
              doReturnAction
            // the following will set an image to display in the div with matching id attribute
            $('#my_div_with_wait_image').html( 'show wait image: <img src="" />' );
      function doReturnAction( data, status ){
         if( data.FILE_CREATED == true ){
              // we're good. code below clears image set above and adds a download link, etc.
              $('#my_div_with_wait_image').html( 'now show download link: <a href=""></a>' );
         else{
              // danger! something went wrong. show error message.
              $('#my_div_with_wait_image').html( 'some error message' );
    </script>
    The cfc method called from the JS above:
    <cffunction name="doFileGeneration" output="true" access="remote" returntype="void">
         <cfargument name="var1" required="true" />
            <cfargument name="var2" required="true" />
         <cfscript>
              results = StructNew();
                    // we'll assume that the generation method returns a boolean
              results.file_created = method_to_generate_files( arguments.var1, arguments.var2 );         
              theJSON = SerializeJSON( results );              
         </cfscript>
         <cfoutput>#theJSON#</cfoutput>         
    </cffunction>
    This is all just a basic skeleton of one way you could go about handling your tasks. I hope it helps get you started.
    Best,
    Craig

  • Power Shell Web Access - How to limit the cmdlets and give regular users, access to perform tasks

    It is possible to give to regular/standard users, powershell web access to give only, for example, "get-" cmdlets?
    The ideia is to provide help desk tech users, a minimum level of access on some servers, and it will be usefull to give then, basic and restrcted access to a few cmdlets, performe harmless activities and mybe some level of access, not alloweing to to using
    RDP, but PS, insted

    While PowerShell Web Access (PSWA) does require authorization rules to function, these rules do not specify what cmdlets can be used in a PSRemoting session. The PSWA authorization rules define what user, or group of users, can remotely connect to what computer,
    or group of computers, through the PSWA gateway (the PSWA server).
    What you need to research are session configurations and/or endpoints. These are separate from PSWA, but can be used in conjunction with PSWA (PSWA website > Optional connection settings > Configuration >
    NameOfConfiguration), just as they can in a standard console-based PSRemoting session (Enter-PSSession -ComputerName
    server01 -Configuration NameOfConfiguration -or- Invoke-Command -ComputerName
    server01 -Configuration NameOfConfiguration).
    Start your research with New-PSSessionConfigurationFile and then Register- and Unregister-PSSessionConfiguration. These have been great for our environment, allowing non-admin users access to run very specific cmdlets as an admin, without being an admin
    on the computer.

  • Just installed Arch, can't perform tasks like useradd/pacman [Solved]

    Followed the Beginner's Guide step by step. I'm now on the 'Extra'. However I'm running into problems doing anything. The first thing I tried to do was change user password. I got 'Authentication token lock busy'. Tried to add user and got 'cannot lock /etc/passwd/'
    I figured out that I could go back into the initial setup, remount the drives, and chroot and then change password/add user. Then - as the guide says- I unmounted them and rebooted.
    Now I can't install sudo. I get 'failed to innit transaction: unable to lock database' 'could not lock database: read only file system'
    my /etc/fstab says sda1 rw which I thought meant that it was write-able
    I can't do pacman -Syy for the same reasons, however I can do it when I chroot and mount from the setup
    I followed the Beginners' Guide line by line I believe. But somewhere after unmount and reboot, it quits working.
    Last edited by mmat (2012-10-18 06:19:52)

    DSpider wrote:
    Hi, and welcome to the forum.
    The title is a bit misleading. Is the root read-only, or is useradd/pacman the problem (which both are in the "Install" section, not "Extra") ?
    I'm sorry. This is my very first time ever using linux, so I don't fully get what you're saying about read only root.. I'm not sure what the problem is. I can and did useradd/pacman when I was installing. I finished the install section. I cannot now do the first step on extra.
    DSpider wrote:You didn't remove "ro" from syslinux.cfg, did you? Or do you use GRUB?
    I used GRUB because the guide made it sound better.
    DSpider wrote:Post your fstab.
    I installed it in VirtualBox. Not sure if that matters.
    http://oi46.tinypic.com/21170rb.jpg
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --
    Last edited by jasonwryan (2012-10-18 06:03:05)

  • Unable to run ALBPM Ant tasks on Linux

    Hi,
    I am trying to execute a simple build script that creates a session with given directory details and deploys/publishes a project on to the Enterprise Server. With usual modifications, this scripts works fine on Windows, but on Linux it keeps on giving an error that makes no sense. I am copying my build file as well as error stack trace below. Please help me on urgent basis.
    OS: Linux 64 bit
    Oracle Enterprise Server: 10.3.1.0.0
    JAVA_HOME=/usr/java/jdk1.6.0_16
    ANT_HOME=/usr/ant/apache-ant-1.8.1
    build.xml
    <!-- This script publishes and deploys a BPM Project, undeploys and unpublishes a BPM Project, Export Organisation.xml -->
    <project name="sampleproj"
         xmlns:fuego="antlib:fuego.tools.ant.enterprise"
         xmlns:fuego.j2ee="antlib:fuego.tools.ant.j2ee">
    <!-- Include properties -->
    <property file="build.properties"/>
    <echo message="Enterprise Home Directory:: ${fuego.basedir}" />
    <echo message="Ant Version:: ${ant.version}" />
    <echo message="Connecting to directory:: ${fuego.directoryid}" />
    <fuego:passport id="passport"
    directoryid="${fuego.directoryid}"
    preset="engine" />
    <target name="publish-on-linux" description="Publish and deploy processes">
    <echo message="Creating session..."/>
    <!-- Open a session to the ALBPM directory -->
    <fuego:session passportref="passport"
    verbose="true"
    haltonerror="true">
    <!-- Publish processes -->
    <fuego:publish fpr="${bpm.project.path}"
    deploy="true"
    engine="${fuego.engine}"
              haltonerror="true"
              importdata="true"
              automapconfigs="true"
              automapvars="true"
              automaproles="true"
              automapbuspars="true"
              importcustomviews="true">
    </fuego:publish>
    </fuego:session>
    </target>
    </project>
    build.properties
    # Enterprise installation directory
    fuego.basedir=/opt/OraBPMwlHome
    # Name of ALBPM Engine to deploy to
    fuego.engine=bpmengine
    # Project to deploy
    bpm.project.path=/usr/test_ant/sampleproj
    # Directory details
    fuego.directoryid=default
    Error on running the target publish-on-linux
    [echo] Enterprise Home Directory:: /opt/OraBPMwlHome
    [echo] Ant Version:: Apache Ant version 1.8.1 compiled on April 30 2010
    [echo] Connecting to directory:: default
    publish-on-linux:
    [echo] Creating session...
    [fuego:session] fuego base dir [opt/OraBPMwlHome]
    BUILD FAILED
    /usr/test_ant/build1.xml:25: java.lang.NullPointerException
    at fuego.tools.ant.BaseFuegoTask.getClassLoader(Unknown Source)
    at fuego.tools.ant.BaseFuegoTask.executeTask(Unknown Source)
    at fuego.tools.ant.enterprise.taskdefs.DirectorySessionTask.executeImpl(Unknown Source)
    at fuego.tools.ant.BaseFuegoTask.execute(Unknown Source)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:390)
    at org.apache.tools.ant.Target.performTasks(Target.java:411)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1397)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1366)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1249)
    at org.apache.tools.ant.Main.runBuild(Main.java:801)
    at org.apache.tools.ant.Main.startAnt(Main.java:218)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
    Total time: 0 seconds

    Amit Zini wrote:
    Dear All,
    I am unable to run my oracle 10g forms application on Linux machine which is runing Fedora 16.
    i have tried to install jre 6 but mozilla firefox 10 is not loading my oracle 10 forms application, it says plugin missing.
    Kindly help me to short out the problem.
    java version "1.6.0_24"
    OpenJDK Runtime Environment (IcedTea6 1.11.1) (fedora-65.1.11.1.fc16-i386)
    OpenJDK Server VM (build 20.0-b12, mixed mode)
    Regards.
    Amit.Try with down grade of Mozilla firefox. may be version 6 to 8. not 9/10.
    Firefox with 9 and higher doesn't support JRE version 1.6.XX.
    Hopes this helps

  • Error Message while Approving Tasks in Project Server 2010

    Hi All,
    While performing Tasks approvals in MS Project 2010 I am getting below error message:
    An Error Occured while processing one or more items. This was caused by one of the following:
    A timesheet job is failed and blocking coorelation in the queue.
    The approval item no longer exists or has already been approved
    The host server is unreachable.
    Following are the details of the error message found in Event Viewer:
    Standard Information:PSI Entry Point:
    Project User: <domain>\<windowsuserid>
    Correlation Id: 417dce51-740f-46f0-8f1e-182b4e0c635c
    PWA Site URL: http://<servername>/<projectserver>/
    SSP Name: spsusfiprojwebappservice
    PSError: GeneralQueueCorrelationBlocked (26005)
    Operation could not completed since the Queue Correlated Job Group is blocked. Correlated Job Group ID is: 2ae5d5f9-b554-4a44-93f0-f815d36976cd. The job ID of the affected job is: 82dce1fb-be71-4c4a-8d16-4516ea8c887d. The job type of the affected job is:
    TimesheetReview. You can recover from the situation by unblocking or cancelling the blocked job. To do that, go to PWA, navigate to 'Server Settings -> Manage Queue Jobs', go to 'Filter Type' section, choose 'By ID', enter the 'Job Group ID' mentioned in
    this error and click the 'Refresh Status' button at the bottom of the page. In the resulting set of jobs, click on the 'Error' column link to see more details about why the job has failed and blocked the Correlated Job Group. For more troubleshooting you can
    look at the trace log also. Once you have corrected the cause of the error, select the affected job and click on the 'Retry Jobs' or 'Cancel Jobs' button at the bottom of the page.
    In Server Settings>Manage Queues>Erro Details following information is listed
    General
    Timesheet:
    TimesheetIncorrectMode (3204). Details: id='3204' name='TimesheetIncorrectMode' uid='e53139e1-66cb-4b4a-a948-cbeda21340b8' mode='1'.
    Queue:
    GeneralQueueJobFailed (26000) - TimesheetSubmit.SubmitTimesheetMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='4c09d375-cad0-4b61-be16-49abbdc149e4' JobUID='b3737c2a-11f4-4799-9fd7-1d018e4c73d1' ComputerName='JSIDBWPRJA02' GroupType='TimesheetSubmit'
    MessageType='SubmitTimesheetMessage' MessageId='1' Stage=''. For more details, check the ULS logs on machine JSIDBWPRJA02 for entries with JobUID b3737c2a-11f4-4799-9fd7-1d018e4c73d1.
    Background:
    We are gearing up to upgrade our Project Server from 2003 to 2010; as part of this process we have installed MS Project Server 2010 on our dev environment. We created Test Project plans and assigned ourselves (we admins) to these plans and all of us have
    admin privileges.

    Hi, Can you give a bit more detail on how your generating the task approval. Are you going into myTasks and doing self assignment to your test project plans or are you generating these approvals via outlook or are you updating a timesheet and sending status?
    If you're using your timesheet have you created all your timesheet periods within server settings, time and task management...Donald R. Landry

  • Error while deploying Human Task

    Hi All,
    I am getting the following error while deploying a simple Human Task
    Error while deploying the form on server "Tom-latitude" Error message :
    java.lang.SecurityException
         at oracle.ide.IdeCore$7.checkExit(IdeCore.java:177)
         at java.lang.Runtime.exit(Runtime.java:88)
         at java.lang.System.exit(System.java:868)
         at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.executeCommand(Oc4jAdminCmdline.java:141)
         at com.collaxa.cube.ant.taskdefs.DeployForm.deployIAS(DeployForm.java:785)
         at com.collaxa.cube.ant.taskdefs.DeployForm.deployForm(DeployForm.java:578)
         at com.collaxa.cube.ant.taskdefs.DeployForm.deployForms(DeployForm.java:849)
         at com.collaxa.cube.ant.taskdefs.DeployForm.execute(DeployForm.java:875)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at oracle.jdevimpl.ant.runner.AntLauncher.launch(AntLauncher.java:321)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at oracle.jdevimpl.ant.runner.InProcessAntStarter.runAnt(InProcessAntStarter.java:295)
         at oracle.jdevimpl.ant.runner.InProcessAntStarter.mav$runAnt(InProcessAntStarter.java:43)
         at oracle.jdevimpl.ant.runner.InProcessAntStarter$1.run(InProcessAntStarter.java:71)
    Thanks
    Tom....

    For deploying a bpel with human task, you need a bpel engine. oc4j_soa instance has the BPEL engine. Thats why.

  • I performed latest software update yesterday 17.2.12 and now my 27 inch imac will not boot up i have had a few problems from day one,not very impressed so far with the imac.

    THE OTHER PROBLEMS PRIOR TO THIS ARE
    1. KEEPS LOCKING UP WHEN ON CERTAIN WEBSITES (YOU TUBE)
    2.VERY SLOW PERFORMING TASKS
    I PURCHASED THIS PRODUCT FOR MY SONS THEY LOVE THE IMAC IN REGARDS TO SOFTWARE eg (IMOVIE ) BUT AS FAR AS
    THE PERFORMANCE THEY ARE NOT HAPPY........IN THIS DAY AND AGE YOU JUST WANT A RELIABLE MACHINE THAT PERFORMS.
    AND FOR JUST UNDER 2K$ AUSTRALIAN YOUR NOT GETTING THAT.

    The guys at the Genius Bar actually are Geniuses! They told me that in fact my iMac was one of the first generation and the main board had fried to they way the fan cooled it off. They said the problem was fixed with the second generation iMacs.
    They took the computer in, i was 1 month away from the 3 year warranty date, and they are replacing the board and the DVD drive that is not working at no charge!
    i'll have it back in 5 days.
    Jeff

Maybe you are looking for

  • Update field to a specific time

    Hello, Is is possible to update a column from a table, when sysdate is equal to a select which returns a date? for example: i have a YEARS table, with 2 columns, start_date and end_date. periodically in this table are inserting years. when sysdate=st

  • Shift Differential /Premium Interaction/ Premium Eligibilty Policy

    Hi Everyone, I require help in setting up shift differential policy based on following scenario...... I have created Shift differential policy as shift2pay ----15:30 to 23:30 shift 3 pay----23:30 to 7:00 Now I have following elements eleigible fo the

  • How do I download an older version of iTunes?

    I'm tired of the bugs and annoying changes to iTunes 11 and I want to go back to version 10 for my Windows 7 64-bit OS. What is the best way to do this? I want to know if I need to uninstall iTunes before installing the older version. And any other t

  • How to activate iphone?

    this is probably a really silly question but I have just purchased an IPhone 4 as part of an upgrade on my existing network. I have been charging it all afternoon and I am still not able to make calls or send messages - Do I need to activate the phon

  • Switching from iPhone to Samsung Galaxy S4 and Fixing the Problem

    Hopefully your search engine will send you to this message before all the other ones. Here is step by step what I did: 1. Went to Verizon Wireless to get new phone 2. Turned off iMessage on the old iPhone 3. Disassociated my old iPhone from my accoun