Table in Schema1 using XMLIndexes But not in View- Schema2

Hi,
We are using :
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit
I have a view with following query:
CREATE OR REPLACE FORCE VIEW VIEW_TNAME
XML
AS
SELECT Column_Name
FROM TNAME
WHERE XMLEXISTS (
'declare namespace Namesp1 ="Abc:Set"; declare Namespace Namesp2 ="XYZ:Set"; declare namespace Namesp3 ="DEF:Set"; /Namesp1:Tag1/Namesp2:Tag2/Namesp3:Tag3[@id="ID"][Namesp2:Tag5[@Scope="SCOPE"] = ("1000", "2000") ]'
PASSING Column_Name);
Table TNAME is in Schema1.
View VIEW_TNAME is in Schema2.
When I execute the query in Schema1(without the view. i.e. Just execute underlying query).
Plan is like:
Plan
SELECT STATEMENT ALL_ROWSCost: 86 Bytes: 124 Cardinality: 1                                                        
     20 NESTED LOOPS Cost: 86 Bytes: 124 Cardinality: 1                                                   
          18 VIEW VIEW SYS.VW_SQ_1 Cost: 84 Bytes: 25 Cardinality: 1                                              
               17 HASH UNIQUE Bytes: 190 Cardinality: 1                                         
                    16 NESTED LOOPS Cost: 84 Bytes: 190 Cardinality: 1                                    
                         13 NESTED LOOPS Cost: 84 Bytes: 143 Cardinality: 1                               
                              9 NESTED LOOPS Cost: 65 Bytes: 96 Cardinality: 1                          
                                   6 HASH JOIN RIGHT SEMI Cost: 64 Bytes: 490 Cardinality: 10                     
                                        1 COLLECTION ITERATOR PICKLER FETCH PROCEDURE SYS.XQSEQUENCEFROMXMLTYPE Cost: 35 Bytes: 32,720 Cardinality: 16,360                
                                        5 PX COORDINATOR                
                                             4 PX SEND QC (RANDOM) PARALLEL_TO_SERIAL SYS.:TQ10000 :Q1000Cost: 28 Bytes: 442,599 Cardinality: 9,417           
                                                  3 PX BLOCK ITERATOR PARALLEL_COMBINED_WITH_CHILD :Q1000Cost: 28 Bytes: 442,599 Cardinality: 9,417 Partition #: 11 Partitions accessed #1 - #282     
                                                       2 TABLE ACCESS FULL TABLE PARALLEL_COMBINED_WITH_PARENT Schema_Name.TNAME_RANGE_PT :Q1000Cost: 28 Bytes: 442,599 Cardinality: 9,417 Partition #: 11 Partitions accessed #1 - #282
                                   8 PARTITION SYSTEM ITERATOR Cost: 1 Bytes: 47 Cardinality: 1 Partition #: 13 Partitions determined by Key Values                    
                                        7 TABLE ACCESS FULL TABLE Schema_Name.TNAME_RANGE_PT Cost: 1 Bytes: 47 Cardinality: 1 Partition #: 13 Partitions determined by Key Values               
                              12 PARTITION SYSTEM ALL Cost: 20 Bytes: 47 Cardinality: 1 Partition #: 15 Partitions accessed #1 - #282                         
                                   11 TABLE ACCESS BY LOCAL INDEX ROWID TABLE Schema_Name.TNAME_RANGE_PT Cost: 20 Bytes: 47 Cardinality: 1 Partition #: 15 Partitions accessed #1 - #282                    
                                        10 INDEX RANGE SCAN INDEX Schema_Name.SYS803074_I_XPATH_T_PIKEY_IX Cost: 20 Cardinality: 1 Partition #: 15 Partitions accessed #1 - #282               
                         15 PARTITION SYSTEM ITERATOR Cost: 1 Bytes: 47 Cardinality: 1 Partition #: 18 Partitions determined by Key Values                              
                              14 TABLE ACCESS FULL TABLE Schema_Name.TNAME_RANGE_PT Cost: 1 Bytes: 47 Cardinality: 1 Partition #: 18 Partitions determined by Key Values                         
          19 TABLE ACCESS BY USER ROWID TABLE Schema_Name.TNAME Cost: 1 Bytes: 99 Cardinality: 1 Partition #: 20 Partition access computed by row location               
Query uses the XMLIndexes and gets executed in ~20 seconds.
BUT
When I execute the same query in Schema2 or query the view which is built in Schema2. Explain Plan is like:
<ExplainPlan>
- <PlanElement id="0" operation="SELECT STATEMENT" optimizer="ALL_ROWS" search_columns="0" cost="48,865">
- <PlanElements>
- <PlanElement id="1" operation="FILTER" search_columns="0" filter_predicates="IS NOT NULL">
- <PlanElements>
- <PlanElement id="2" operation="PARTITION RANGE" option="ALL" search_columns="0" cost="48,805" cardinality="1,269,600" bytes="1,274,678,400" partition_id="2" partition_start="1" partition_stop="282" cpu_cost="1,932,647,487" io_cost="48,744" time="684">
- <PlanElements>
<PlanElement object_ID="0" id="3" operation="TABLE ACCESS" option="FULL" object_owner="Schema_Name" object_name="TNAME" object_type="TABLE" search_columns="0" cost="48,805" cardinality="1,269,600" bytes="1,274,678,400" partition_id="2" partition_start="1" partition_stop="282" cpu_cost="1,932,647,487" io_cost="48,744" time="684" />
</PlanElements>
</PlanElement>
- <PlanElement id="4" operation="HASH JOIN" option="RIGHT SEMI" search_columns="0" cost="60" cardinality="1" bytes="18" cpu_cost="27,206,479" io_cost="59" access_predicates="<not feasible>" time="1">
- <PlanElements>
<PlanElement object_ID="1" id="5" operation="COLLECTION ITERATOR" option="PICKLER FETCH" object_owner="SYS" object_name="XQSEQUENCEFROMXMLTYPE" object_type="PROCEDURE" search_columns="0" cost="35" cardinality="16,360" bytes="32,720" cpu_cost="3,428,288" io_cost="35" time="1" />
- <PlanElement id="6" operation="NESTED LOOPS" search_columns="0" cost="24" cardinality="100" bytes="800" cpu_cost="5,560,801" io_cost="24" time="1">
- <PlanElements>
<PlanElement id="7" operation="XPATH EVALUATION" search_columns="0" />
<PlanElement id="8" operation="XPATH EVALUATION" search_columns="0" />
(Sorry about the tags in the Plan).
As shown in the plan, XMLIndexes are not used and query goes into forever execution as there are millions of rows in table TNAME.
- Why this difference of behaviour in two schemas. It happens on some views like this one and not on others.
- How can I correct this. ( I changed parameter OPTIMIZER_SECURE_VIEW_MERGING to FALSE. It looks like that solved the problem in our environment. But getting it done in PRODUCTION looks like Very Difficult and Process Oriented unless there is no other way).
Kindly suggest. Thanks.

Hi,
Table Structure is as follows:
CREATE TABLE TNAME
DB_ID VARCHAR2(10 BYTE),
DATA_ID VARCHAR2(10 BYTE),
DATA_ID2 VARCHAR2(10 BYTE),
IDENTIFIER1 NUMBER(19) NOT NULL,
ID1 NUMBER(10) NOT NULL,
STATUS1 NUMBER(10) NOT NULL,
TIME_STAMP NUMBER(19) NOT NULL,
OBJECT_ID VARCHAR2(40 BYTE) NOT NULL,
OBJECT_NAME VARCHAR2(80 BYTE) NOT NULL,
UNIQUE_ID VARCHAR2(255 BYTE),
DATA_LIVE CHAR(1 BYTE) NOT NULL,
XML_MESSAGE SYS.XMLTYPE,
ID2 VARCHAR2(255 BYTE) NOT NULL,
FLAG1 CHAR(1 BYTE) NOT NULL,
KEY1 VARCHAR2(255 BYTE),
HEADER1 VARCHAR2(2000 BYTE) NOT NULL,
VERSION2 VARCHAR2(255 BYTE) NOT NULL,
TYPE1 VARCHAR2(15 BYTE),
LOAD_TIMESTAMP TIMESTAMP(6),
SOURCE_NUMBER NUMBER
XMLTYPE XML_MESSAGE STORE AS BINARY XML (
TABLESPACE TSNAME)
TABLESPACE TSNAME
PARTITION BY RANGE (LOAD_TIMESTAMP)
PARTITION MAX VALUES LESS THAN (MAXVALUE)
TABLESPACE TSNAME
NOCOMPRESS
NOCACHE
ENABLE ROW MOVEMENT
Indexes are:
CREATE UNIQUE INDEX "TNAME_UQI"
ON "TNAME" (" DATA_ID", "IDENTIFIER1", "ID1")
PCTFREE 10
INITRANS 2
MAXTRANS 255
COMPUTE STATISTICS
TABLESPACE "TSNAME"
CREATE INDEX "TNAME_I"
ON "TNAME" ("SOURCE_NUMBER")
PCTFREE 10
INITRANS 2
MAXTRANS 255
COMPUTE STATISTICS
TABLESPACE "TSNAME"
-- XMLType Index is created as Register Parameter and then....
BEGIN
DBMS_XMLINDEX.REGISTERPARAMETER(
'TNAME_PAR',
'PATH TABLE TNAME_PT
PATHS (INCLUDE ( /abc:Msg/xyz:product/def:productType/def:SubProductType
/abc:Msg/xyz:Products/xyz:Owner
NAMESPACE MAPPING ( xmlns:abc="Abc:Set";
xmlns:xyz ="XYZ:Set"
xmlns:def="DEF:Set"
END;
CREATE INDEX I_XPATH_TNAME
ON "TNAME" (XML_MESSAGE)
INDEXTYPE IS XDB.XMLINDEX PARAMETERS ( 'PARAM TNAME_PAR',)
local
Now the view is like:
CREATE OR REPLACE FORCE VIEW VIEW_TNAME
XML
AS
SELECT XML_MESSAGE
FROM TNAME
WHERE XMLEXISTS (
'declare namespace abc ="Abc:Set"; declare Namespace xyz ="XYZ:Set"; declare namespace def ="DEF:Set"; /abc:Tag1/xyz:Tag2/def:Tag3[@id="ID"][EntityID:Tag5[@Scope="SCOPE"] = ("1000", "2000") ]'
PASSING XML_Message);
THROUGH this view we are filtering only the EntityID in 1000 or 2000 which is unique in the XML Message, based on certain crietrias as mentioned in the Path Expression.
Due to confidentiality I can't share the data here. :-(
But it's like..(XML File size is around 250 rows in every XML_Message) and around .2 million rows in the table in environment where I am testing.
But it will grow upto some millions later.
NOW I have table in SCHEMA1.
There if I execute this underlying query to view, plan is like:
| Id  | Operation                                | Name                         | E-Rows |  OMem |  1Mem | Used-Mem |
|   0 | SELECT STATEMENT                         |                              |        |       |    |     |
|   1 |  NESTED LOOPS                            |                              |      1 |       |    |     |
|   2 |   VIEW                                   | VW_SQ_1                      |      1 |       |    |     |
|   3 |    HASH UNIQUE                           |                              |      1 |   926K|   926K| 1263K (0)|
|   4 |     NESTED LOOPS                         |                              |      1 |       |    |     |
|   5 |      NESTED LOOPS                        |                              |      1 |       |    |     |
|   6 |       NESTED LOOPS                       |                              |      1 |       |    |     |
|*  7 |        HASH JOIN RIGHT SEMI              |                              |     52 |   733K|   733K|  497K (0)|
|   8 |         COLLECTION ITERATOR PICKLER FETCH| XQSEQUENCEFROMXMLTYPE        |  16360 |       |    |     |
|   9 |         PX COORDINATOR                   |                              |        |       |    |     |
|  10 |          PX SEND QC (RANDOM)             | :TQ10000                     |  59638 |       |    |     |
|  11 |           PX BLOCK ITERATOR              |                              |  59638 |       |    |     |
|* 12 |            TABLE ACCESS FULL             | TNAME_PT                     |  59638 |       |    |     |
|  13 |        PARTITION SYSTEM ITERATOR         |                              |      1 |       |    |     |
|* 14 |         TABLE ACCESS FULL                | TNAME_PT                     |      1 |       |    |     |
|  15 |       PARTITION SYSTEM ALL               |                              |      1 |       |    |     |
|* 16 |        TABLE ACCESS BY LOCAL INDEX ROWID | TNAME_PT                     |      1 |       |    |     |
|* 17 |         INDEX RANGE SCAN                 | SYS803074_I_XPATH_T_PIKEY_IX |      1 |       |    |     |
|  18 |      PARTITION SYSTEM ITERATOR           |                              |      1 |       |    |     |
|* 19 |       TABLE ACCESS FULL                  | TNAME_PT                     |      1 |       |    |     |
|* 20 |   TABLE ACCESS BY USER ROWID             | TNAME                        |      1 |       |    |     |
---------------------------------------------------------------------------------------------------------------------So I can see PATH Tables being used on which Index is registered and Execution is very fast.
Other PLAN when I execute the query from SCHEMA2, is going for FTS on table TNAME as:
Plan
SELECT STATEMENT  ALL_ROWSCost: 39,887                      
     8 FILTER                 
          2 PARTITION RANGE ALL  Cost: 39,827  Bytes: 447,179,616  Cardinality: 193,752  Partition #: 2  Partitions accessed #1 - #282          
               1 TABLE ACCESS FULL TABLE TNAME Cost: 39,827  Bytes: 447,179,616  Cardinality: 193,752  Partition #: 2  Partitions accessed #1 - #282     
          7 HASH JOIN RIGHT SEMI  Cost: 60  Bytes: 18  Cardinality: 1            
               3 COLLECTION ITERATOR PICKLER FETCH PROCEDURE SYS.XQSEQUENCEFROMXMLTYPE Cost: 35  Bytes: 32,720  Cardinality: 16,360       
               6 NESTED LOOPS  Cost: 24  Bytes: 800  Cardinality: 100       
                    4 XPATH EVALUATION 
                    5 XPATH EVALUATION  fIRST THINGS FIRST- So is there any way I can make this view always use this index. ?
I have tried several ways including hints for Indexes but they simply don't seem to help.
Same query takes 15 secs in one schema and 2 hours in another.
Is there any way we can make the query through view always use these XMLType Indexes and not Inconsistently. It's a lot faster when XMLType Indexes are used. In fact it does not work in Production if XMLIndex is not used.
Kindly suggest..
Edited by: user8941550 on Jan 3, 2013 8:20 PM

Similar Messages

  • Sharepoint foundation 2013: office docs can be opened in browser using IE but not in firefox or chrome?

    Hi
    Sharepoint foundation 2013:
    why when we open an excel or word  using chrome and firefox browser it wants to download the file.
    It can be opened in browser using IE but not in firefox or chrome?
    Any issues?
    Thanks

    Hello MGerio,
    Can you check what your Browser File Handling settings are of the web application (of the excel/word files)?
    http://social.technet.microsoft.com/wiki/contents/articles/8073.sharepoint-browser-file-handling-deep-dive.aspx
    - Dennis | Netherlands | Blog |
    Twitter

  • My question is which better to use every time my iPad until the battery is 0% then charge it to 100% then use it again until it is 0% or i use it until the percentage is low then charge it until it is 70 - 80 %  then use it but not let it charge to 100%

    My question is which better to use every time my iPad until the battery is 0% then charge it to 100% then use it again until it is 0% or i use it until the percentage is low then charge it until it is 70 - 80 % percentage then use it but not let it charge until it is 100% to reduce the number of circles and increase the life of battery as i read that it must at least one time a month use the device until the battery drain to 0% then charge it again to 100% but i don't understand is it must be one, two, three times a month or properly most of the times  to reduce the the number of circles and increase the life of the battery?

    wuzradioman,
    I was originally on your side in the discussion of batteries, however, after being contradicted by Meg St._Clair and others I took a leap of faith and took their advice with my Apple devices.  Much to my chagrin their advice has proven true.
    Long story short I have not noticed any differences in my battery life by changing my charging habits to what is convienant over what is more in line with conventional battery myths. 

  • My mouse and trackpad arent responding the click on finder, i can use multitouch but not 1 touch. Aswell when i go to the findertab at the bottum with the mouse, app icons Does Not expand.

    My trackpad is responding the click on finder, i can use multitouch but not leftclick/1 click/touch. Aswell when i go to the findertab at the bottom with the mouse, app icons Does Not expand. I had no problems with it before, but I'm very confused.

    Not using any mouse pad, I have a very smooth desktop. But I just tried to use a sheet of A4 printing paper, but no result, the problem persisted.
    Someone on this forum suggested, that USB3 may interfere with the magic mouse.
    I have 2 LaCie HDD's about 70 cm away from the mouse, I use them on Thunderbolt. But in operation or not - the result is the same, the mouse plays up! Just now I was clicking the desktop and the mouse created a new folder!!
    Thanks for the advice, Bee
    Cheers, Gerd

  • Use Skype, but not torrents

    Hi.
    I am looking for a way to allow the users in my company to use skype, but not to be able to use torrents. We are using Skype to communicate, but the torrents are making a lot of traffic.
    I was thinking to use Squid proxy. I can disallow the users to download *.torrent files, but I do not like that way of dealing with the problem. Do you have the same problem at your companies and how did you manage to solve it.
    Regards.

    There are two projects, l7-filter and ipp2p, which allow you to match p2p traffic and drop it using iptables. Both need kernel patching, though (edit: actually, ipp2p apparently doesn't).
    Last edited by lucke (2008-09-29 11:03:09)

  • After lots of different things, it appears that my Airport won't let me download on to my Nook. It used to but not anymore. Any ideas?

    After lots of different things, it appears that my Airport won't let me download on to my Nook. It used to but not anymore. Any ideas?

    Hi Karen,
    The means that iTunes can no longer locate the songs (mp3/m4a) on the hard-drive and as such they won't even play in iTunes, let alone transfer to your iPod.
    Have you recently re-organised your music folders? If you know where these songs are on your hard-drive then you could clear all of the tracks that display the symbol from iTunes and then add them again from their location either through the 'add folders to library' function or by dragging and dropping them diectly into iTunes from Windows Explorer.
    Nik

  • Firefox throws "This Connection is Untrusted" when using hostname, but not when using IP address

    I am remotely accessing a website which has iFrame in it. The website uses https, but iFrame tag has "src" pointing to a site using http only. However, when I remotely go to the site, iFrame shows the message below although the ''src" url is http only (there is no SSL certificate) when I use IP address (https://10.10.101.156:8006/apprecovery/admin/Core/Storage) in address bar instead of hostname (https://hostname:8006/apprecovery/admin):
    ===
    This Connection is Untrusted
    You have asked Firefox to connect
    securely to d37t50w1, but we can't confirm that your connection is secure.
    Normally, when you try to connect securely,
    sites will present trusted identification to prove that you are
    going to the right place. However, this site's identity can't be verified.
    What Should I Do?
    If you usually connect to
    this site without problems, this error could mean that someone is
    trying to impersonate the site, and you shouldn't continue.
    d37t50w1 uses an invalid security certificate.
    The certificate is not trusted because it is self-signed.
    (Error code: sec_error_ca_cert_invalid)
    ===
    Why is it giving this when using hostname but not when IP address is using?

    Corrected first para above:
    I am remotely accessing a website which has iFrame in it. The website uses https, but iFrame tag has "src" pointing to a site using http only. However, when I remotely go to the site, iFrame shows the message below although the "src" url is http only (there is no SSL certificate) when I use hostname address (https://<hostname>:8006/apprecovery/admin) in address bar. But I dont see the message in iFrame when I instead use IP Address (https://<IP Address>:8006/apprecovery/admin) to go to main website.

  • My MacBook is plugged in with a green light and shows it's plugged in, but is not charging.  When it's unplugged, it dies.  It was charging last time I used it but not any more.  I am no computer whiz and need detailed info on what to do  Thanks.

    My MacBook is plugged in with a green light and shows it's plugged in, but is not charging.  When it's unplugged, it dies.  It was charging last time I used it but not any more.  I am no computer whiz and need detailed info on what to do  Thanks.

    The model 2,1 MacBook has an easily removable battery. You can get a new third party battery fairly cheap on eBay. Every MacBook from 2006 through Mid 2009 except the Late 2008 Aluminum Unibody and the Late 2009 and 2010 White Unibodies use the same A1185 battery.
    Black Batteries http://shop.ebay.com/i.html?_nkw=macbook+black+battery&_sacat=0&LH_BIN=1&_sop=12 &_dmpt=Laptop_Batteries&_odkw=macbook+white+battery&_osacat=0&_trksid=p3286.c0. m 270.l1313
    White Batteries http://shop.ebay.com/i.html?_nkw=macbook+white+battery&_sacat=0&LH_BIN=1&_sop=12 &_dmpt=Laptop_Batteries&_odkw=macbook+black+battery&_osacat=0&_trksid=p3286.c0. m 270.l1313
    Or for $129 from The Apple Store  http://store.apple.com/us/product/MA566LL/A?mco=MTY3ODQ5OTY
    Removing the battery:
    Shut down the computer. Disconnect any cords connected to the computer.
    Turn the computer over.
    Locate the battery latch on one side of the battery.
    Use a coin to turn the latch a quarter-turn clockwise. The battery should pop up slightly.
    Lift the battery out.
    Installing the battery:
    Place the right side of the battery into the battery compartment at an angle, as shown below.
    Gently press the left side of the battery down until it sits flat.
    While holding the battery down, use a coin to turn the latch a quarter-turn counter-clockwise. The battery should lock into place.
    Note: Keep in mind that once the new battery is inserted, you will need to press the power button to start up the computer.

  • TS1702 help, are you having the same problem? iPad 2 calendar, can't get the month of March, can get days in March, but not month view. Any suggestions, thank u.

    help, are you having the same problem? iPad 2 calendar, can't get the month of March, can get days in March, but not month view. Any suggestions, thank u.

    Hi melbernai - not sure if you've solved this problem yet. I had the exact same problem recently with my 2nd Gen iPod Nano. I solved it yesterday by simply updating iTunes to the most recent version, after which I could get rid of the register screen. The only other thing I needed to do to add my custom playlists was select "Manually manage music" on the screen for my iPod, since it had been in an automatic synching mode since the problem occurred.

  • USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    Greetings;
    This seems to an ongoing issue (see related discussion link).  We've been experiencing the same update lag since last Friday.  The new additions to the Collection appear and are accessible in both the iPad and iPhone applications, but even though they additions appear in "Quick View", the material doesn't appear in the Collection itself.  Apple is aware of the issue and is investigating.  All the best...
    Syd Rodocker
    Tennessee State Department of Education
    https://discussions.apple.com/message/15461971#15461971

  • Why is the right hand side of the tables on a Word document that was imported being cut off using Webhelp but not when using Webhelp Pro?

    I would prefer to use Webhelp and not Webhelp Pro because Webhelp allow for the insertion of a logo located to the right of the search field by selecting the "Show About" check box when generating content. The problem is that Webhelp is cutting off the words in the tables. Wordwrap is turned on in the Word document and the rest of the sentence will continue beneath the "cut off" word.

    You would only use WebHelp Pro if you were using RH Server – that’s what the “pro” versions of output are for. I would suggest that something’s wrong with your table definition. You talk about a Word document – is this the source or the output you’re talking about?

  • Simple Table Displays OK in Mozilla But Not Showing in IE??

    I'm updating our company website and am looking to add sections to each page with bullet points.  (Note: I am using Dreamweaver CS4 version 10.0.)
    I tried using the Unordered List feature but for those bullet points that were extremely long, the 2nd line would never align properly.  So...someone in our IT Dept suggested using a table.
    The table works GREAT in Firefox but only the first bullet point shows when I view using IE 8.  Even the rest of the page does not display.
    Relative newcomer to Dreamweaver so ANY assistance would be GREATLY APPRECIATED!
    Here is the HTML code:
    <table width="346" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="27" scope="row"><div align="center">&#8226</div></td>
        <td width="319"><span class="BulletText">Direct integration with other ABC-developed products such as PKonRx, eSignature, and A/R</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS A/R transactions automatically update pharmacy A/R module - no more double entry</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">Record all “paid-in” and “paid-out” transactions through POS</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Post Customer A/R and PBM payments</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Eliminate analyzing register tapes with clear and concise POS reports</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">End-of-day takes just minutes</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Create start and stop dates for promotions ahead of time</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Add item messages that remind clerks of promotions, cross-sell and up-sell product</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Identify sales trends by item, department or after each promotion</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Protect margins by tracking price overrides</span></td>
      </tr>
      </table>
    Here is what it looks like in Mozilla:
    Here is what it looks like in IE 8:

    osgood:
    Thanks for the quick response and finding the missing ;!
    Here is the full HTML code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>SRS Pharmacy Systems: POS (Point-of-Sale)</title>
    <link href="style.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    .style9 {
        font-size: 13px;
        font-weight: bold;
    .style12 {
        font-size: 13px
    .style13 {font-size: 11px; }
    .style16 {color: #000000}
    .style17 {color: #4F5162}
    .style18 {
        font-size: 9px;
        font-style: italic;
    -->
    </style>
    <link href="Level1_Arial.css" rel="stylesheet" type="text/css">
    </head>
    <body>
        <table >
          <tr>
            <td style="height:351px; background:url(images/bg-top.gif) top  repeat-x" align="center">
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
                       codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
                       width="766" height="351">
                <param name="movie" value="flash/header_v7.swf?button=3">
                <param name="quality" value="high">
                <param name="menu" value="false">
                <!--[if !IE]> <-->
                <object data="flash/header_v7.swf?button=3"
                        width="766" height="351" type="application/x-shockwave-flash">
                 <param name="quality" value="high">
                 <param name="menu" value="false">
                 <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">
                 FAIL (the browser should render some flash content, not this).
                </object>
                <!--> <![endif]-->
               </object>
            </td>
          </tr>
          <tr>
            <td style="height:368px" align="center" class="m_text">
                <table style="width:766px;">
                  <tr>
                    <td style="height:34px"></td>
                  </tr>
                  <tr>
                    <td >
                        <table >
                          <tr>
                          <td style="width:445px;">
                              <div  style="margin:0px 40px 0 33px">
                                <div align="left"><span class="style9"><span class="ParagraphHead"> <img src="images/Solutions_Spotlight.jpg" width="257" height="27" alt="POS"><br>
                                <br>
                                </span></span><strong><span class="ParagraphHead">Point-of-Sale</span></strong><span class="ParagraphSUBHeading"><br>
                                More Effective Cash Management</span><br>
                              <span class="ParagraphText">Once thought to be a fixture in only large pharmacies, <span class="style9"><span class="style12"><img src="images/POS-3.jpg" alt="Computer Pic" width="117" height="110" align="left" style="margin-right:15px; margin-top:3px"></span></span>an efficient point-of-sale system is now a necessity for <em>any</em> pharmacy looking to more effectively manage their overall business. From complying with recent IRS regulations for FSA/HRA cards, to creating a more accurate and efficient checkout process for customers, to managing pharmacy will-call bins, SRS’ PKon POS is the answer!<br>
                                      <br>
                            </span><strong><span class="ParagraphSUBHeading">Increased Efficiencies</span></strong><span class="ParagraphSUBHeader2"><br>
                                        </span><span class="ParagraphText">Creating a single point of entry for all sales transactions, charges and payments, PKon POS
                                          makes your once tedious end-of-day processes quicker and more efficient as well as adds profitability by improving margins,
                                          identifying sales trends and opportunities.<br>
      <br>
      <table width="346" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="27" scope="row"><div align="center">&#8226</div></td>
        <td width="319"><span class="BulletText">Direct integration with other SRS-developed products such as PKonRx, eSignature, and A/R</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS A/R transactions automatically update pharmacy A/R module - no more double entry</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">Record all “paid-in” and “paid-out” transactions through POS</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Post Customer A/R and PBM payments</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Eliminate analyzing register tapes with clear and concise POS reports</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">End-of-day takes just minutes</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Create start and stop dates for promotions ahead of time</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Add item messages that remind clerks of promotions, cross-sell and up-sell product</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Identify sales trends by item, department or after each promotion</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Protect margins by tracking price overrides</span></td>
      </tr>
      </table>
                                        </span> <br>
                                    <span class="ParagraphSUBHeading">Increased Security</span><br>
                                    <span class="ParagraphText">Enhance your security and employee accountability by implementing the following security
                                      features:<br>
      <br>
      <table width="346" border="0">
      <tr>
        <td width="17" scope="row"><div align="center">&#8226;</div></td>
        <td width="319"><span class="BulletText">Clerk tracking for every POS transaction</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Track unauthorized price overrides, voided transaction or discounts</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Restrict register(s) and POS tasks to specific users</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">PCI DSS-compliant software protects customers’ credit card data from fraud and abuse</span></td>
      </tr>
      </table>
                                    </span>
                                     <br>
                                      <span class="ParagraphSUBHeading">Improved Customer Experience</span><br>
                                      <span class="ParagraphText">Customers will quickly judge their shopping experience by an efficient and fast checkout process.
                                      Pharmacies cannot afford a slow checkout system when a customer is ready to pay.</span><br>
                                  <br>
                                  </ul>
                                    <table width="346" border="0">
                                      <tr>
        <td width="17" scope="row"><div align="center">&#8226</div></td>
        <td width="319"><span class="BulletText">POS conveys a more professional image to your customers</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS delivers faster sales transactions and reduces the amount of time customers spend in
                              checkout lines</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS allows the pharmacy to offer convenient payment options (e.g. credit, debit, FSA, HRA or
                              in-store charge account)</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">One signature pad to handle all PBM, HIPAA, NSC, A/R and credit/debit card signatures</span></td>
      </tr>
      </table>
                                </span><br>
                                    <span class="ParagraphText">Click on the brochure link for additional information. If you still have questions, <A HREF="mailto:[email protected]" ONCLICK="openWindow('tell_me_more.html','516','381')">contact  us</A> today for a personal response. </span></span><span class="style12"><br>
                                    </span><br>
                                    <br>
                                <a href="PDFs/SRS PKon POS.pdf" class="style13" ><img alt="arrow" src="images/a1.gif" style=" margin-right:5px"></a><span class="Clickhere"><a href="PDFs/SRS_POS.pdf" >Click here </a>for the  POS brochure</span></div>
                                  <a href="PDFs/SRS PKon POS.pdf" class="style13"><span class="Clickhere"><a href="PDFs/SRS_POS.pdf" >
                                  </a>
                            <div align="justify"></div>                          </div>                        </td>
                            <td style="width:40px; background:url(images/bg-line.gif) repeat-y"></td>
                            <td style="width:260px;">
                                <div  style="margin:0px 26px 0 0px">
                                    <img src="images/Pharmacy_Solutions.jpg" alt="" width="192" height="27" ><br>
                                  <strong><br>
                                  </strong><span class="ParagraphText"><span class="ParagraphText">Browse our full suite of pharmacy management applications:</span><br><br><span class="SolutionsBullets">
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 PKon Rx.html" >PKon Rx</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 340B.html" >340B</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 AutoFax.html" >Auto-Fax</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 EPrescriptions.html" >e-Prescriptions</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 ESig.html" >eSignature</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 IVR.html" >IVR</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 MAR.html" >MAR Printing</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Offsite Backup.html" >Off-Site Backup</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 POS.html" >Point-of-Sale (POS)</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Receivables.html" >Receivables (A/R)</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 SystemsSupport.html" >Systems Support</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Thermal Printing.html" >Thermal Printing</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Timeclock.html" >Timeclock</a></span><br>
                                  <br>
    </div>                        </td>
                          </tr>
                      </table>
                    </td>
                  </tr>
                  <tr>
                    <td style="height:16px"></td>
                  </tr>
                </table>
            </td>
          </tr>
          <tr>
            <td >
                <table >
                  <tr>
                    <td style="width:50%; background:url(images/bg-left.gif) top repeat-x #E6E8E9"></td>
                    <td style="width:766px; background:url(images/bg-bot.gif) repeat-y">
                        <table style="width:766px;height:81px; background:url(images/bg-bot2.gif) top repeat-x">
                          <tr>
                            <td height="147" bgcolor="#999999" style="width:271px;"><br>
                                <br>
                                <br>
                                <span class="c_text" style="margin:29px 0px 0 0px">&copy;2010 SRS Pharmacy Systems</span><br>
                            </td>
                            <td bgcolor="#999999" style="width:303px;"><br>
                                <br>
                                <br>
                                <span class="c_text"><span class="style16"><a href="index-1.html">Home</a>  |  <a href="index-2.html">Technology</a>  |  <a href="index-3.html">Solutions</a>  |  <a href="index-4.html">News</a>  |  <a href="index-6.html">Contact Us</a> </span></span></td>
                          </tr>
                        </table>
                    </td>
                    <td style="width:50%; background:url(images/bg-right.gif) top repeat-x #D3D5D6"></td>
                  </tr>
                </table>
            </td>
          </tr>
        </table>
    </body>
    </html>
    Here is the CSS:
    body{
        padding:0px;
        margin:0px;
    table {border-collapse:collapse; border:0px;}
    table, td {
        height:100%;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        list-style-type: disc;
        vertical-align: top;
        color: #666;
        border-top-width: thin;
        border-right-width: thin;
        border-bottom-width: thin;
        border-left-width: thin;
    td {
        vertical-align:top;
        padding:0px;
    a:hover{text-decoration:none;}
    img {
        border:2px;
        float: left;
        border-top: 3px;
    .m_text, table, li, input, textarea
        font-size:13px;
        color: #005891;
        vertical-align: top;
        display: table;
    .m_text a{
        color:#005891
    .m_text span a{ }
    .m_text strong a{ color:#4A4A4A}
    .h_text {}
    .s_text a{ color:#414F66; font-size:10px; text-decoration:none}
    .s_text a:hover{ text-decoration:underline}
    .l_text {}
    .c_text {
        color:#FFF;
        font-size:8pt;
    .c_text a{
        color:#FFF
    .no_class, form, .no_class td
            width:auto;
            height:auto;
            margin:0px;
            padding:0px;
            border:0px;
    .line {
        background:url(images/line.gif) repeat-x;
        width:170px;
        height:2px;
        top: 12px;
    .line2 { background:url(images/line.gif) repeat-x; width:121px; height:1px}
    .form{height:20px; margin-top:3px;}
    .form input {width:213px; height:17px; padding-left:5px}
    textarea {width:213px; height:152px; padding-left:5px; overflow:auto; margin-top:3px}
    ul {
        margin:0;
        list-style-type: disc;
        list-style-position: inside;
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        color: #666;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 12px;
    li  {
        margin: 0px;
        background-image: none;
        background-repeat: no-repeat;
        background-position: left center;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    li a  {font-family:Tahoma; font-size:11px; line-height:18px; color:#B23737}
    .ParagraphHead {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        color: #005891;
        text-align: left;
    .ParagraphText {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 13px;
        color: #333;
    .BulletText {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 13px;
        color: #333;
    .Clickhere {
        font-family: Tahoma, Geneva, sans-serif;
        font-size: 11px;
        color: #333;
    .ParagraphSUBHeading {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #333;
    .ParagraphSUBHeader2 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #005891;
    .SolutionsBullets {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        color: #005891;

  • I ned help i need to start fresh new firefox dont know how to remove old profiles its totally ruined i can use it but not like suppose to thank you for your time

    there are so many things not working right i really do not know where to start
    if someone counld assist me PERSONALLY hands on that would be very much appreciated
    i just need to delete ALL old files the whole firefox
    and i need someone willing to have patients and understanding that will help me thats all i can say
    ive used firefox on and off 4 ever
    i like it over IE like 101% chrome is okay but not y choice
    firefox in my 46 year old eyes RULES!
    so if someone is willing to help me id love that
    im thinking ive deleted some file of very great importance
    PLUS i hate the Flash & Jave & Chrome errors that pop up
    PLUS
    statse.webtrendslive.com : server does not support RFC 5746, see CVE-2009-3555
    support.mozilla.com : server does not support RFC 5746, see CVE-2009-3555
    code I like this
    then there is on my space & other sites java is () Null or void
    im not a computer whiz
    but im not DUMB either
    i cant edit profiles and codes
    if i could id be one volunteer on here to help anyone N everyone i could
    on Superpoke pets
    it no longer allws me to go from inventory popular
    to ether stock left
    or lower to higher cost
    or higher to lower cost
    just an example
    this is frustrating to me ALL of it
    im ready to just throw my hans up n say 4 get the net
    please help me someone
    anyone
    thank you for your time in this matter
    and have a wonderful rest of your weekend

    Managing Profiles
    http://support.mozilla.com/en-US/kb/Managing-profiles

  • Can receive mail using comcast but not using mail on ipad

    I can receive and send mail using my comcast app but can only receive mail using the mail app but not send.

    Been there and done that with the Comcast email account on my iPad. Specifically ...
    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • Why can I get a full Yahoo window using Safari but not using Firefox?

    I've suddenly lost the Yahoo website when I try to access it using Firefox, but access works perfectly when I use Safari,

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Click the menu button [[Image:New Fx Menu]], choose History, and then "Clear Recent History...".
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the "Clear Now" button.
    Further information can be found in the [[Delete browsing, search and download history on Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.
    If this doesn't work, contact Virgin for more assistance.

Maybe you are looking for

  • How do I change the default media kind on iTunes 11?

    When I add movies to my iTunes, they are automatically labeled under the media kind "Home Videos". Is there a way to change the default media kind to "Movies"? It's very tedious to have to go to Options, then choose Movies under Media Kind for every

  • Horizontal scroll a movieclip in iOS

    Hello, I'm trying to found some extension or library to horizontally scroll a movieclip in a iOS aplication made with AIR 3.5. I tried some, but the perfomance are not so good, even in iPhone 5 or iPhone 3Gs, so if anyone knows a good way to do it, i

  • E90 Bluetooth problem w/ new software update

    Can someone help me with this. I updated to latest software and can't get bluetooth to work. I tried to re-install and etc. I made a connection once and after that no luck. Thanks

  • Please Help me : Oracle and LDAP

    Hi !! I really need your help, i have a problem and several solutions, and i really don't know how is the best, and the easiest !!! I ve got a web application which is provisioning an Oracle database thanks to java servlet and PL/SQL api. In addition

  • Sql datamodeler: Design rules

    Hello, In sql datamodeler you can check your design against a number of design rules. Is there a way you can influence these design rules? - can you say wheter a design rule is applicable or not? - can you change the severity? - can you change the ru