Sql Help: same address diff phone

hello every one,
i am having problem finding pid with same address and diff phone number, i am having difficulti finding it, i am able to find the pid with more then one record for one pid.
please help me.
WITH prov AS (
SELECT '700804' pid FROM dual UNION ALL
SELECT '6325886' pid FROM dual UNION ALL
SELECT '8007504' pid FROM dual UNION ALL
SELECT '8007500' pid FROM dual
office AS
SELECT '700804' pid , '7495 ' OID , '7937' locid ,9132549495 Tel  FROM dual UNION ALL
SELECT '700804' pid , '7496 ' OID , '84785' locid ,6202329240 Tel  FROM dual UNION ALL
SELECT '700804' pid , '7497 ' OID , '226174' locid ,9132549495 Tel  FROM dual UNION ALL
SELECT '700804' pid , '2843169 ' OID , '1381976' locid ,9132549495 Tel  FROM dual UNION ALL
SELECT '700804' pid , '2075990 ' OID , '7936' locid ,9132549495 Tel  FROM dual UNION ALL
SELECT '700804' pid , '2593350 ' OID , '1302121' locid ,9133904800 Tel  FROM dual UNION ALL
SELECT '6325886' pid , '994858 ' OID , '569831' locid ,5634216000 Tel  FROM dual UNION ALL
SELECT '6325886' pid , '2773186 ' OID , '1356079' locid ,5634215104 Tel  FROM dual UNION ALL
SELECT '6325886' pid , '2551157 ' OID , '1024134' locid ,5634213408 Tel  FROM dual UNION ALL
SELECT '6325886' pid , '2985680 ' OID , '1449948' locid ,5634213040 Tel  FROM dual UNION ALL
SELECT '6325886' pid , '2152445 ' OID , '1132731' locid ,5636591548 Tel  FROM dual UNION ALL
SELECT '6325886' pid , '2773187 ' OID , '1356095' locid ,NULL Tel  FROM dual UNION ALL
SELECT '6325886' pid , '2730132 ' OID , '696373' locid ,5636599137 Tel  FROM dual UNION ALL
SELECT '8007504' pid , '4078448 ' OID , '377656' locid ,8009623303 Tel  FROM dual UNION ALL
SELECT '8007504' pid , '4078450 ' OID , '1665053' locid ,6185292247 Tel  FROM dual UNION ALL
SELECT '8007504' pid , '4078451 ' OID , '1225238' locid ,8009623303 Tel  FROM dual UNION ALL
SELECT '8007504' pid , '2659200 ' OID , '1321265' locid ,6185490721 Tel  FROM dual UNION ALL
SELECT '8007504' pid , '3966923 ' OID , '377655' locid ,6185490721 Tel  FROM dual UNION ALL
SELECT '8007504' pid , '3966925 ' OID , '1638128' locid ,6185490721 Tel  FROM dual UNION ALL
SELECT '8007500' pid , '3966900 ' OID , '377600' locid ,7325493200 Tel  FROM dual
, loc AS
SELECT  '7936' locid, 'Po Box 910' address, 'Andover' city, 'KS'state  FROM dual UNION ALL
SELECT  '7937' locid, 'PO Box 910' address, 'Andover' city, 'KS'state  FROM dual UNION ALL
SELECT  '84785' locid, '2525 N Broadway' address, 'Pittsburg' city, 'KS'state  FROM dual UNION ALL
SELECT  '226174' locid, '11918 So Strangline Rd' address, 'Olathe' city, 'KS'state  FROM dual UNION ALL
SELECT  '377655' locid, '818 E Broadway' address, 'Sparta' city, 'IL'state  FROM dual UNION ALL
SELECT  '377656' locid, '818 E Broadway St' address, 'Sparta' city, 'IL'state  FROM dual UNION ALL
SELECT  '569831' locid, '1227 E Rusholme St' address, 'Davenport' city, 'IA'state  FROM dual UNION ALL
SELECT  '696373' locid, '865 Lincoln Rd # L10' address, 'Bettendorf' city, 'IA'state  FROM dual UNION ALL
SELECT  '1024134' locid, 'PO Box 310083' address, 'Des Moines' city, 'IA'state  FROM dual UNION ALL
SELECT  '1132731' locid, '1008 11th St' address, 'De Witt' city, 'IA'state  FROM dual UNION ALL
SELECT  '1225238' locid, 'Po Box 95968' address, 'Oklahoma City' city, 'OK'state  FROM dual UNION ALL
SELECT  '1302121' locid, '801 N Mur Len Rd #102586' address, 'Olathe' city, 'KS'state  FROM dual UNION ALL
SELECT  '1321265' locid, '405 W Jackson St' address, 'Carbondale' city, 'IL'state  FROM dual UNION ALL
SELECT  '1356079' locid, '2546 Tech Dr' address, 'Bettendorf' city, 'IA'state  FROM dual UNION ALL
SELECT  '1356095' locid, 'Po Box 811' address, 'Cedar Rapids' city, 'IA'state  FROM dual UNION ALL
SELECT  '1381976' locid, '801 N Mur Len Rd #102' address, 'Olathe' city, 'KS'state  FROM dual UNION ALL
SELECT  '1449948' locid, '1228 E Rusholme St #302' address, 'Davenport' city, 'IA'state  FROM dual UNION ALL
SELECT  '1638128' locid, 'Po Box 96348' address, 'Oklahoma City' city, 'OK'state  FROM dual UNION ALL
SELECT  '1665053' locid, '420 Deer Lake Dr W' address, 'Carbondale' city, 'IL'state  FROM dual UNION ALL
SELECT  '377600' locid, '200 Blicke st' address, 'Edison' city, 'NJ'state  FROM dual
/*SELECT x.pid,
       x.address,
       x.city,
       x.state,
       o.tel
  FROM office o,
       loc l,*/
       (SELECT   P.pid,
                 SUBSTR (UPPER (address), 1, 10) address,
                 city,
                 state,
                 COUNT (*) AS loccount
            FROM office o,
                 prov P,
                 loc l
           WHERE o.pid = P.pid
             AND o.locid = l.locid
        GROUP BY P.pid,
                 SUBSTR (UPPER (address), 1, 10),
                 city,
                 state
          HAVING COUNT (*) > 1)
     i got output as under, i from below result i want to display 700804 and 8007504 as thgis pid has same address and diff phone at same location for
pid 700804 th address is same but the phone is also same. i want to display pid, address along with both diff. phone numbers.
PID     ADDRESS     CITY     STATE     LOCCOUNT
700804     801 N MUR      Olathe     KS     2
700804     PO BOX 910     Andover     KS     2
8007504     818 E BROA     Sparta     IL     2Thank you in advance for help

Hi,
So you want to display the full adress, not the shortened, standardized version that you're using for comparisions. In that case, include both versions in ol, and give them distinct names.
Aside from that, the solution I posted gets the results you requested.
The last condition is an inequality. The site remove the operator. I'll edit it.
You're sample data doesn't have an example of this, but if you had complete duplicates for a pid with duplicate addresses and more than one phone number, then each of the duplicates would appear in the result set. (Duplicate one of the rows that you are ultimately selecing from office to see what I mean.) If that's a problem, change "SELECT" in the main query tto "SELECT DISTINCT".
If you need prov for something you're not sharing with the rest of us, then add it back to ol, just like you had it originally.
The following is basically the same solution I posted before, but it includes all of the above:
WITH  ol  AS
    SELECT  o.pid,
            SUBSTR (UPPER (address), 1, 10) address_1_10,
            address,
            city,
            state,
            tel
    FROM    office o,
            prov P,   -- prov table is not needed for the problem as given
            loc l
    WHERE   o.pid = P.pid
    AND     o.locid = l.locid
SELECT DISTINCT  *
FROM    ol      m   -- m is for main
WHERE   EXISTS (
               SELECT  NULL
               FROM    ol
               WHERE   pid = m.pid
               AND     address_1_10 = m.address_1_10
               AND     city = m.city
               AND     state = m.state
               AND     tel != m.tel
               );

Similar Messages

  • I am unable to set up my iphone 5 after reset since am getting a error stating 'unable to reach server' . i tried restoring the same from my computer  but  i get a error stating server unavailable' .  please help me as my phone is stuck at the set up page

    i am unable to set up my iphone 5 after reset since am getting a error stating 'unable to reach server' . i tried restoring the same from my computer  but  i get a error stating server unavailable' .  please help me as my phone is stuck at the set up page. so i have already tried recovery mode as well.

    Contact Apple support for warranty service.

  • When mac email changed to icloud a while ago i lost all my emails and things i have an email subscription to send emails but they do not reach the email that i updated with the same address any help?

    When mac email changed to icloud a while ago i lost all my emails and things i have an email subscription to send emails but they do not reach the email that i updated with the same address any help?

    If you purchased about 2 years ago new I am sure it is a Intel iMac. To find out what type of iMac you have just click on the Apple menu item in the finder and select about this Mac. I would check the ISP mail site and get the correct outgoing mail server info.   

  • Help with iPad Identifying Phone Numbers in iMessage Send & Receive Settings / iMessage Syncing Help - iOS 6 - iPhone - iPad

    With iOS6, iPhone and iPad users will see that their Send & Receive iMessage settings have updated across their devices to be made available at both phone numbers and email addresses. You may have also seen alerts on one or more of your devices advising that another device is now using the same Apple ID/phone number for iMessage.
    Being able to be reached on iMessage on both Apple ID and phone numbers across devices means that iMessage can keep the same thread and sync across devices.
    Due to having 2 iPhones on different phone numbers running along side my iPad at one time, (whilst I was waiting for my phone number to be moved to a new provider), my iMessage settings on my iPad lost my phone number completely. I thought I would document the steps to recover this for anyone in the same boat.
    1. Check that you are signed in with the same iCloud Account on both iPad and iPhone.
    2. Turn off iMessage on your iPad from Settings > Messages.
    3. On your iPhone, go to Settings > Messages > Send & Receive. You should see your phone number and your iCloud email address in the 'Your can be reached by iMessage at:' list. Make sure both are ticked.
    4. At this point, I synced my iPhone with iTunes, then synced my iPad with iTunes.
    5. On your iPad, turn iMessage back on - your phone number should now show in the 'You can be reached by iMessage at:' list. Tick the phone number. You should receive an alert on your iPhone.
    This should resolve the issue.
    With the above set up and with the iOS 6 updates, iMessage should now sync fine across devices however I have still found the most successful way to run iMessage is to always start new conversations from your Apple ID and to start new threads by addressing the first message to an Apple ID from an Apple ID.
    To do this, go to Settings > iMessage > Send & Receive and tick your Apple ID in the 'Start new conversations from:' list, then start a new iMessage thread to the recipients Apple ID. This way, the thread will sync across iPad and iPhone. Note that a thread set up this way will not fall back on SMS, so you get a clean iMessage thread. This method also worked/works on iOS 5, as long as you send the first message of a new thread from an iPad (which can only send via Apple ID) to an Apple ID.
    Hopefully this helped someone!

    ipad has no phone number, you use a same email address for both devices. and set it in Settings>Messages>Send & Receive

  • Merge Address Book creates 4 of the same addresses on a Post Card in Pages

    I'm a little miffed right now because I just spend 20 minutes on the phone with apple support who told what I needed to do but couldn't tell me 'how' to do it.
    I'm trying to print multiple postcards (pages default if 4 postcards/page), all I want to do is merge my address book onto these postcards with EACH SEPARATE POSTCARD having different address...that means on a page with 4 postcards, I have 4 different addresses. What currently is happening is that I'm merging about 200 addresses from my address book, and it creates the same address 4 times(on one page, all four postcards), then creates another page for the next address (4 more postcards on that page). This leads to 4x's the amount of postcards I need to actually print.
    Support told me that I need to change the setting from 4 post cards per page to 1 post card per page...but couldn't tell me how to do that. They suggested I look in 'help' for an answer....which I always do before calling support anyway. Any help would be nice here. I thought my apple protection service/support plan would help in instances like these...and YES, this answer came from an 'applications specialist'.

    Cgip wrote:
    Here's my question then, if the default in the postcard template is 4 post cards/page, how do I change it to one? This really seems like it'd be an easy fix, but I may be wrong.
    I wrote:
    The merge tool merges one record in one document. If the document is a "one_page" one, this means one record per page even if the document uses only 1/4 of the sheet.
    We are writing upon a MERGE tool, not upon a LABELIZER one !
    The only soluce would be to use a custom paper size whose height and width will be half the standard one.
    Doing that you will be able to print one card on one small page.
    If you try to put a single card on a page you will leave 3/4 of the sheet white.
    You may also build four templates,
    one with the card top-left
    one with the card top-right
    one with the card bottom-left
    one with the card bottom-right
    So you will be able to print
    1/4 of cards with template 1
    1/4 of cards with template 2
    1/4 of cards with template 3
    1/4 of cards with template 4
    As I wrote, "doing (exactly) what you wish can't be done with Pages".
    This is what was responded many times.
    What you wish has nothing to do with MERGE. It's the job of a LABELIZER tool !
    Yvan KOENIG (from FRANCE samedi 3 mai 2008 18:59:03)

  • GPS locating me about 30 miles away, at the same address every time.

    Since I've upgraded to iOS4, I've had issues with my Maps app and Location Services like Foursquare placing me about 30 miles away from wherever I am, but always at the same address (which I've never been anywhere near). I understand there is inherent interference and the signal won't always be reliable, but for there to be a single point the phone believes it constantly is makes me think there might be another issue. I have a third-party turn-by-turn app and that finds me correctly (although there's a significant delay between when I get out on the road and when it picks up signal), so I'm not sure if it's the GPS itself, or a glitch in the new location APIs. Has anyone else experienced this?

    No clue, then. There's a Reset Network Settings button in Settings, Reset, which people report helps with various glitches.
    If this is the iPhone 4, we're still all within the 90 days of free phone support--call AppleCare? I think people may also have reported AT&T resetting stuff that speaks to the location info sent through the cell towers, so maybe worth a call to them.

  • Subnr. links (2) in tabel to the same address table doesn't work always

    Post Author: Piet Blaauw
    CA Forum: Data Connectivity and SQL
    for english see below
    subnr links (2) in tabel naar dezelfde naw tabel werkt niet altijd.
    ik heb een rapport gecreerd waar uit dezelfde tabel 2 records worden gelinkt (1 is faktuur debiteur en 1 order debiteur) aan het NAW bestand. Ik heb de NAW tabel 1 keer gehangen aan de faktuur debiteur en daarna nog een keer apart gehangen aan de order debiteur. tabel naam is CONTACT en toen ik hem aan de andere deb. koppelde werd het automatisch CONTACT_1. Dit werkt allemaal prima en ik krijg netjes de informatie uit zowel CONTACT als CONTACT_1 maar het gaat fout als ik een formula field maak waarin vergelijk dat als de factuur deb (gekoppeld aan CONTACT) leeg is dat dan de order deb (gekoppeld aan CONTACT_1) genomen moet worden. Het rapport laat simpelweg niets zien.
    Ik weet niet of bovenstaande duidelijk is maar ik hoop dat iemand weet wat er fout gaat.
    bij voorbaat dank voor de hulp
    Piet Blaauw
    English
    Subnr. links (2) in tabel to the same address table doesn't work always
    I created a report wher from the same table 2 fields are linked (1 is invoice debtor and 1 is order debtor) to the Main Address table (CONTACT). I have linked the address table to the invoice debtor and once again to the order debtor. When linking this way you see in the DATABASE expert in links 2 times the CONTACT table. Once as CONTACT and once as CONTACT_1. Everything works fine and I receive the data for as well the invoice debtor as the order debtor (if filled in) but it goes wrong when I create a Formula Field where I ask that if the invoice debtor field (Linked to CONTACT) is empty to show order debtor (Linked to CONTACT_1. However then nothing will pops up while the formula is correct.
    I hope above is clear and you can help me out

    Post Author: Bandit07
    CA Forum: Data Connectivity and SQL
    In your formula are you checking for null values as well as if the field is empty?
    B

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • How can I combine multiple deliveries of the same address to one shipment.

    Hello Friends,
    My client is sending multiple deliveires with multiple shipments to the same customer. His cost is increasingm therefore I am lookign to help him to combine all the deliveries to one shipment and one delivery.
    How can I combine multiple deliveries of the same address to one shipment.
    Please help me.
    Regards

    Of course, you can combine several deliveries into one shipment. You can set your own selection variant to select deliveries with the same ship-to party.
    You cannot combine several deliveries into one delivery. The combination of deliveres is possible only when creating deliveries in VL10*.
    Edited by: Harry Wu on Jun 21, 2010 4:30 AM

  • How do you handle multiple at the same address?

    My wife just got an iMac. She is using the Birthday feature in Address Book and iCal to track our friends and family birthdays and anniversaries.
    Question:
    How do you track it when multiple people are at the same address? For instance, our friends are a family of four, but they all live at the same address. Do you need to make a separate Address Book card for each of them, even the 1 year old baby? Or can you track multiple people in a single card with custom fields?
    If you do need to make multiple cards, then how do you handle mailing lists? For instance, if I make separate cards for all four of them, how do I make sure I only send on Christmas card when I use my Mac to print labels?
    Thanks for any advice.

    This is really an issue that you're going to have to resolve yourself since Apple's address book isn't really built with this in mind - darn it. For me there are three scenarios. First, a singleton. No problem. Second a family for which all members share the same information - acquantences to whom I don't send birthday greetings. These get one card and I'll put in both (or all) their names in the first name field (as in Bob and Jean). If there are children, in the last name field I'll add 'and Ken' or 'and the kids'. Third, a family for which some fields are different - perhaps cell phone number, birthday, etc.
    For mailing purposes, I create a holiday group and put the people I'll be sending cards to into the group.

  • HT4623 I updated my iphone 4 and my daughter's ihone 4s.   Shared account - same bill, different phone numbers.   My texts are showing up on her phone, ex. to my mom (who we both have in contacts).

    I updated my iphone 4 and my daughter's iphone 4s.   It's a family share plan - same bill, different phone numbers.   My texts are showing up on her phone, and vise versa.    Only to contacts that we both have -  ex.    my mother      I'm sure I've done something wrong in the icloud share ........help.

    ON either device go to settings - message - send&receive - either uncheck or remove the apple id.

  • HT4352 problem sharing iTunes with new Apple TV.(model MD199LL/A. I have iTunes and Apple TV set up with same address and passwords, enabled iTunes and Apple TV for home sharing and still nothing? I have latest iTunes and Apple TV update. Any other sugges

    Have a problem with Home Sharing with Apple TV and iTunes. Have latest iTunes and Apple TV downloads. Have both items set up for home sharing with same address and passwords. AppleTV running fine for everything else. FYI, my library is about 60gigs. AppleTV model is MD199LL/A if that matters. Really want to hear my entire music library and not just Purchased items. Thanks for any help!!!

    I have an older PC with Windows XP Professional on it. I updated to the latest iTunes and I am able to access the photos, etc. on it. However, my Windows 7 PC still does work (since last Apple TV update). Apple TV does not recognize that Home Sharing is turned here. The latter PC has all my current photos on it which I would like share with others on my Apple TV. A fix would be appreciated.

  • When I try to access my Bank's website from the Bookmarks Toolbar the page does not load.Yet using the same address in Internet Explorer it loads fine.Any ideas

    My Bank's address is :- http://www.santander.co.uk/csgs/Satellite?appID=abbey.internet.Abbeycom&canal=CABBEYCOM&cid=1237889419188&empr=Abbeycom&leng=en_GB&pagename=Abbeycom/Page/WC_ACOM_Home.
    All I get is a rotating green circle & the message "waiting for "service.maxymiser.net"".
    Yet when I use the same address in IE it launches ok'
    My O/S is Windows 7 Home Premium Sevice Pack 1 (x64 based}

    I can access the Bank's site from the link in your post above.
    Try clearing cache and cookies. Also consider what settings you have on any privacy or ad-blocking software. Blocking ad's may speed things up or it may conceivably block access.
    If you have problems with only one site and only in Firefox, the problem is often outdated or corrupt files relating to that web page. I suggest you try the following.
    *Note <br /> It '''looks''' complicated but check the site after each numbered step, the first or 2nd step may solve the problem<br /> The linked articles have '''pictures''' ( screen shots) of the actions you need.
    # Try using the sites home page or a direct link and not a bookmark.<br /> Try link http://www.santander.co.uk
    # Reload website using an extra step to use avoid using the cached info.
    #* Hold down the Shift key and left-click the Reload button <br />OR Press '"Ctrl + F5"' |(Mac ) "Cmd + Shift + R"
    #Clear the cache, and cookies only from problem websites.
    ##<u>Remove the cookies </u>for a single problem website <br />Use: FirefoxButton / Tools → Options → |Privacy| → "Remove individual cookies"<br /> See: [[Delete cookies to remove the information websites have stored on your computer#w_delete-cookies-for-a-single-site]]'''_delete-cookies-for-a-single-site'''
    ## <u>Clear the cache</u> <br />Use ''FirefoxButton / Tools → Options → |Advanced | → Network >'' <br /> See: [[How to clear the Firefox cache#w_clear-the-cache]]_clear-the-cache
    # If the above did not work try in Firefox'[http://kb.mozillazine.org/Safe_Mode s] Safe Mode to check if an extension or some other factor causes the issue. <br /> Use: FirefoxButton /Tools → Help → ''Restart with Addons disabled... ''. <br />See: [[Troubleshoot Firefox issues using Safe Mode]] <br />also see [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Different people living in same address same Account

    I have Display_name, Address,Account and few other columns in a table. I need people(Display_name) at the same Address with the same account number and a different name (Display_name). For example wife and husband living at the same address and account number.
    Please give me some idea with the sql. Thank you.

    Hi,
    This sounds like a job for the COUNT function:
    WITH     got_cnt       AS
         SELECT  display_name          -- or whatever columns you want
         ,     COUNT (DISTINCT display_name) OVER ( PARTITION BY  address
                                                         ,                    account
                                            ) AS display_name_cnt
         FROM    a_table
    SELECT  display_name          -- or whatever columns you want
    FROM     got_cnt
    WHERE     display_name_cnt     > 1
    ;Analytic functions are computed after the WHERE clause is appled. To use the results of an analytic function in a WHERE clause, we have to compute the function in a sub-query, then we can use that value in the WHERE clause (or anywhere else) of the parent query,.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.
    Edited by: Frank Kulash on Feb 1, 2011 10:54 AM

  • I want to create a mail merge for address labels into a table, but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address.

    ...but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address. Please help.
    Thanks!

    That is a quirk of Pagesthat  it applies only one record per page.
    There is a way around this:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=245&highlight=labels &mforum=iworktipsntrick
    Peter

Maybe you are looking for

  • Error during creation of push button on selection screen

    Hi, I wanted to create push buttons on selection screen, Code: DATA DB1 TYPE VBAP-WERKS. DATA DB2 TYPE MARA-MATNR. SELECT-OPTIONS : SPLANT FOR DB1,                                 SCLASS FOR DB2. SELECTION-SCREEN:  FUNCTION KEY 1,                    

  • Limitation of memory

    Dear all, I am working on a virtual machine with 58GB ram, in Microsoft Azure. In my program, I have an Byte array which the dimensions are : [10126,24738,24]. When I want to run the program, the memory exception occurs , but when I calculate the ram

  • Is it possible that rename table captured by streams

    is there any way that i can capture rename table??

  • Authorising second computer to play purchases from ITunes

    I now find that I cannot play songs purchased from ITunes on second computer, this has just happened recently. These were purchased using my old E-MAIL address and it keeps asking me to authorise using the old e-mail and  password for that account wh

  • RUN_REPORT_OBJECT on a webserver

    I am a bit confused with the settings regarding the webserver. I have 3 clients and a server (running under Windows 2000). Two of the clients, I have installed form and report servers but the other client, nothing related to oracle is installed. On t