Query running for too long

Hi All,
Can someone pls help me in finding how long will it take to execute the below query.
I have a query that is taking too long to execute.
SELECT   CPU_TIME/1000000/60 CPUTIME, ELAPSED_TIME/1000000/60 ELAPSEDTIME, PROGRAM_LINE#, OPTIMIZER_COST,
USER_IO_WAIT_TIME/1000000/60 IOWAITTIME,  DISK_READS, DIRECT_WRITES, BUFFER_GETS, to_char(Q.SQL_FULLTEXT), OPTIMIZER_MODE,  SHARABLE_MEM, PERSISTENT_MEM, RUNTIME_MEM, SORTS, FETCHES, EXECUTIONS, END_OF_FETCH_COUNT, USERS_EXECUTING, LOADS,
FIRST_LOAD_TIME,  INVALIDATIONS, PARSE_CALLS, APPLICATION_WAIT_TIME, CONCURRENCY_WAIT_TIME, CLUSTER_WAIT_TIME,
PLSQL_EXEC_TIME, JAVA_EXEC_TIME, ROWS_PROCESSED, COMMAND_TYPE, PARSING_USER_ID, PARSING_SCHEMA_ID, PARSING_SCHEMA_NAME, OBJECT_STATUS
     FROM     v$session S, v$sqlarea Q
     WHERE    S.SQL_ADDRESS = Q.ADDRESS
     AND      s.username = 'SCHEMA_NAME'
     AND       s.osuser = 'OSUSER_NAME';I can see CPU_TIME increasing. Is there any way that I can find how lmuch more time will it take for the query to execute.
The query creates a table that has a sub query and inner query.
rgds
saaz

http://www.gplivna.eu/papers/v$session_longops.htm
There is a dynamic performance view v$session_longops that is populated for many long running operations in Oracle. The primary criterion for any operation to appear in v$session_longops is to run more than 6 seconds. Although this isn’t the only criterion as well as not all operations that take more than 6 seconds are shown in this view. For example one can find hash joins in v$session_longops, but you won’t find there nested loop joins even if they are longer than 6 seconds and are joining very big data sets.

Similar Messages

  • Update query run for too long

    Oracle Database 11.1.0.7.0
    UPDATE DTC SET NEW_KY=(SELECT DCTT.KY FROM DCTT WHERE DCTT.KY = DTC.KY),
    NEW_KY_ID=(SELECT DCTT.KY_ID FROM DCTT WHERE DCTT.KY = DTC.KY) where
    EXISTS ( SELECT 1 FROM DCTT WHERE DCTT.KY = DTC.KY and NEW_KY IS NULL ) and rownum<100000
    both dtc and dctt have 8-9 millions of records.
    I tried merge also.It also run indefinitely
    I want to update table in batch of 100K batches.
    for dctt ky column is primary key.
    for dtc ky column is non-primary and also dont have index on it.
    What should i do to run it faster.Any idea.Thanks

    UPDATE dtc
    SET    new_ky = (SELECT dctt.ky
                     FROM   dctt
                     WHERE  dctt.ky = dtc.ky),
           new_ky_id = (SELECT dctt.ky_id
                        FROM   dctt
                        WHERE  dctt.ky = dtc.ky)
    WHERE  EXISTS (SELECT 1
                   FROM   dctt
                   WHERE  dctt.ky = dtc.ky
                          AND new_ky IS NULL)
           AND ROWNUM < 100000
    AND new_ky IS NULLabove forces FTS for every row

  • Query running for a long time

    Can some help me please below query has been running for a long time I am unable to fix it
    SELECT lmt.tab, pr.tab6, pr.tab7,
               pr.activity_id, pr.resource_id, lmt.tab2,
                lmt.tab5, pr.txn_lmt_trans_id, pr.analysis_type,
                pr.resource_type, pr.resource_category, pr.resource_sub_cat,
                pr.trans_dt, cd.start_dt, cd.end_dt, pr.currency_cd, pr.rt_type,
                pr.resource_quantity, pr.resource_amount, pr.foreign_amount,
                pr.foreign_currency, 2, 'S', pr.resource_id_from,
                hdr.contract_sign_dt, cd.retainage_id, cd.discount_id, 0, 0,
           cd.limit_bi_cntrl_flg, hdr.ca_rqst_src, 0, hdr.currency_cd,
           hdr.rt_type, 0, 0, pr.bi_distrib_status, pr.gl_distrib_status
         FROM ps_c1 lmt, ps_c2 hdr,  ps_c3 cd,
                ps_c4 pr
             WHERE lmt.tab = 836626
               AND hdr.tab2 = lmt.tab2
               AND cd.tab2 = lmt.tab2
               AND cd.tab5 = lmt.tab5
               AND cd.pricing_structure = 'RATE'
               AND pr.tab6 = cd.tab6_pc
               AND pr.tab2 = cd.tab2
               AND pr.tab5 = cd.tab5
               AND (pr.analysis_type IN ('BIL', 'OLT', 'PMR', 'ROL')
               AND pr.bi_distrib_status <> 'I'
               OR  pr.analysis_type = 'REV'
               AND pr.gl_distrib_status IN ('C', 'N'))
               AND NOT pr.ca_fee_status IN ('2', '3', '4', '5')
               AND 0 >= (SELECT count(*)
                        FROM ps_ca_lmt4_tao4 lmt4
                        WHERE lmt4.tab = 836626
                          AND lmt4.tab6 = pr.tab6
                          AND lmt4.tab7 = pr.tab7
                          AND lmt4.activity_id = pr.activity_id
                          AND lmt4.resource_id = pr.resource_id))
    Below is the execution plan
    ID    PID    Operation    Name    Rows    Bytes    Cost    CPU Cost    IO Cost    Temp space    IN-OUT    PQ Dist    PStart    PStop
    0        SELECT STATEMENT        2     598     99885     2G    99823                          
    1    0      NESTED LOOPS                                                       
    2    1        NESTED LOOPS        1     299     99885     2G    99823                          
    3    2          NESTED LOOPS        1     264     99883     2G    99821                          
    4    3            NESTED LOOPS        3     273     8     114779     8                          
    5    4              INDEX RANGE SCAN     ps_c1    6     138     1     8321     1                          
    6    4              TABLE ACCESS BY INDEX ROWID    ps_c3    1     68     2     17743     2                          
    7    6                INDEX UNIQUE SCAN    ps_c3    1          1     9021     1                          
    8    3            TABLE ACCESS BY INDEX ROWID    ps_c4    1     173     33292     671M    33271                          
    9    8              INDEX RANGE SCAN    ps_c4    55808          10139     320M    10129                          
    10    9                INDEX UNIQUE SCAN    PS_CA_LMT4_TAO4    1     46     0     1050     0                          
    11    2          INDEX UNIQUE SCAN    ps_c2    1          1     9021     1                          
    12    1        TABLE ACCESS BY INDEX ROWID    ps_c2    1     35     2     17413     2
    Can someone please help its really kind of urgent

    check the cardinalities: the CBO expects to access only a few rows and uses a lot of NL joins - and that's probably not the best solution. You could start with a llok at the cardinality of step 5, the index range scan on ps_c1. The CBO expects only 6 rows - is this a good guess? Of course you could just create a plan with rowsource statistics (gather_plan_statistics hint) and compare E- and A-rows.

  • SQL with connect by prior running for a long time

    Hi,
    We are using Oracle 10g. Below is a cursor sql which is having performance issues. The pAccountid is being passed from the output of a different cursor. But this cursor sql is running for a long time. Could you please help me in tuning this sql. I believe the subquery with connect by prior is causing the trouble.
    The TRXNS is a huge table which is not partitioned. The query is forced to use the index on the accountid of the TRXNS table.
    The accountlink table has 20,000 records and the TRXNStrack table has 10,000 records in total.
    This sql executes for 200,000 pAccountids and runs for more than 8 hours.
    SELECT /*+ INDEX(T TRXNS_ACCOUNTID_NIDX) */ AL.FROMACCOUNTID oldaccountid ,
                                    A.ACCOUNTNUM  oldaccountnum,
                                   T.TRXNSID,
                                   T.TRXNSTYPEID,
                                   T.DESCRIPTION ,
                                   T.postdt,
                                   T.TRXNSAMT
                        FROM
                        ACCOUNTLINK AL,
                        TRXNS T,
                        ACCOUNT A
                       WHERE AL.TOACCOUNTID IN
                                                             (SELECT TOACCOUNTID FROM ACCOUNTLINK START WITH TOACCOUNTID = pAccountid
                                                                                                                         CONNECT BY PRIOR FROMACCOUNTID  = TOACCOUNTID)
                            AND AL.FROMACCOUNTID = T.ACCOUNTID
                            AND A.ACCOUNTID = AL.FROMACCOUNTID
    AND NOT EXISTS (select 1 from TRXNStrack trck where trck.TRXNSid = t.TRXNSid AND TRXNSTrackReasonid = 1)
                            AND T.postdt > A.CLOSEDATE
                            AND T.postdt >= sysdate-2
                            AND T.postdt <= sysdate;
    Create script for trxn table:
    CREATE TABLE SP.TRXNS
      TRXNSID      NUMBER(15) CONSTRAINT "BIN$rpIQEeyLDfbgRAAUT4DEnQ==$0" NOT NULL,
      ACCOUNTID    NUMBER(15) CONSTRAINT "BIN$rpIQEeyMDfbgRAAUT4DEnQ==$0" NOT NULL,
      STATEMENTID  NUMBER(15),
      TRXNSTYPEID  NUMBER(15),
      DESCRIPTION  VARCHAR2(80 BYTE),
      postdt     DATE,
      TRXNSAMT     NUMBER(12,2),
      TRXNSREQID   NUMBER(15),
      LASTUPDATE   DATE,
      SOURCEID     NUMBER(15),
      HIDE         VARCHAR2(1 BYTE)
    TABLESPACE SO_TRXN_DATA
    RESULT_CACHE (MODE DEFAULT)
    PCTUSED    40
    PCTFREE    10
    INITRXNS   2
    MAXTRXNS   255
    STORAGE    (
                INITIAL          50M
                NEXT             1M
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                FREELISTS        8
                FREELIST GROUPS  1
                BUFFER_POOL      DEFAULT
                FLASH_CACHE      DEFAULT
                CELL_FLASH_CACHE DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    CREATE INDEX SP.TRXNS_ACCOUNTID_NIDX ON SP.TRXNS
    (ACCOUNTID, postdt)
    LOGGING
    TABLESPACE SO_TRXN_INDEX
    PCTFREE    10
    INITRXNS   2
    MAXTRXNS   255
    STORAGE    (
                INITIAL          64K
                NEXT             1M
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                FREELISTS        1
                FREELIST GROUPS  1
                BUFFER_POOL      DEFAULT
                FLASH_CACHE      DEFAULT
                CELL_FLASH_CACHE DEFAULT
    NOPARALLEL;
    below is the executing plan for this sql taken from toad :
    PLAN_ID
    TIMESTAMP
    OPERATION
    OPTIONS
    OBJECT_OWNER
    OBJECT_NAME
    OBJECT_ALIAS
    OBJECT_INSTANCE
    OBJECT_TYPE
    OPTIMIZER
    SEARCH_COLUMNS
    ID
    PARENT_ID
    DEPTH
    POSITION
    COST
    CARDINALITY
    BYTES
    CPU_COST
    IO_COST
    TEMP_SPACE
    ACCESS_PREDICATES
    FILTER_PREDICATES
    PROJECTION
    TIME
    QBLOCK_NAME
    1121
    9/10/2013 3:30
    FILTER
    1
    0
    1
    1
    NOT EXISTS (SELECT 0 FROM "TRXNSTRACK" "TRCK" WHERE "TRXNSTRACKREASONID"=1 AND "TRCK"."TRXNSID"=:B1)
    AL."FROMACCOUNTID"[NUMBER,22], "T"."TRXNSID"[NUMBER,22], "T"."TRXNSTYPEID"[NUMBER,22], "T"."DESCRIPTION"[VARCHAR2,80], "T"."POSTDT"[DATE,7], "T"."TRXNSAMT"[NUMBER,22], "A"."ACCOUNTNUM"[VARCHAR2,19]
    SEL$5DA710D3
    1121
    9/10/2013 3:30
    FILTER
    2
    1
    2
    1
    SYSDATE@!-2<=SYSDATE@!
    AL."FROMACCOUNTID"[NUMBER,22], "T"."TRXNSID"[NUMBER,22], "T"."TRXNSTYPEID"[NUMBER,22], "T"."DESCRIPTION"[VARCHAR2,80], "T"."POSTDT"[DATE,7], "T"."TRXNSAMT"[NUMBER,22], "A"."ACCOUNTNUM"[VARCHAR2,19]
    1121
    9/10/2013 3:30
    NESTED LOOPS
    3
    2
    3
    1
    (#keys=0) "AL"."FROMACCOUNTID"[NUMBER,22], "T"."TRXNSID"[NUMBER,22], "T"."TRXNSTYPEID"[NUMBER,22], "T"."DESCRIPTION"[VARCHAR2,80], "T"."POSTDT"[DATE,7], "T"."TRXNSAMT"[NUMBER,22], "A"."ACCOUNTNUM"[VARCHAR2,19]
    1121
    9/10/2013 3:30
    NESTED LOOPS
    4
    3
    4
    1
    5
    1
    119
    3989858
    4
    (#keys=0) "AL"."FROMACCOUNTID"[NUMBER,22], "T"."TRXNSID"[NUMBER,22], "T"."TRXNSTYPEID"[NUMBER,22], "T"."DESCRIPTION"[VARCHAR2,80], "T"."POSTDT"[DATE,7], "T"."TRXNSAMT"[NUMBER,22], "A".ROWID[ROWID,10]
    1
    1121
    9/10/2013 3:30
    NESTED LOOPS
    5
    4
    5
    1
    4
    1
    90
    3989690
    3
    (#keys=0) "AL"."FROMACCOUNTID"[NUMBER,22], "T"."TRXNSID"[NUMBER,22], "T"."TRXNSTYPEID"[NUMBER,22], "T"."DESCRIPTION"[VARCHAR2,80], "T"."POSTDT"[DATE,7], "T"."TRXNSAMT"[NUMBER,22]
    1
    1121
    9/10/2013 3:30
    HASH JOIN
    SEMI
    6
    5
    6
    1
    3
    2
    54
    3989094
    2
    AL."TOACCOUNTID"="TOACCOUNTID"
    (#keys=1) "AL"."FROMACCOUNTID"[NUMBER,22]
    1
    1121
    9/10/2013 3:30
    INDEX
    FULL SCAN
    SP
    ACCOUNTLINK_AK1
    AL@SEL$1
    INDEX (UNIQUE)
    ANALYZED
    7
    6
    7
    1
    1
    18
    252
    107
    1
    AL."FROMACCOUNTID"[NUMBER,22], "AL"."TOACCOUNTID"[NUMBER,22]
    1
    SEL$5DA710D3
    1121
    9/10/2013 3:30
    VIEW
    SYS
    VW_NSO_1
    VW_NSO_1@SEL$5DA710D3
    11
    VIEW
    8
    6
    7
    2
    2
    18
    234
    107
    1
    TOACCOUNTID[NUMBER,22]
    1
    SEL$683B0107
    1121
    9/10/2013 3:30
    CONNECT BY
    NO FILTERING WITH START-WITH
    9
    8
    8
    1
    TOACCOUNTID=PRIOR "FROMACCOUNTID"
    TOACCOUNTID=56354162
    TOACCOUNTID[NUMBER,22], "FROMACCOUNTID"[NUMBER,22], PRIOR NULL[22], LEVEL[4]
    SEL$683B0107
    1121
    9/10/2013 3:30
    INDEX
    FULL SCAN
    SP
    ACCOUNTLINK_AK1
    ACCOUNTLINK@SEL$3
    INDEX (UNIQUE)
    ANALYZED
    10
    9
    9
    1
    1
    18
    252
    107
    1
    ACCOUNTLINK.ROWID[ROWID,10], "FROMACCOUNTID"[NUMBER,22], "TOACCOUNTID"[NUMBER,22]
    1
    SEL$3
    1121
    9/10/2013 3:30
    TABLE ACCESS
    BY INDEX ROWID
    SP
    TRXNS
    T@SEL$1
    2
    TABLE
    ANALYZED
    11
    5
    6
    2
    1
    1
    63
    298
    1
    T."TRXNSID"[NUMBER,22], "T"."TRXNSTYPEID"[NUMBER,22], "T"."DESCRIPTION"[VARCHAR2,80], "T"."POSTDT"[DATE,7], "T"."TRXNSAMT"[NUMBER,22]
    1
    SEL$5DA710D3
    1121
    9/10/2013 3:30
    INDEX
    RANGE SCAN
    SP
    TRXNS_ACCOUNTID_NIDX
    T@SEL$1
    INDEX
    ANALYZED
    2
    12
    11
    7
    1
    1
    1
    224
    1
    AL."FROMACCOUNTID"="T"."ACCOUNTID" AND "T"."POSTDT">=SYSDATE@!-2 AND "T"."POSTDT"<=SYSDATE@!
    T.ROWID[ROWID,10], "T"."POSTDT"[DATE,7]
    1
    SEL$5DA710D3
    1121
    9/10/2013 3:30
    INDEX
    UNIQUE SCAN
    SP
    ACCOUNT_PK
    A@SEL$1
    INDEX (UNIQUE)
    ANALYZED
    1
    13
    4
    5
    2
    1
    1
    90
    1
    A."ACCOUNTID"="AL"."FROMACCOUNTID"
    A.ROWID[ROWID,10]
    1
    SEL$5DA710D3
    1121
    9/10/2013 3:30
    TABLE ACCESS
    BY INDEX ROWID
    SP
    ACCOUNT
    A@SEL$1
    3
    TABLE
    ANALYZED
    14
    3
    4
    2
    1
    1
    29
    168
    1
    A."CLOSEDATE"<SYSDATE@! AND "T"."POSTDT">"A"."CLOSEDATE"
    A."ACCOUNTNUM"[VARCHAR2,19]
    1
    SEL$5DA710D3
    1121
    9/10/2013 3:30
    INDEX
    RANGE SCAN
    SP
    TRXNSTRACK_TRXNSID_NIDX
    TRCK@SEL$6
    INDEX
    ANALYZED
    2
    15
    1
    2
    2
    1
    1
    10
    73
    1
    TRCK."TRXNSID"=:B1 AND "TRXNSTRACKREASONID"=1
    TRCK."TRXNSID"[NUMBER,22], "TRXNSTRACKREASONID"[NUMBER,22]
    1
    SEL$6
    Please help me in debugging this thanks!

    Hi,
    Thanks for your thought on this subject. Below is the trace info that I got from the DBA
    SQL ID: d0x879qx2zgtz Plan Hash: 4036333519
    SELECT /*+ INDEX(T TRXNS_ACCOUNTID_NIDX) */ AL.FROMACCOUNTID OLDACCOUNTID ,
      A.ACCOUNTNUM OLDACCOUNTNUM, T.TRXNSID, T.TRXNSTYPEID, T.DESCRIPTION ,
      T.POSTDT, T.TRXNSAMT
    FROM
    ACCOUNTLINK AL, TRXNS T, ACCOUNT A WHERE AL.TOACCOUNTID IN (SELECT
      TOACCOUNTID FROM ACCOUNTLINK START WITH TOACCOUNTID = :B3 CONNECT BY PRIOR
      FROMACCOUNTID = TOACCOUNTID) AND AL.FROMACCOUNTID = T.ACCOUNTID AND
      A.ACCOUNTID = AL.FROMACCOUNTID AND NOT EXISTS (SELECT 1 FROM TRXNSTRACK
      TRCK WHERE TRCK.TRXNSID = T.TRXNSID AND TRXNSTRACKREASONID = :B4 ) AND
      T.POSTDT > A.CLOSEDATE AND T.POSTDT >= :B2 AND T.POSTDT <= :B1
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute  17160      2.10       1.87          0          0          0           0
    Fetch    17160   7354.61    7390.86     169408    5569856  883366791           0
    total    34320   7356.71    7392.74     169408    5569856  883366791           0
    Misses in library cache during parse: 0
    Optimizer mode: CHOOSE
    Parsing user id: 38     (recursive depth: 1)
    SQL ID: gs89hpavb4cts Plan Hash: 3415795327
    SELECT A.ACCOUNTID, C.MEMBERID, A.PROGRAMID, A.ACCOUNTNUM
    FROM
    CUSTOMER C, CUSTOMERACCOUNT CA, ACCOUNT A, PROGRAMPARAMVALUE PPV,
      BATCHPROCESSPROGRAM BP WHERE A.PROGRAMID = BP.PROGRAMID AND A.PROGRAMID =
      PPV.PROGRAMID AND A.ACCOUNTID = CA.ACCOUNTID AND CA.PERSONID = C.PERSONID
      AND PPV.PARAMID = :B2 AND PPV.VALUE = 'Y' AND BP.PROCESSID = :B1 AND BP.RUN
      = 'Y' AND A.ACCOUNTTYPEID = 4 AND A.ACCOUNTSTATUSID = 1 AND C.MEMBERID IS
      NOT NULL
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      0      0.00       0.00          0          0          0           0
    Fetch      172     13.14     115.34      80826     278650          0       17200
    total      172     13.14     115.34      80826     278650          0       17200
    Misses in library cache during parse: 0
    Parsing user id: 38     (recursive depth: 1)
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      0      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        0      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute  17160      2.10       1.87          0          0          0           0
    Fetch    17332   7367.75    7506.21     250234    5848506  883366791       17200
    total    34492   7369.85    7508.09     250234    5848506  883366791       17200
    Misses in library cache during parse: 0
        2  user  SQL statements in session.
        0  internal SQL statements in session.
        2  SQL statements in session.
    Trace file: svoprod_ora_12346.trc
    Trace file compatibility: 11.1.0.7
    Sort options: default
           1  session in tracefile.
           2  user  SQL statements in trace file.
           0  internal SQL statements in trace file.
           2  SQL statements in trace file.
           2  unique SQL statements in trace file.
       66499  lines in trace file.
        7516  elapsed seconds in trace file.

  • When query is taking too long time

    When query is taking too long time,Where and how to start tuning it?
    Here i've listed few things need to be considered,out of my knowledge and understanding
    1.What the sql is waiting for(wait events)
    2.Parameter modification need to be done at system/session level
    3.The query has to be tuned (using hints )
    4.Gathering/deleting statistics
    List out any other things that need to be taken into account?
    Which approach must be followed and on what basis that approach must be considered?

    When query is taking too long time,Where and how to start tuning it?explain plan will be good start . trace also
    Here i've listed few things need to be considered,out of my knowledge and understanding
    1.What the sql is waiting for(wait events)When Oracle executes an SQL statement, it is not constantly executing. Sometimes it has to wait for a specific event to happen befor it can proceed.
    Read
    http://www.adp-gmbh.ch/ora/tuning/event.html
    2.Parameter modification need to be done at system/session levelDepend on parameter , define parameter , trace done on session level for example
    3.The query has to be tuned (using hints )Could be help you but you must know how to use .
    4.Gathering/deleting statisticsDo it in non working hours , it will impact on database performance , but its good
    List out any other things that need to be taken into account?Which account ?
    Which approach must be followed and on what basis that approach must be considered?you could use lot of tools , Trace , AWR

  • Query is taking too long to execute - contd

    I am unable to post the entire explain plan in one post as it exceeds maximum length.
    Please advise on how to post this.
    Previous post Link : Link: Query is taking too long to execute
    Regards,
    Sreekanth Munagala.
    Edited by: Sreekanth Munagala on Oct 27, 2009 8:31 AM
    Edited by: Sreekanth Munagala on Oct 27, 2009 8:34 AM

    Hi Tubby,
    Today i executed only the first query in the view and it took almost 2.5 hrs.
    Here is the explain plan for this query
    SQL> SET SERVEROUTPUT ON
    SQL> set linesize 200
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT                                                                                                                                                                                      
    | Id  | Operation                                        |  Name                         | Rows  | Bytes | Cost  |                                                                                     
    |   0 | SELECT STATEMENT                                 |                               |     1 |   766 |  2448 |                                                                                     
    |   1 |  TABLE ACCESS BY INDEX ROWID                     | PO_VENDORS                    |     1 |    13 |     3 |                                                                                     
    |*  2 |   INDEX UNIQUE SCAN                              | PO_VENDORS_U1                 |     1 |       |     2 |                                                                                     
    |   3 |  TABLE ACCESS BY INDEX ROWID                     | PO_VENDORS                    |     1 |    29 |     3 |                                                                                     
    |*  4 |   INDEX UNIQUE SCAN                              | PO_VENDORS_U1                 |     1 |       |     2 |                                                                                     
    |   5 |  VIEW                                            | POC_ASN_PICKUP_LOCATIONS_V    |     2 |  2426 |    17 |                                                                                     
    |   6 |   UNION-ALL                                      |                               |       |       |       |                                                                                     
    |   7 |    NESTED LOOPS                                  |                               |     1 |    85 |     4 |                                                                                     
    |   8 |     NESTED LOOPS                                 |                               |     1 |    78 |     4 |                                                                                     
    |*  9 |      TABLE ACCESS BY INDEX ROWID                 | PO_VENDOR_SITES_ALL           |     1 |    73 |     3 |                                                                                     
    |* 10 |       INDEX UNIQUE SCAN                          | PO_VENDOR_SITES_U2            |     1 |       |     2 |                                                                                     
    |* 11 |      INDEX UNIQUE SCAN                           | PO_VENDORS_U1                 |     1 |     5 |     1 |                                                                                     
    |* 12 |     INDEX UNIQUE SCAN                            | FND_TERRITORIES_TL_U1         |     1 |     7 |       |                                                                                     
    |  13 |    NESTED LOOPS                                  |                               |     1 |    91 |    13 |                                                                                     
    |  14 |     NESTED LOOPS                                 |                               |     1 |    84 |    13 |                                                                                     
    |  15 |      TABLE ACCESS BY INDEX ROWID                 | PO_VENDORS                    |     1 |    13 |     3 |                                                                                     
    |* 16 |       INDEX UNIQUE SCAN                          | PO_VENDORS_U1                 |     1 |       |     2 |                                                                                     
    PLAN_TABLE_OUTPUT                                                                                                                                                                                      
    |* 17 |      TABLE ACCESS BY INDEX ROWID                 | FND_LOOKUP_VALUES             |     1 |    71 |    10 |                                                                                     
    |* 18 |       INDEX RANGE SCAN                           | FND_LOOKUP_VALUES_U2          |    13 |       |     2 |                                                                                     
    |* 19 |     INDEX UNIQUE SCAN                            | FND_TERRITORIES_TL_U1         |     1 |     7 |       |                                                                                     
    |* 20 |  COUNT STOPKEY                                   |                               |       |       |       |                                                                                     
    |  21 |   TABLE ACCESS BY INDEX ROWID                    | MTL_SYSTEM_ITEMS_B            |     8 |   136 |    12 |                                                                                     
    |* 22 |    INDEX RANGE SCAN                              | MTL_SYSTEM_ITEMS_B_U1         |     8 |       |     3 |                                                                                     
    |* 23 |  COUNT STOPKEY                                   |                               |       |       |       |                                                                                     
    |  24 |   TABLE ACCESS BY INDEX ROWID                    | MTL_SYSTEM_ITEMS_B            |     8 |   288 |    12 |                                                                                     
    |* 25 |    INDEX RANGE SCAN                              | MTL_SYSTEM_ITEMS_B_U1         |     8 |       |     3 |                                                                                     
    |  26 |  TABLE ACCESS BY INDEX ROWID                     | FND_TERRITORIES_TL            |     1 |    24 |     2 |                                                                                     
    |* 27 |   INDEX UNIQUE SCAN                              | FND_TERRITORIES_TL_U1         |     1 |       |     1 |                                                                                     
    |  28 |  NESTED LOOPS                                    |                               |     1 |    40 |     5 |                                                                                     
    |  29 |   TABLE ACCESS BY INDEX ROWID                    | HZ_CUST_ACCOUNTS              |     1 |    11 |     3 |                                                                                     
    |* 30 |    INDEX UNIQUE SCAN                             | HZ_CUST_ACCOUNTS_U1           |     1 |       |     2 |                                                                                     
    |  31 |   TABLE ACCESS BY INDEX ROWID                    | HZ_PARTIES                    |     1 |    29 |     2 |                                                                                     
    |* 32 |    INDEX UNIQUE SCAN                             | HZ_PARTIES_U1                 |     1 |       |     1 |                                                                                     
    |  33 |  TABLE ACCESS BY INDEX ROWID                     | FND_TERRITORIES_TL            |     1 |    24 |     2 |                                                                                     
    |* 34 |   INDEX UNIQUE SCAN                              | FND_TERRITORIES_TL_U1         |     1 |       |     1 |                                                                                     
    |  35 |  TABLE ACCESS BY INDEX ROWID                     | FND_TERRITORIES_TL            |     1 |    24 |     2 |                                                                                     
    |* 36 |   INDEX UNIQUE SCAN                              | FND_TERRITORIES_TL_U1         |     1 |       |     1 |                                                                                     
    |* 37 |  COUNT STOPKEY                                   |                               |       |       |       |                                                                                     
    PLAN_TABLE_OUTPUT                                                                                                                                                                                      
    |* 38 |   TABLE ACCESS BY INDEX ROWID                    | ONTC_MTC_PROFORMA_HEADERS     |     1 |    21 |     3 |                                                                                     
    |* 39 |    INDEX RANGE SCAN                              | ONTC_MTC_PROFORMA_HEADERS_U2  |     1 |       |     2 |                                                                                     
    |  40 |  TABLE ACCESS BY INDEX ROWID                     | FND_TERRITORIES_TL            |     1 |    24 |     2 |                                                                                     
    |* 41 |   INDEX UNIQUE SCAN                              | FND_TERRITORIES_TL_U1         |     1 |       |     1 |                                                                                     
    |* 42 |  COUNT STOPKEY                                   |                               |       |       |       |                                                                                     
    |* 43 |   TABLE ACCESS BY INDEX ROWID                    | ONTC_MTC_PROFORMA_HEADERS     |     1 |    21 |     3 |                                                                                     
    |* 44 |    INDEX RANGE SCAN                              | ONTC_MTC_PROFORMA_HEADERS_U2  |     1 |       |     2 |                                                                                     
    |  45 |  SORT AGGREGATE                                  |                               |     1 |    39 |       |                                                                                     
    |  46 |   NESTED LOOPS OUTER                             |                               |     2 |    78 |  1828 |                                                                                     
    |* 47 |    TABLE ACCESS FULL                             | ONTC_MTC_PROFORMA_HEADERS     |     1 |    24 |  1825 |                                                                                     
    |  48 |    TABLE ACCESS BY INDEX ROWID                   | ONTC_MTC_PROFORMA_LINES       |     5 |    75 |     3 |                                                                                     
    |* 49 |     INDEX RANGE SCAN                             | ONTC_MTC_PROFORMA_LINES_PK    |    11 |       |     2 |                                                                                     
    |  50 |  NESTED LOOPS                                    |                               |     1 |   766 |  2448 |                                                                                     
    |  51 |   NESTED LOOPS                                   |                               |     1 |   761 |  2447 |                                                                                     
    |  52 |    NESTED LOOPS                                  |                               |     1 |   746 |  2445 |                                                                                     
    |  53 |     NESTED LOOPS                                 |                               |     1 |   694 |  2443 |                                                                                     
    |  54 |      NESTED LOOPS                                |                               |     1 |   682 |  2441 |                                                                                     
    |  55 |       NESTED LOOPS                               |                               |     1 |   671 |  2439 |                                                                                     
    |  56 |        NESTED LOOPS                              |                               |     1 |   612 |  2437 |                                                                                     
    |  57 |         NESTED LOOPS                             |                               |     1 |   600 |  2435 |                                                                                     
    |  58 |          NESTED LOOPS                            |                               |     1 |   575 |  2433 |                                                                                     
    PLAN_TABLE_OUTPUT                                                                                                                                                                                      
    |  59 |           NESTED LOOPS                           |                               |     1 |   552 |  2431 |                                                                                     
    |  60 |            NESTED LOOPS                          |                               |     1 |   533 |  2429 |                                                                                     
    |  61 |             NESTED LOOPS                         |                               |     1 |   524 |  2428 |                                                                                     
    |  62 |              NESTED LOOPS                        |                               |     1 |   455 |  2427 |                                                                                     
    |  63 |               NESTED LOOPS                       |                               |     1 |   429 |  2426 |                                                                                     
    |  64 |                NESTED LOOPS                      |                               |     1 |   389 |  2424 |                                                                                     
    |  65 |                 NESTED LOOPS                     |                               |     1 |   368 |  2422 |                                                                                     
    |  66 |                  NESTED LOOPS                    |                               |     1 |   308 |  2421 |                                                                                     
    |  67 |                   NESTED LOOPS                   |                               |     1 |   281 |  2419 |                                                                                     
    |  68 |                    NESTED LOOPS                  |                               |     1 |   253 |  2418 |                                                                                     
    |  69 |                     NESTED LOOPS                 |                               |     1 |   214 |  2416 |                                                                                     
    |  70 |                      NESTED LOOPS                |                               |    39 |  7371 |  2338 |                                                                                     
    |* 71 |                       TABLE ACCESS FULL          | RCV_SHIPMENT_HEADERS          |    39 |  5070 |  2221 |                                                                                     
    |* 72 |                       TABLE ACCESS BY INDEX ROWID| RCV_SHIPMENT_LINES            |     1 |    59 |     3 |                                                                                     
    |* 73 |                        INDEX RANGE SCAN          | RCV_SHIPMENT_LINES_U2         |     1 |       |     2 |                                                                                     
    |* 74 |                      TABLE ACCESS BY INDEX ROWID | PO_LINES_ALL                  |     1 |    25 |     2 |                                                                                     
    |* 75 |                       INDEX UNIQUE SCAN          | PO_LINES_U1                   |     1 |       |     1 |                                                                                     
    |* 76 |                     TABLE ACCESS BY INDEX ROWID  | PO_LINE_LOCATIONS_ALL         |     1 |    39 |     2 |                                                                                     
    |* 77 |                      INDEX UNIQUE SCAN           | PO_LINE_LOCATIONS_U1          |     1 |       |     1 |                                                                                     
    |* 78 |                    TABLE ACCESS BY INDEX ROWID   | PO_HEADERS_ALL                |     1 |    28 |     1 |                                                                                     
    |* 79 |                     INDEX UNIQUE SCAN            | PO_HEADERS_U1                 |     1 |       |       |                                                                                     
    PLAN_TABLE_OUTPUT                                                                                                                                                                                      
    |* 80 |                   TABLE ACCESS BY INDEX ROWID    | OE_ORDER_LINES_ALL            |     1 |    27 |     2 |                                                                                     
    |* 81 |                    INDEX UNIQUE SCAN             | OE_ORDER_LINES_U1             |     1 |       |     1 |                                                                                     
    |  82 |                  TABLE ACCESS BY INDEX ROWID     | OE_ORDER_HEADERS_ALL          |     1 |    60 |     1 |                                                                                     
    |* 83 |                   INDEX UNIQUE SCAN              | OE_ORDER_HEADERS_U1           |     1 |       |       |                                                                                     
    |* 84 |                 TABLE ACCESS BY INDEX ROWID      | HZ_CUST_SITE_USES_ALL         |     1 |    21 |     2 |                                                                                     
    |* 85 |                  INDEX UNIQUE SCAN               | HZ_CUST_SITE_USES_U1          |     1 |       |     1 |                                                                                     
    |* 86 |                TABLE ACCESS BY INDEX ROWID       | HZ_CUST_SITE_USES_ALL         |     1 |    40 |     2 |                                                                                     
    |* 87 |                 INDEX UNIQUE SCAN                | HZ_CUST_SITE_USES_U1          |     1 |       |     1 |                                                                                     
    |  88 |               TABLE ACCESS BY INDEX ROWID        | WSH_CARRIERS                  |     1 |    26 |     1 |                                                                                     
    |* 89 |                INDEX UNIQUE SCAN                 | WSH_CARRIERS_U2               |     1 |       |       |                                                                                     
    |* 90 |              TABLE ACCESS BY INDEX ROWID         | WSH_CARRIER_SERVICES          |     1 |    69 |     1 |                                                                                     
    |* 91 |               INDEX RANGE SCAN                   | WSH_CARRIER_SERVICES_N1       |     2 |       |       |                                                                                     
    |* 92 |             TABLE ACCESS BY INDEX ROWID          | WSH_ORG_CARRIER_SERVICES      |     1 |     9 |     1 |                                                                                     
    |* 93 |              INDEX RANGE SCAN                    | WSH_ORG_CARRIER_SERVICES_N1   |     1 |       |       |                                                                                     
    |  94 |            TABLE ACCESS BY INDEX ROWID           | HZ_CUST_ACCOUNTS              |     1 |    19 |     2 |                                                                                     
    |* 95 |             INDEX UNIQUE SCAN                    | HZ_CUST_ACCOUNTS_U1           |     1 |       |     1 |                                                                                     
    |* 96 |           TABLE ACCESS BY INDEX ROWID            | HZ_CUST_ACCT_SITES_ALL        |     1 |    23 |     2 |                                                                                     
    |* 97 |            INDEX UNIQUE SCAN                     | HZ_CUST_ACCT_SITES_U1         |     1 |       |     1 |                                                                                     
    |* 98 |          TABLE ACCESS BY INDEX ROWID             | HZ_CUST_ACCT_SITES_ALL        |     1 |    25 |     2 |                                                                                     
    |* 99 |           INDEX UNIQUE SCAN                      | HZ_CUST_ACCT_SITES_U1         |     1 |       |     1 |                                                                                     
    | 100 |         TABLE ACCESS BY INDEX ROWID              | HZ_PARTY_SITES                |     1 |    12 |     2 |                                                                                     
    PLAN_TABLE_OUTPUT                                                                                                                                                                                      
    |*101 |          INDEX UNIQUE SCAN                       | HZ_PARTY_SITES_U1             |     1 |       |     1 |                                                                                     
    | 102 |        TABLE ACCESS BY INDEX ROWID               | HZ_LOCATIONS                  |     1 |    59 |     2 |                                                                                     
    |*103 |         INDEX UNIQUE SCAN                        | HZ_LOCATIONS_U1               |     1 |       |     1 |                                                                                     
    |*104 |       INDEX RANGE SCAN                           | HZ_LOC_ASSIGNMENTS_N1         |     1 |    11 |     2 |                                                                                     
    | 105 |      TABLE ACCESS BY INDEX ROWID                 | HZ_PARTY_SITES                |     1 |    12 |     2 |                                                                                     
    |*106 |       INDEX UNIQUE SCAN                          | HZ_PARTY_SITES_U1             |     1 |       |     1 |                                                                                     
    | 107 |     TABLE ACCESS BY INDEX ROWID                  | HZ_LOCATIONS                  |     1 |    52 |     2 |                                                                                     
    |*108 |      INDEX UNIQUE SCAN                           | HZ_LOCATIONS_U1               |     1 |       |     1 |                                                                                     
    |*109 |    INDEX RANGE SCAN                              | HZ_LOC_ASSIGNMENTS_N1         |     1 |    15 |     2 |                                                                                     
    |*110 |   INDEX UNIQUE SCAN                              | HZ_PARTIES_U1                 |     1 |     5 |     1 |                                                                                     
    I will put the predicate information in another post.
    193 rows selected.
    SQL> spool offPlease suggest on how can we improve the performance.
    Regards,
    Sreekanth Munagala.

  • Our TC has been a door-stop for too-long ...

    Our TC has been a door-stop for too-long ... so I was thinking of blowing the dust off it & giving it another go ... the .n wireless would be very welcome, but will Time Machine work with it, and are the dreaded curtain & sparesbundle problems as thing of the past ??? I'm nervous - if it works, then great, but if those problems are still around ... nightmares

    I not sure how I can properly answer your concerns with the Time Capsule (TC), but my suggestion is to give it another try. Make sure that you perform a "hard" reset to clear its current configuration and use the AirPort Utility to configure it as you see fit. I also recommend that, if not already, to update both the TC's firmware (7.3.2) and the AirPort Utility (5.3.2) to the latest versions.
    I can't say that you (or others) didn't experience issues with the TC, but for the majority of folks it has worked "as advertised." I would suggest that you start with using Time Machine on just a single computer and let it run for a week or two to verify proper operation. Once satisfied, go ahead and add additional TM backups for your other computers.

  • Will the MBP speakers blow if I play it on max. volume for too long?

    Will the MBP speakers blow if I play it on max. volume for too long?

    Depends what you call too long. Leave any electronics running too long it will eventually break. Might take years, but no mechanical system is immortal. No computer has yet been built around superconductors either, so heat alone would cause circuitry to fail if it is always powered. While leaving on the machine all the time (except for bad weather) is a good idea since Mac OS X is able to do that, individual components I would not always leave in use. Use your energy wisely. Not to mention max volume for too long could theoretically make you deaf if you listen to it all the time.
    Use common sense.

  • Can you charge the battery for too long?

    I know that with cell phones if you leave the charger in for too long the battery starts to lose life. Is it the same way with the macbook or did the engineers work out a way that you can keep the charger connected for as long as you want and it won't drain battery life?
    I'd like to charge the battery whenever I go to sleep but I'm afraid that it will have charged too much by the time I wake up. I learned that the hard way with my cell phone, which seems to lose power much quicker than it used to.

    Hi,
    since Apple recommends to never remove the battery while running the MacBook on AC-power, it is the logical conclusion.
    See here: http://docs.info.apple.com/article.html?artnum=305336
    Stefan

  • A script in file EditingUtils.js has been running for a long time

    Hello Everyone.   I just downloaded Dreamweaver CS 5.5 Trial version (Win 7), and I have been working on my home page.  I've created a wonderful image map with spry widget tooltips (about 60 tooltips), and I'm really happy with the results....until this error started to pop-up.  I have re-started the computer, deleted winfilecache****, and updated Dreamweaver through the help window.   I have googled this error, and found it existed in CS3 and CS4, and even in CS5, but no information as to why it's happening in CS 5.5.    I really want to buy this software, but am unsure as to why I would spend this amount of money on something that's going to give me a headache.  I am a layman, and work on my site recreationally.  I'm new to CSS and Spry so if i missed the obvious I apologize for that.   I inserted the spry widgets in the CODE screen by highlighting my hotspot CODE and clicking INSERT>SPRY>SPRYTOOLTIP.  Each tooltip is checked to "follow on mouse" and "hide on mouse out" and horizontally moved -400.
    So now every time I open this page in Dreamweaver this error "A script in file EditingUtils.js has been running for a long time.  Do you wish to continue?" pops up, and whenever i try to edit the spry tooltip properties.  Apologies if this has been answered elsewhere.  thanks for your help and time.  Part of the code looks like this: //
    <area shape="poly" coords="89,180,68,203,60,213,65,232,96,225,103,201,101,188" href="#" id="sprytrigger57" />
    <div class="tooltipContent" id="sprytooltip57">
    <p><img src="images/Constellations/Corvus.jpg" width="199" height="170" alt="Corvus" />CORVUS (The Crow, or Raven).</p>
    <p> Birds of prey devouring him.</p>
    </div>
          var sprytooltip57 = new Spry.Widget.Tooltip("sprytooltip57", "#sprytrigger57", {offsetX:-403, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    </script>
    Hope I included most everything needed to diagnose, let me know what I forgot.  Thanks again.

    oops i tried to copy the code here but it didn't work. Is this better?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>TestRun</title>
    <style type="text/css">
    body {
    background-image: url(images/bg.jpg);
    background-repeat: repeat-x;
    background-color: #000025;
    .img_class {
    height: 514px;
    width: 499px;
    </style>
    <link href="CSS/layout.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    </head> <body>
    <div id="wrapper">
    <div id="logo"><a href="TestRun.html"><img src="images/Argo_Ship_logo.gif" width="797" height="248" alt="Bible Voyages" longdesc="http://www.biblevoyages.com" /></a></div>
    <div id="navigation">HOME | ABOUT US | BIBLE STUDIES | FORUM | LIBRARY | RESEARCH LINKS </div>
    <Div id="headerImg"></Div>
    <div id="bodyArea">
    <div id="left">
    <div>
    <div class="img_class"><img src="images/Zodiac Pie Animate.gif" alt="Zodiac" width="499" height="514" border="0" usemap="#Map" />
    <map name="Map" id="Map">
    <area shape="poly" coords="114,255,151,233,156,189,192,165,154,145,108,174,103,214,101,244" href="#" alt="Virgo" id="sprytrigger1" />
    <area shape="poly" coords="159,204,195,211,194,258,163,264,158,248" href="#" alt="Coma" id="sprytrigger2" />
    <area shape="poly" coords="71,39,7,84,7,172,103,149,143,95,95,95,81,39,62,39,60,86,47,121,17,95,9,79,10,71,9 ,86" href="#" id="sprytrigger3" />
    <area shape="poly" coords="160,198,196,172,228,200,231,229,208,235,199,205" href="#" id="sprytrigger4" />
    <area shape="poly" coords="160,103,195,85,229,105,220,141,191,156,153,134,151,120" href="#" id="sprytrigger5" />
    <area shape="poly" coords="52,89,36,102,25,78,36,69" href="#" id="sprytrigger6" />
    <area shape="poly" coords="116,84,157,99,198,84,140,47,107,51,103,84,156,99" href="#" id="sprytrigger7" />
    <area shape="poly" coords="244,180,242,198,227,196,222,181,238,176" href="#" id="sprytrigger8" />
    <area shape="circle" coords="46,183,14" href="#" id="sprytrigger9" />
    <area shape="circle" coords="97,65,11" href="#" id="sprytrigger10" />
    <area shape="circle" coords="261,51,11" href="#" alt="Number 3" id="sprytrigger11" />
    <area shape="poly" coords="236,119,285,94,288,61,308,56,322,64,319,80,338,81,336,53,313,35,279,41,264,66,247 ,60,244,38,200,73" href="#" id="sprytrigger12" />
    <area shape="poly" coords="271,151,281,159,281,172,298,170,308,149,323,149,307,131,288,125,268,125,247,136" href="#" id="sprytrigger13" />
    <area shape="poly" coords="223,178,237,173,239,138,266,126,287,123,317,134,328,158,337,170,348,163,321,120,2 99,110,269,108,249,119,228,132,208,157" href="#" id="sprytrigger14" />
    <area shape="poly" coords="258,224,289,223,305,197,325,190,315,162,290,176,273,168,276,160,249,144,244,169,2 48,201,236,204,241,223" href="#" id="sprytrigger15" />
    <area shape="circle" coords="398,86,13" href="#" alt="chapter4" id="sprytrigger16" />
    <area shape="poly" coords="389,103,381,76,345,90,343,130,397,179,425,173,470,118,450,85,427,67,413,102" href="#" id="sprytrigger17" />
    <area shape="poly" coords="305,234,324,228,328,203,308,200,297,214" href="#" id="sprytrigger18" />
    <area shape="rect" coords="338,5,380,57" href="#" alt="Lyra" id="sprytrigger19" />
    <area shape="poly" coords="279,280,299,254" href="#" />
    <area shape="poly" coords="245,252,269,276,288,281,298,255,295,227,256,227,224,250,214,267,220,306,231,271,2 34,256" href="#" id="sprytrigger20" />
    <area shape="circle" coords="477,195,13" href="#" alt="Chapter 5" id="sprytrigger21" />
    <area shape="poly" coords="396,181,461,167,465,214,465,254,438,249,438,231,424,224" href="#" alt="Capricornus" id="sprytrigger22" />
    <area shape="poly" coords="378,246,400,227,377,188,352,155,347,172,325,179,328,197,355,237" href="#" id="sprytrigger23" />
    <area shape="circle" coords="479,296,15" href="#" id="sprytrigger24" />
    <area shape="poly" coords="467,239,494,243,486,256,492,283,479,279,467,286,465,270" href="#" id="sprytrigger25" />
    <area shape="poly" coords="438,250,436,234,425,227,414,218,412,226,422,247,403,252,406,268,419,281,433,345,4 50,371,477,365,494,318,475,317,462,297,463,259" href="#" id="sprytrigger26" />
    <area shape="poly" coords="421,298,414,279,400,254,390,263,384,292,372,254,365,256,371,280,346,280,367,337,3 79,364" href="#" id="sprytrigger27" />
    <area shape="poly" coords="332,209,351,234,366,253,369,275,346,265,331,278,311,261,298,268,302,243,321,234" href="#" id="sprytrigger28" />
    <area shape="circle" coords="475,402,16" href="#" id="sprytrigger29" />
    <area shape="poly" coords="351,429,391,394,400,375,425,334,422,309,400,337,370,383,352,361,338,362,336,381,3 53,398,359,410" href="#" id="sprytrigger30" />
    <area shape="poly" coords="341,360,365,368,371,352,345,324,312,345,305,347,305,381,331,379" href="#" id="sprytrigger31" />
    <area shape="poly" coords="290,314,322,320,324,273,303,269,291,282,267,279,266,296,271,310" href="#" id="sprytrigger32" />
    <area shape="circle" coords="394,492,16" href="#" id="sprytrigger33" />
    <area shape="poly" coords="333,386,354,405,347,423,323,425,304,430,295,425,300,406" href="#" id="sprytrigger34" />
    <area shape="poly" coords="286,338,324,337,324,326,282,316" href="#" id="sprytrigger35" />
    <area shape="poly" coords="365,427,411,374,440,366,465,385,457,403,465,418,442,444,339,501,325,471,304,450,3 14,431" href="#" id="sprytrigger36" />
    <area shape="poly" coords="315,340,282,341,258,357,258,382,271,399,287,397,303,354" href="#" id="sprytrigger37" />
    <area shape="circle" coords="257,499,15" href="#" id="sprytrigger38" />
    <area shape="poly" coords="310,437,298,450,301,460,271,458,264,443,226,415,235,401,256,406,269,401,292,401,2 93,394,310,398,293,411,295,429" href="#" id="sprytrigger39" />
    <area shape="poly" coords="231,411,223,407,197,420,195,440,195,467,205,477,233,472,257,455" href="#" id="sprytrigger40" />
    <area shape="poly" coords="259,455,278,464,315,472,342,506,289,508,265,478,237,490,225,480" href="#" id="sprytrigger41" />
    <area shape="poly" coords="229,406,238,399,255,401,254,357,225,355,213,384" href="#" id="sprytrigger42" />
    <area shape="circle" coords="130,498,20" href="#" id="sprytrigger43" />
    <area shape="poly" coords="194,420,219,407,211,384,217,371,190,357,165,376,169,400,183,415" href="#" id="sprytrigger44" />
    <area shape="poly" coords="206,479,222,479,228,508,183,510,176,469" href="#" id="sprytrigger45" />
    <area shape="poly" coords="111,509,109,488,120,479,135,477,155,488,164,470,147,436,79,468,73,489" href="#" id="sprytrigger46" />
    <area shape="poly" coords="164,392,173,427,136,415,138,388" href="#" id="sprytrigger47" />
    <area shape="circle" coords="46,399,19" href="#" id="sprytrigger48" />
    <area shape="poly" coords="145,387,179,356,166,329,131,342,118,351,135,385" href="#" id="sprytrigger49" />
    <area shape="poly" coords="265,280,245,259,235,267,239,305,265,306" href="#" id="sprytrigger50" />
    <area shape="poly" coords="211,274,223,246,201,237,195,266,153,274,180,335,226,334" href="#" id="sprytrigger51" />
    <area shape="poly" coords="52,420,67,407,63,386,48,377,85,357,107,373,127,426,69,474,18,448,6,384,32,416" href="#" id="sprytrigger52" />
    <area shape="circle" coords="18,299,21" href="#" id="sprytrigger53" />
    <area shape="poly" coords="114,346,161,329,148,250,132,248,117,259,93,252,90,265,105,338" href="#" id="sprytrigger54" />
    <area shape="poly" coords="119,395,134,387,111,350,88,329,68,287,46,280,39,255,46,237,55,214,77,184,146,120, 146,107,112,138,83,159,65,184,45,208,28,233,38,285,76,354,96,355" href="#" id="sprytrigger55" />
    <area shape="poly" coords="49,278,65,284,90,270,65,235,43,255" href="#" id="sprytrigger56" />
    <area shape="poly" coords="89,180,68,203,60,213,65,232,96,225,103,201,101,188" href="#" id="sprytrigger57" />
    </map>
    </div>
    </div>
    </div>
    <div id="right">
    <p>Ps 19:1-6<br />
    1 The heavens declare the glory of God; and the firmament sheweth his handywork.</p>
    <p> 2 Day unto day uttereth speech, and night unto night sheweth knowledge.</p>
    <p> 3 There is no speech nor language, where their voice is not heard.</p>
    <p> 4 Their line is gone out through all the earth, and their words to the end of the world. In them hath he set a tabernacle for the sun,</p>
    <p> 5 Which is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race.<br />
    Stars a STORY-book.<br />
    6 His going forth is from the end of the heaven, and his circuit unto the ends of it: and there is nothing hid from the heat thereof.</p>
    <p>Ps 19:7-14<br />
    7 The law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple.</p>
    <p> 8 The statutes of the LORD are right,  rejoicing the heart: the commandment of the LORD is pure, enlightening the eyes.</p>
    <p> 9 The fear of the LORD is clean, enduring for ever: the judgments of the LORD are true and righteous altogether.</p>
    <p> 10 More to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb.</p>
    <p> 11 Moreover by them is thy servant warned: and in keeping of them there is great reward.</p>
    <p> 12 Who can understand his errors? cleanse thou me from secret faults.</p>
    <p> 13 Keep back thy servant also from presumptuous sins; let them not have dominion over me: then shall I be upright, and I shall be innocent from the great transgression.</p>
    <p> 14 Let the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O LORD, my strength, and my redeemer.<br />
    KJV</p>
    <p><br />
    </p>
    </div>
    <div id="Footer">Site updated June 2011</div>
    </div>
    </div>
    <div class="tooltipContent" id="sprytooltip57">
    <p><img src="images/Constellations/Corvus.jpg" width="199" height="170" alt="Corvus" />CORVUS (The Crow, or Raven).</p>
    <p> Birds of prey devouring him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip56">
    <p><img src="images/Constellations/Crater.jpg" width="180" height="196" alt="Crater" /></p>
    <p>CRATER (The Cup). </p>
    <p>The cup of Divine wrath poured out upon him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip55">
    <p><img src="images/Constellations/Hydra.jpg" width="184" height="142" alt="Hydra" /></p>
    <p>HYDRA (The Serpent). That old Serpent— Devil, destroyed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip54">
    <p><img src="images/Constellations/Leo.jpg" width="198" height="130" alt="Leo" /></p>
    <p>LEO (The Lion). </p>
    <p>The Lion of the Tribe of Judah aroused for the rending of the Enemy.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip53">
    <p>Chapter IV - TWELFTH -</p>
    <p> Messiah's Consummated Triumph      LEO (The Lion). The Lion of the Tribe of Judah aroused for the rending of the Enemy.           </p>
    <p>1. HYDRA (The Serpent). That old Serpent— Devil, destroyed.     </p>
    <p>2. CRATER (The Cup). The cup of Divine wrath poured out upon him.     </p>
    <p>3. CORVUS (The Crow, or Raven). Birds of prey devouring him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip52">
    <p><img src="images/Constellations/Argo.jpg" width="200" height="199" alt="Argo" />ARGO (The Ship).</p>
    <p> The redeemed pilgrims safe at home..</p>
    </div>
    <div class="tooltipContent" id="sprytooltip51">
    <p><img src="images/Constellations/UrsaMajor.jpg" width="200" height="150" alt="Ursa Major" />URSA MAJOR (The Great Bear).</p>
    <p> The fold and the flock.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip50">
    <p><img src="images/Constellations/UrsaMinor.jpg" width="185" height="133" alt="Ursa Minor" /></p>
    <p>URSA MINOR (The Lesser Bear). </p>
    <p>The lesser sheepfold.</p>
    <p> The 7,000...? -</p>
    <p>This star was called by the Greeks the "Cynosure." Aratus seems to apply this term to the whole of the seven stars of the Lesser Bear. Mr. Robert Brown, Jr., shows that this word . . . transliterates An-nas-sur-ra, and renders it, "as it literally means, high in rising, i.e., in heavenly position.". Is not this the primitve truth of the Revelation? Will not this Lesser Fold be high, yea, the highest in heavenly position?</p>
    </div>
    <div class="tooltipContent" id="sprytooltip49">
    <p><img src="images/Constellations/Cancer.jpg" width="183" height="200" alt="Cancer" />CANCER (The Crab).</p>
    <p> The possession held fast.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip48">
    <p>Chapter III ELEVENTH -</p>
    <p> Messiah's Redeemed Possessions      </p>
    <p>CANCER (The Crab). The possession held fast.          </p>
    <p>1. URSA MINOR (The Lesser Bear). </p>
    <p>The lesser sheepfold.          7,000 - This star was called by the Greeks the "Cynosure." Aratus seems to apply this term to the whole of the seven stars of the Lesser Bear. Mr. Robert Brown, Jr., shows that this word . . . transliterates An-nas-sur-ra, and renders it, "as it literally means, high in rising, i.e., in heavenly position.". Is not this the primitve truth of the Revelation? Will not this Lesser Fold be high, yea, the highest in heavenly position?</p>
    <p> 2. URSA MAJOR (The Great Bear). The fold and the flock.
    3. ARGO (The Ship). The redeemed pilgrims safe at home..</p>
    </div>
    <div class="tooltipContent" id="sprytooltip47">
    <p><img src="images/Constellations/CanisMinor.jpg" width="170" height="123" alt="CanisMinor" /></p>
    <p>CANIS MINOR (The Second Dog), or PROCYON, the exalted Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip46"><img src="images/Constellations/CanisMajor.jpg" width="193" height="228" alt="CanisMajor" />CANIS MAJOR (The Dog), or SIRIUS, the coming glorious Prince of Princes.</div>
    <div class="tooltipContent" id="sprytooltip45">
    <p><img src="images/Constellations/Lepus.jpg" width="198" height="196" alt="Lepus" />LEPUS (The Hare), or</p>
    <p> THE ENEMY trodden under foot.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip44">
    <p><img src="images/Constellations/Gemini.jpg" width="197" height="228" alt="Gemini" />GEMINI (The Twins). </p>
    <p>The twofold nature of the King.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip43">
    <p>Chapter II - TENTH  - </p>
    <p>Messiah's Reign as Prince of Peace      GEMINI (The Twins). The twofold nature of the King.</p>
    <p> 1. LEPUS (The Hare), or THE ENEMY trodden under foot.<br />
    2. CANIS MAJOR (The Dog), or SIRIUS, the coming glorious Prince of Princes.<br />
    3. CANIS MINOR (The Second Dog), or PROCYON, the exalted Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip42">
    <p><img src="images/Constellations/Auriga.jpg" width="197" height="289" alt="Auriga" />AURIGA (The Shepherd). </p>
    <p>Safety for the Redeemed in the day of that wrath.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip41">
    <p><img src="images/Constellations/Eridanus.jpg" width="198" height="86" alt="Eridanus" />ERIDANUS (The River of the Judge). </p>
    <p>Wrath breaking forth for His enemies.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip40">
    <p><img src="images/Constellations/Orion.jpg" width="185" height="262" alt="Orion" /></p>
    <p>ORION,  </p>
    <p>Light breaking forth in the person of the Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip39">
    <p><img src="images/Constellations/Taurus.jpg" width="200" height="165" alt="Taurus" />TAURUS (The Bull). </p>
    <p>Messiah coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip38">
    <p>Chapter I - NINTH - </p>
    <p>Messiah, The Coming Judge of All the Earth      
    TAURUS (The Bull).</p>
    <p> Messiah coming to rule.           </p>
    <p>1. ORION,  Light breaking forth in the person of the Redeemer.</p>
    <p> 2. ERIDANUS (The River of the Judge). Wrath breaking forth for His enemies.</p>
    <p> 3. AURIGA (The Shepherd). Safety for the Redeemed in the day of that wrath.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip37">
    <p><img src="images/Constellations/Perseus.jpg" width="167" height="257" alt="Perseus" /></p>
    <p>PERSEUS (The Breaker).</p>
    <p> Delivering His redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip36">
    <p><img src="images/Constellations/Cetus.jpg" width="198" height="93" alt="Cetus" />CETUS (The Sea Monster). </p>
    <p>The great enemy bound.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip35">
    <p><img src="images/Constellations/Cassiopeia.jpg" width="128" height="196" alt="Cassiopeia" /></p>
    <p>CASSIOPEIA (The Enthroned Woman).</p>
    <p> The captive delivered, and preparing for her husband, the Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip34">
    <p><img src="images/Constellations/Aries.jpg" width="200" height="165" alt="Aries" />ARIES (The Ram or Lamb). </p>
    <p>The Lamb that was slain, prepared for the victory.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip33">
    <p>Chapter IV - EIGHTH - </p>
    <p>Their Blessings Consummated and Enjoyed      ARIES (The Ram or Lamb).</p>
    <p> The Lamb that was slain, prepared for the victory.</p>
    <p> 1. CASSIOPEIA (The Enthroned Woman). </p>
    <p>The captive delivered, and preparing for her husband, the Redeemer.</p>
    <p> 2. CETUS (The Sea Monster).</p>
    <p> The great enemy bound.</p>
    <p> 3. PERSEUS (The Breaker). </p>
    <p>Delivering His redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip32">
    <p><img src="images/Constellations/Cephus.jpg" width="144" height="164" alt="Cephus" /></p>
    <p>CEPHEUS (The King).</p>
    <p> Their Redeemer coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip31">
    <p><img src="images/Constellations/Andromeda.jpg" width="181" height="189" alt="Andromeda" />ANDROMEDA (The Chained Woman).</p>
    <p> The Redeemed in their bondage and affliction.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip30">
    <p><img src="images/Constellations/Pisces.jpg" width="198" height="94" alt="Pisces" />PISCES (The Fishes). </p>
    <p>The Redeemed blessed though bound.</p>
    <p> </p>
    <p> THE BAND—, but binding their great enemy Cetus, the sea monster.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip29">
    <p>Chapter III - SEVENTH - </p>
    <p>Their Blessings in Abeyance      PISCES</p>
    <p> (The Fishes). </p>
    <p>The Redeemed blessed though bound.           </p>
    <p>1. THE BAND—,</p>
    <p> but binding their great enemy Cetus, the sea monster.</p>
    <p> 2. ANDROMEDA (The Chained Woman).</p>
    <p> The Redeemed in their bondage and affliction.
    3. CEPHEUS (The King).</p>
    <p> Their Redeemer coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip28">
    <p><img src="images/Constellations/Cygnus.jpg" width="198" height="224" alt="Cygnus" />CYGNUS (The Swan). </p>
    <p>The Blesser surely returning.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip27">
    <p><img src="images/Constellations/Pegasus.jpg" width="201" height="130" alt="Pegasus" />PEGASUS (The Winged Horse).</p>
    <p> The blessings quickly coming.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip26">
    <p><img src="images/Constellations/Aquarius.jpg" width="198" height="109" alt="Aquarius" />AQUARIUS (The Water-Bearer).</p>
    <p> The living waters of blessing poured forth for the Redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip25">
    <p><img src="images/Constellations/PicisAustralis.jpg" width="198" height="63" alt="Piscis Australis" />PISCIS AUSTRALIS (The Southern Fish).</p>
    <p> The blessings bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip24">
    <p>Chapter II - SIXTH  -</p>
    <p>Their Blessings Ensured      AQUARIUS </p>
    <p>(The Water-Bearer). </p>
    <p>The living waters of blessing poured forth for the Redeemed.</p>
    <p> 1. PISCIS AUSTRALIS (The Southern Fish). The blessings bestowed.     </p>
    <p>2. PEGASUS (The Winged Horse). The blessings quickly coming.</p>
    <p> 3. CYGNUS (The Swan). The Blesser surely returning.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip23">
    <p><img src="images/Constellations/Trio.jpg" width="198" height="133" alt="Trio" />1. SAGITTA (The Arrow). </p>
    <p>The arrow of God sent forth.</p>
    <p> 2. AQUILA (The Eagle). </p>
    <p>The smitten One falling.</p>
    <p> 3. DELPHINUS (The Dolphin). </p>
    <p>The dead One rising again.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip22"><img src="images/Constellations/Capricornus.jpg" width="199" height="145" alt="Capricornus" />CAPRICORNUS (The fish-goat). The goat of Atonement slain for the Redeemed.</div>
    <div class="tooltipContent" id="sprytooltip21">
    <p>Chapter I - FIFTH -</p>
    <p> Their Blessings Procured      
    CAPRICORNUS (The fish-goat). </p>
    <p>The goat of Atonement slain for the Redeemed.           
    1. SAGITTA (The Arrow).</p>
    <p> The arrow of God sent forth.</p>
    <p> 2. AQUILA (The Eagle).</p>
    <p> The smitten One falling.</p>
    <p> 3. DELPHINUS (The Dolphin).</p>
    <p> The dead One rising again.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip20"><img src="images/Constellations/DracoMap.jpg" width="200" height="161" alt="Draco" />DRACO (The Dragon). The Old Serpent— Devil, cast down from heaven.</div>
    <div class="tooltipContent" id="sprytooltip19">
    <p><img src="images/Constellations/Ara.jpg" width="143" height="142" alt="Ara" /></p>
    <p>ARA (The Altar). Consuming fire prepared for His enemies.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip18">
    <p><img src="images/Constellations/Lyra.jpg" width="139" height="117" alt="Lyra" />. </p>
    <p>LYRA (The Harp).</p>
    <p> Praise prepared for the Conqueror.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip17"><img src="images/Constellations/Safittarius.jpg" width="198" height="213" alt="Sagittarius" />SAGITTARIUS (The Archer). The two-natured Conqueror going forth "Conquering and to conquer."</div>
    <div class="tooltipContent" id="sprytooltip16">
    <p>Chapter IV -</p>
    <p> The Redeemer's Triumph      
    SAGITTARIUS (The Archer). The two-natured Conqueror going forth "Conquering and to conquer."</p>
    <p>           
    1. LYRA (The Harp). Praise prepared for the Conqueror.</p>
    <p> 2. ARA (The Altar). Consuming fire prepared for His enemies.    </p>
    <p>3. DRACO (The Dragon). The Old Serpent— Devil, cast down from heaven.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip15"> <img src="images/Constellations/Hercules.jpg" width="198" height="190" alt="Hercules" />HERCULES (The mighty man. A man kneeling on one knee, humbled in the conflict, but holding aloft the tokens of victory, with his foot on the head of the Dragon). The mighty Vanquisher seeming to sink in the conflict.</div>
    <div class="tooltipContent" id="sprytooltip14"><img src="images/Constellations/Serpens.jpg" width="199" height="152" alt="Serpens" />SERPENS (The Serpent struggling with the man).</div>
    <div class="tooltipContent" id="sprytooltip13">
    <p><img src="images/Constellations/Ophiuchus.jpg" width="199" height="227" alt="Ophiuchus" /></p>
    <p>O-PHI-U-CHUS (The man grasping the serpent). The struggle with the enemy.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip12"><img src="images/Constellations/Scorpio.jpg" width="198" height="186" alt="Scorpio" />SCORPIO (The Scorpion) seeking to wound, but itself trodden under foot.</div>
    <div class="tooltipContent" id="sprytooltip11">Chapter III - THIRD  - The Redeemer's Conflict SCORPIO (The Scorpion) seeking to wound, but itself trodden under foot.      <br />
    1. SERPENS (The Serpent struggling with the man). <br />
    <br />
    2. O-PHI-U-CHUS (The man grasping the serpent). The struggle with the enemy. <br />
    <br />
    3. HERCULES (The mighty man. A man kneeling on one knee, humbled in the conflict, but holding aloft the tokens of victory, with his foot on the head of the Dragon). The mighty Vanquisher seeming to sink in the conflict.</div>
    <div class="tooltipContent" id="sprytooltip10">
    <p>Chapter II - SECOND -  The Redeemer's Atoning Work</p>
    <p> LIBRA (The Scales). The price deficient balanced by the price which covers. <br />
    1. CRUX,  The Cross endured. <br />
    <br />
    2. LUPUS, or VICTIMA, The Victim slain. <br />
    <br />
    3. CORONA, The Crown bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip9">
    <p>Chapter I -FIRST -  The Prophecy of the Promised Seed of the Woman</p>
    <p><br />
    VIRGO (The Virgin. A woman bearing a branch in her right hand and an ear of corn in her left). The Promised Seed of the woman. <br />
    1. COMA (The Desired. The woman and child). The Desired of all nations. <br />
    <br />
    2. CENTAURUS (The Centaur with two natures, holding a spear piercing a victim). The despised sin offering. <br />
    <br />
    3. BOOTES (a man walking bearing a branch called ARCTURUS, meaning the same). He cometh.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip8">
    <p><img src="images/Constellations/CoronaBorealis.jpg" width="69" height="55" alt="CoronaBorealis" /></p>
    <p>CORONA, The Crown bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip7"> <img src="images/Constellations/LupusOrTheVictim.jpg" width="197" height="191" alt="Lupus" />LUPUS, or VICTIMA, The Victim slain.</div>
    <div class="tooltipContent" id="sprytooltip6">
    <p><img src="images/Constellations/Crux.jpg" width="67" height="100" alt="Crux" /></p>
    <p>CRUX,  The Cross endured.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip5">
    <p><img src="images/Constellations/Libra.jpg" width="185" height="176" alt="Libra" /></p>
    <p>LIBRA (The Scales). The price deficient balanced by the price which covers.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip4">
    <p><img src="images/Constellations/Bootes.jpg" width="162" height="191" alt="Bootes" /></p>
    <p>BOOTES (a man walking bearing a branch called ARCTURUS, meaning the same). He cometh!</p>
    </div>
    <div class="tooltipContent" id="sprytooltip3"><img src="images/Constellations/Centaurus.jpg" width="198" height="123" alt="Centaurus Pic" />Centaurus -(The Centaur with two natures, holding a spear piercing a victim). The despised sin offering.</div>
    <div class="tooltipContent" id="sprytooltip2">
    <p><img src="images/Constellations/Coma.jpg" width="156" height="161" alt="Coma" /></p>
    <p>Coma (The Desired. The woman and child). The Desired of all nations.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip1"><img src="images/Constellations/Virgo.jpg" width="199" height="364" alt="Virgo Pic" />Virgo VIRGO (The Virgin. A woman bearing a branch in her right hand and an ear of corn in her left). The Promised Seed of the woman.</div>
    <script type="text/javascript">
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip2 = new Spry.Widget.Tooltip("sprytooltip2", "#sprytrigger2", {offsetX:-450, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    var sprytooltip3 = new Spry.Widget.Tooltip("sprytooltip3", "#sprytrigger3", {useEffect:"fade", closeOnTooltipLeave:true, offsetX:-400, followMouse:true});
    var sprytooltip4 = new Spry.Widget.Tooltip("sprytooltip4", "#sprytrigger4", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip5 = new Spry.Widget.Tooltip("sprytooltip5", "#sprytrigger5", {useEffect:"fade", offsetX:-470, closeOnTooltipLeave:true});
    var sprytooltip6 = new Spry.Widget.Tooltip("sprytooltip6", "#sprytrigger6", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip7 = new Spry.Widget.Tooltip("sprytooltip7", "#sprytrigger7", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip8 = new Spry.Widget.Tooltip("sprytooltip8", "#sprytrigger8", {offsetX:-500, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip9 = new Spry.Widget.Tooltip("sprytooltip9", "#sprytrigger9", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip10 = new Spry.Widget.Tooltip("sprytooltip10", "#sprytrigger10", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip11 = new Spry.Widget.Tooltip("sprytooltip11", "#sprytrigger11", {offsetX:-500, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip12 = new Spry.Widget.Tooltip("sprytooltip12", "#sprytrigger12", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip13 = new Spry.Widget.Tooltip("sprytooltip13", "#sprytrigger13", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip14 = new Spry.Widget.Tooltip("sprytooltip14", "#sprytrigger14", {offsetX:-800, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    var sprytooltip15 = new Spry.Widget.Tooltip("sprytooltip15", "#sprytrigger15", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip16 = new Spry.Widget.Tooltip("sprytooltip16", "#sprytrigger16", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip17 = new Spry.Widget.Tooltip("sprytooltip17", "#sprytrigger17", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip18 = new Spry.Widget.Tooltip("sprytooltip18", "#sprytrigger18", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip19 = new Spry.Widget.Tooltip("sprytooltip19", "#sprytrigger19", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip20 = new Spry.Widget.Tooltip("sprytooltip20", "#sprytrigger20", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip21 = new Spry.Widget.Tooltip("sprytooltip21", "#sprytrigger21", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip22 = new Spry.Widget.Tooltip("sprytooltip22", "#sprytrigger22", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip23 = new Spry.Widget.Tooltip("sprytooltip23", "#sprytrigger23", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip24 = new Spry.Widget.Tooltip("sprytooltip24", "#sprytrigger24", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip25 = new Spry.Widget.Tooltip("sprytooltip25", "#sprytrigger25", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip26 = new Spry.Widget.Tooltip("sprytooltip26", "#sprytrigger26", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true});
    var sprytooltip27 = new Spry.Widget.Tooltip("sprytooltip27", "#sprytrigger27", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true});
    var sprytooltip28 = new Spry.Widget.Tooltip("sprytooltip28", "#sprytrigger28", {useEffect:"fade", offsetX:-800, closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip29 = new Spry.Widget.Tooltip("sprytooltip29", "#sprytrigger29", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip30 = new Spry.Widget.Tooltip("sprytooltip30", "#sprytrigger30", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip31 = new Spry.Widget.Tooltip("sprytooltip31", "#sprytrigger31", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip32 = new Spry.Widget.Tooltip("sprytooltip32", "#sprytrigger32", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip33 = new Spry.Widget.Tooltip("sprytooltip33", "#sprytrigger33", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip34 = new Spry.Widget.Tooltip("sprytooltip34", "#sprytrigger34", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip35 = new Spry.Widget.Tooltip("sprytooltip35", "#sprytrigger35", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip36 = new Spry.Widget.Tooltip("sprytooltip36", "#sprytrigger36", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip37 = new Spry.Widget.Tooltip("sprytooltip37", "#sprytrigger37", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip38 = new Spry.Widget.Tooltip("sprytooltip38", "#sprytrigger38", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip39 = new Spry.Widget.Tooltip("sprytooltip39", "#sprytrigger39", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip40 = new Spry.Widget.Tooltip("sprytooltip40", "#sprytrigger40", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip41 = new Spry.Widget.Tooltip("sprytooltip41", "#sprytrigger41", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip42 = new Spry.Widget.Tooltip("sprytooltip42", "#sprytrigger42", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip43 = new Spry.Widget.Tooltip("sprytooltip43", "#sprytrigger43", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip44 = new Spry.Widget.Tooltip("sprytooltip44", "#sprytrigger44", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip45 = new Spry.Widget.Tooltip("sprytooltip45", "#sprytrigger45", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip46 = new Spry.Widget.Tooltip("sprytooltip46", "#sprytrigger46", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip47 = new Spry.Widget.Tooltip("sprytooltip47", "#sprytrigger47", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip48 = new Spry.Widget.Tooltip("sprytooltip48", "#sprytrigger48", {offsetX:-400, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip49 = new Spry.Widget.Tooltip("sprytooltip49", "#sprytrigger49", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip50 = new Spry.Widget.Tooltip("sprytooltip50", "#sprytrigger50", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip51 = new Spry.Widget.Tooltip("sprytooltip51", "#sprytrigger51", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip52 = new Spry.Widget.Tooltip("sprytooltip52", "#sprytrigger52", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip53 = new Spry.Widget.Tooltip("sprytooltip53", "#sprytrigger53", {offsetX:-400, followMouse:true, closeOnTooltipLeave:true, useEffect:"fade"});
    var sprytooltip54 = new Spry.Widget.Tooltip("sprytooltip54", "#sprytrigger54", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip55 = new Spry.Widget.Tooltip("sprytooltip55", "#sprytrigger55", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip56 = new Spry.Widget.Tooltip("sprytooltip56", "#sprytrigger56", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip57 = new Spry.Widget.Tooltip("sprytooltip57", "#sprytrigger57", {offsetX:-403, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    </script>
    </body>
    </html> 

  • Hi i have 50 infoobjects as part of my aggregates and in that 10 infoobjects have received changes in masterdata.so in my process chain the Attribute change run in running for a long time.can i kill the job and repeat the same.

    Hi i have 50 infoobjects as part of my aggregates and in that 10 infoobjects have received changes in masterdata.so in my process chain the Attribute change run in running for a long time.can i kill the job and repeat the same.

    Hi,
    I believe this would be your Prod system, so don't just cancel it but look at the job log. If it is still processing then don't kill it and wait for the change run to complete but if you can see that nothing is happening and it is stuck for a long time then you can go ahead and cancel it.
    But please be sure, as these kind of jobs can create problems if you cancel them in the middle of a job.
    Regards,
    Arminder Singh

  • APS Collections Refresh Snapshot Thread running for very long

    Hi,
    Program "APS Collections Refresh Snapshot Thread" for "BOM_INV_COMPS_SN" snapshot is running for very long time.
    Can we cancel it?
    It's running in FAST refresh mode.
    Thanks.

    Hi,
    Count the records in the mlog tables of these MVs. If the record count is more than do a complete refresh.
    Thanks,
    Abhishek Sharma

  • Can't start up my ipod 5thG and stay remining the logo of apple for too long don't know how to do????

    can't start up my ipod 5thG and stay remining the logo of apple for too long don't know how to do????

    Try:                           
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar

  • A script in file EditingUtils.js has been running for a long time CS4

    I'm getting this error in dreamweaver:
    "A script in file C:\ProgramFiles\Adobe\Aobe Dreamweaver CS4\Configuration\Shared\Spry\DesignTime\EditingUtils.js has been running for a long time. Do you want to continue?"
    I get the error when I open a page that has several spry elements, even after shutting down my computer and rebooting. It has over 100 spry collapsible panels, which each have their own name, ie: var CollapsiblePanel108 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel108")
    I read that editing the parameters of a widget may cause problems for CS3, and it is resolved for CS3: http://kb2.adobe.com/cps/401/kb401257.html, but I don't know how to fix the problem for CS4.
    Any help is greatly appreciated!

    seleon04 wrote:
    I get the error when I open a page that has several spry elements, even after shutting down my computer and rebooting. It has over 100 spry collapsible panels, which each have their own name, ie: var CollapsiblePanel108 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel108")
    I think you have answered your own question. More than 100 Spry collapsible panels is not exactly what most people would call "several". It's a huge - and probably unrealistic - amount.
    I don't think there is an actual limit on the number of Spry elements that you can have on a page, but Dreamweaver uses JavaScript in the background to inspect the document and edit it. The more elements you have, the greater the processing power and memory your computer requires to handle them. It might work with a faster processor or more RAM, but I think you need to reconsider your design strategy.

  • DFS Error 9061 (Replicated folder offline for too long) won't go away

    We have a server that got disconnected from a DFS replication group for too long. The error says to remove the server from the group and re-add it. I've done that about 6 times and I keep getting the error. I even tried deleting the replicated folder on
    the server so it would copy from other servers but the error just won't go away. How can I get rid of it and get the folder replicating again?

    Hi,
    Based on your description, we can try to following the steps described in the section
    Recovering DFSR from Content Protection in the following blog to troubleshoot the issue.
    Implementing Content Freshness protection in DFSR
    http://blogs.technet.com/b/askds/archive/2009/11/18/implementing-content-freshness-protection-in-dfsr.aspx
    If the issue persists, please keep us posted.
    Best regards,
    Frank Shen

Maybe you are looking for

  • Downgrading from Final Cut Pro Studio to Final Cut Express

    Will Final Cut Express let me use the Boris Title 3D Video Generator effect that I now use in Final Cut Pro Studio? Does it have an outline text video generator effect? Since I have DVDSP 4.1.2, will I be able to drag my exported non self-contained q

  • JBO-26035 Error

    Can somebody please explain here what can be the cause for this exception? : EXC_MISSING_EO_USAGE_ASSOC_INFO JBO-26035: PersistenceException Thanks.

  • Group by Having Count(*)

    Hi... I'm back again and I'm ever hopeful that I will get some needed help. I'm trying to use the groupby and having Count(*) on a table, but I think I have my group by wrong...I keep getting the wrong output. Here's my code: Select Course_ID,Count(*

  • Is it possible to provide autoinstallation of only java plugin not full jre

    Hi all I m using the HTML convertor to convert the html pages to deploy the applet in a mixed browser enviornment and also to autodownload the java plugin. It takes quite sometime for the autoinstall the plugin. Is it possible to provide the autodown

  • Setting up AP for Stand-alone

    I'm on a test network with just an AP and a client. I have no radius servers on this network. I'm able to get my statically IP'd client to be accepted by the ap through it's encryption but I keep getting errors that said it failed to authenticate (%D