Problem with utl_smtp.write_data - immediate help needed

Hi,
I have a sql code that generates a .csv file and sends it as an attachment through utl_smtp.
Everything works fine but the .csv file's header gets broken after certain characters..wondering why this is happening..pls help.
Please find my code below:
SET define off;
DECLARE
--CURSOR VARIABLES
v_meter_count NUMBER := 0;
v_meter_max_count NUMBER := 0;
v_sysdate DATE := TRUNC (SYSDATE);
--MAIL VARIABLES
v_run_date DATE := TRUNC (SYSDATE);
crlf CONSTANT VARCHAR2 (10) := UTL_TCP.crlf;
boundary CONSTANT VARCHAR2 (256)
:= '-----7D81B75CCC90D2974F7A1CBD';
first_boundary CONSTANT VARCHAR2 (256) := '--' || boundary || crlf;
last_boundary CONSTANT VARCHAR2 (256)
:= '--' || boundary || '--' || crlf;
multipart_mime_type CONSTANT VARCHAR2 (256)
:= 'multipart/mixed; boundary="' || boundary || '"';
conn UTL_SMTP.connection;
from_name VARCHAR2 (255) := 'Nielsen Online';
from_address VARCHAR2 (255)
:= '[email protected]';
to_address VARCHAR2 (255)
:= '[email protected]';
subject VARCHAR2 (255) := '';
mime_type VARCHAR2 (255) := 'text/plain';
attachment_file_name VARCHAR2 (255) := NULL;
mailhost VARCHAR2 (255) := '127.0.0.1';
--PANELISTS' DETAILS CURSOR
CURSOR tam_panelists
IS
SELECT a.panel_sys_id, a.panel_site_id, a.login_id,
b.recruit_start_date, c.meter_id, d.affiliate_id,
d.afflt_member_id,
(CASE
WHEN b.last_active_date >= TRUNC (SYSDATE) - 30
THEN 'Active'
ELSE 'Inactive'
END
) hh_status,
(SELECT e.affiliate_description
FROM pfshared3.lkp_affiliates e
WHERE e.partner_id =
NVL (d.affiliate_id, 0)
AND e.pnl_sys_id = a.panel_sys_id) affiliate_description
FROM mgtw.dat_ps_login_info a,
mgtw.dat_ps_install_info b,
mgtw.dat_ps_info c,
mgtw.dat_ps_recruit_info d
WHERE a.login_id LIKE 'tam%@tam%.com'
AND a.panel_site_id = b.panel_site_id
AND a.panel_sys_id = b.panel_sys_id
AND a.panel_site_id = c.panel_site_id
AND a.panel_sys_id = c.panel_sys_id
AND a.panel_site_id = d.panel_site_id
AND a.panel_sys_id = d.panel_sys_id
AND a.active_flag = 1
AND b.first_mtr_install_date IS NOT NULL
AND b.last_active_date IS NOT NULL;
--PANELISTS' PC DETAILS CURSOR
CURSOR pc_activity (p_meter_id IN VARCHAR2)
IS
SELECT cpt_guid, first_active_date, last_active_date,
TO_CHAR(first_install_date,'MM/DD/YYYY HH:MI') first_install_dt,
(TRUNC (SYSDATE) - last_active_date) inactive_days,
(CASE
WHEN last_active_date >= TRUNC (SYSDATE) - 30
THEN 'Active'
ELSE 'Inactive'
END
) status
FROM pfshared3.dat_pnl_computers
WHERE meter_id = p_meter_id
ORDER BY last_active_date DESC;
--RECORD TYPE FOR PANELISTS' DETAILS
TYPE t_panelist_set IS TABLE OF tam_panelists%ROWTYPE;
v_panelist_data t_panelist_set;
--RECORD TYPE FOR PANELISTS' PC DETAILS
TYPE t_pc_set IS TABLE OF pc_activity%ROWTYPE;
v_pc_data t_pc_set;
PROCEDURE send_header (NAME IN VARCHAR2, header IN VARCHAR2)
IS
BEGIN
UTL_SMTP.write_data (conn, NAME || ': ' || header || crlf);
END;
BEGIN
--MAX METER COUNT
BEGIN
SELECT MAX(COUNT (meter_id))
INTO v_meter_max_count
FROM pfshared3.dat_pnl_computers
WHERE last_active_date IS NOT NULL
GROUP BY meter_id;
EXCEPTION
WHEN OTHERS
THEN
v_meter_max_count := 0;
END;
DBMS_OUTPUT.put_line ( 'STARTED - '
|| TO_CHAR (SYSDATE, 'DD-MON-YYYY HH:MI:SS')
conn := UTL_SMTP.open_connection (mailhost);
UTL_SMTP.helo (conn, mailhost);
UTL_SMTP.mail (conn, '< ' || from_address || ' >');
UTL_SMTP.rcpt (conn, '< ' || to_address || ' >');
UTL_SMTP.open_data (conn);
send_header ('From', '"' || from_name || '" <' || from_address || '>');
send_header ('To', '' || to_address || '');
send_header ('Date', TO_CHAR (SYSDATE, 'dd Mon yy hh24:mi:ss'));
subject := 'TW Daily Activity Report' || ' - ' || v_run_date;
send_header ('Subject', subject);
send_header ('Content-Type', multipart_mime_type);
-- Close header section by a crlf on its own
UTL_SMTP.write_data (conn, crlf);
-- mime header
UTL_SMTP.write_data (conn, first_boundary);
send_header ('Content-Type', mime_type);
UTL_SMTP.write_data (conn, crlf);
UTL_SMTP.write_data (conn, crlf);
-- add the attachment
attachment_file_name := 'TW_Daily_Activity_Report_' || v_run_date || '.txt';
UTL_SMTP.write_data (conn, first_boundary);
send_header ('Content-Type', mime_type);
send_header ('Content-Disposition',
'attachment; filename= ' || attachment_file_name
UTL_SMTP.write_data (conn, crlf);
--CREATING HEADERS
UTL_SMTP.write_data (conn,
'Date of Reporting'
|| ','
|| 'Panelist ID'
|| ','
|| 'Meter ID'
|| ','
|| 'Panelist Email(Username)'
|| ','
|| 'Vendor'
|| ','
|| 'Affiliate ID'
|| ','
|| 'UID'
|| ','
|| 'Enrollment Date'
|| ','
|| 'HH Status'
|| ','
|| 'Registered PC in the HH'
|| ','
FOR k IN 1 .. v_meter_max_count
LOOP
UTL_SMTP.write_data (conn,
'Installation Date/Time MM/DD/YYYY HH:MI PC' || k || ',' || 'PC '|| k ||': Status' || ',' || 'PC '|| k ||': Date of First log' || ',' || 'PC '|| k ||': Date of Last log' || ',' || 'PC '|| k ||': Days since Last Activity' || ',' || 'PC '|| k ||': Computer ID' || ','
END LOOP;
UTL_SMTP.write_data (conn, crlf);
--OPENING PANELISTS' DETAILS CURSOR
OPEN tam_panelists;
--FETCHING PANELISTS' DETAILS CURSOR
FETCH tam_panelists
BULK COLLECT INTO v_panelist_data;
FOR i IN v_panelist_data.FIRST .. v_panelist_data.LAST
LOOP
--METER COUNT
BEGIN
SELECT COUNT (meter_id)
INTO v_meter_count
FROM pfshared3.dat_pnl_computers
WHERE meter_id = v_panelist_data (i).meter_id
GROUP BY meter_id;
EXCEPTION
WHEN OTHERS THEN
v_meter_count := 0;
END;
--OPENING PANELISTS' PC DETAILS CURSOR
OPEN pc_activity (v_panelist_data (i).meter_id);
--FETCHING PANELISTS' PC DETAILS CURSOR
FETCH pc_activity
BULK COLLECT INTO v_pc_data;
UTL_SMTP.write_data (conn,
v_sysdate
|| ','
|| v_panelist_data (i).panel_site_id
|| ','
|| v_panelist_data (i).meter_id
|| ','
|| v_panelist_data (i).login_id
|| ','
|| v_panelist_data (i).affiliate_description
|| ','
|| v_panelist_data (i).affiliate_id
|| ','
|| v_panelist_data (i).afflt_member_id
|| ','
|| v_panelist_data (i).recruit_start_date
|| ','
|| v_panelist_data (i).hh_status
|| ','
|| v_meter_count
|| ','
FOR j IN v_pc_data.FIRST .. v_pc_data.LAST
LOOP
UTL_SMTP.write_data (conn,
v_pc_data (j).first_install_dt
|| ','
|| v_pc_data (j).status
|| ','
|| v_pc_data (j).first_active_date
|| ','
|| v_pc_data (j).last_active_date
|| ','
|| v_pc_data (j).inactive_days
|| ','
|| v_pc_data (j).cpt_guid
|| ','
END LOOP;
UTL_SMTP.write_data (conn, crlf);
CLOSE pc_activity;
END LOOP;
CLOSE tam_panelists;
-- CLOSE THE MESSAGE
UTL_SMTP.write_data (conn, last_boundary);
-- CLOSE CONNECTION
UTL_SMTP.close_data (conn);
UTL_SMTP.quit (conn);
DBMS_OUTPUT.put_line ( 'ENDED - '
|| TO_CHAR (SYSDATE, 'DD-MON-YYYY HH:MI:SS')
RETURN;
EXCEPTION
WHEN UTL_SMTP.transient_error OR UTL_SMTP.permanent_error
THEN
UTL_SMTP.quit (conn);
raise_application_error
(-20000,
'Failed to send mail due to the following error: '
|| SQLERRM
WHEN OTHERS
THEN
raise_application_error
(-20000,
'Script failed due to the following error: '
|| SQLERRM
RETURN;
END;
Please find below the header of the .csv file generated:
Date of Reporting     Panelist ID     Meter ID     Panelist Email(Username)     Vendor     Affiliate ID     UID     Enrollment Date     HH Status     Registered PC in the HH     Installation Date/Time MM/DD/YYYY HH:MI PC1     PC 1: Status     PC 1: Date of First log     PC 1: Date of Last log     PC 1: Days since Last Activity     PC 1: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC2     PC 2: Status     PC 2: Date of First log     PC 2: Date of Last log     PC 2: Days since Last Activity     PC 2: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC3     PC 3: Status     PC 3: Date of First log     PC 3: Date of Last log     PC 3: Days since Last Activity     PC 3: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC4     PC 4: Status     PC 4: Date of First log     PC 4: Date of Last log     PC 4: Days since Last Activity     PC 4: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC5     PC 5: Status     PC 5: Date of First log     PC 5: Date of Last log     PC 5: Days since Last Activity     PC 5: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC6     PC 6: Status     PC 6: Date of First log     PC 6: Date of Last log     PC 6: Days since Last Activity     PC 6: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC7     PC 7: Status     PC 7: Date of First log     PC 7: Date of Last log     PC 7: Days since Last Activity     PC 7: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC8     PC 8: Status     PC 8: Date of First log     PC 8: Date of Last log     PC 8: Days since Last Activity     PC 8: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC9     PC 9: Status     PC 9: Date of First log     PC 9: Date of Last log     PC 9: Days since Last Activity     PC 9: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC10     PC 10: Status     PC 10: Date of First log     PC 10: Date of Last log     PC 10: Days since Last Activity     PC 10: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC11     PC 11: Status     PC 11: Date of First log     PC 11: Date of Last log     PC 11: Days since Last Activity     PC 11: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC12     PC 12: Status     PC 12: Date of First log     PC 12: Date of Last log     PC 12: Days since Last Activity     PC 12: Computer ID     Installation Date/Time MM/DD/YYYY HH:MI PC13     PC!
*13: Sta                                                                                                                                                                                                                                                                                                                                                                                                                               *
tus     PC 13: Date of First log     PC 13: Date of Last log     PC 13: Days since Last Activity     PC 13: Computer ID                                                                                                                                                                     
The one highlighted in bold is the broken header.
Please provide a solution to this.
Thanks
Monika
Edited by: 953348 on Aug 18, 2012 8:00 AM

I can't provide a solution but maybe a little help. With the header line you posted here it seems to me that a new line starts after 2048 = 2^11 characters. This might be a limitation or a length of any variable in the package.
Maybe you can change this value or shorten the texts in the header to stay below this limit.
A few more things:
- the code, that you posted here became destroyed in lines like UTL_SMTP.mail (conn, '< ' .... because the forum software tried to find html-code between the "<" and ">" signs.
- you can mark code in your postings with (see FAQ). It makes code better readable but it does not help with the "<" and ">" signs.
- you left your e-mail-address in the header of the code. I guess this was not your intention. You can edit it and remove the address even after posting a message.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Airport Express problem with iMac G5 iSight - help needed!

    I bought an Airport Express (AX) last week, upgraded my OS to Leopard and installed Airport Utility fine. I could join my existing wireless network and everything worked fine for streaming itunes through my stereo. But this week Airport Utility has stopped being able to find the AX and I can't work out why - really need some help! Its in the same place as last week, close to the computer, and I tried another location right next to the Imac but didn't work. When I restore factory settings Airport Utility does recognise the device, and allows me to update settings for wirelessly connecting to my existing wireless network, so the light on the AX is solid green. But then AU again says it cannot find any AX wireless device. Can anyone tell me what I'm doing wrong???

    Hi I'm still battling with this - have connected the AX to my Imac via ethernet and it shows up fine in Airport Utility. Status light is green and it says its set up to connect to my existing wireless network using wireless connection. Security in Network Preferences is the same for both: WPA2 Personal.
    So I don't think there's a problem with the AX, and my current wireless network (BT Home Hub) is working fine.
    And when I restore factory settings Airport Utility can see the AX before updating settings so the wireless side of AX must work too.
    I'm figuring it must be something about the settings that mean AU can't see it anymore. But I can't work out what, since security is the same.
    Any ideas would be great!

  • Select distinct problem with muliple join tables, help needed

    Hi,
    I have two main tables. Each has its of sub joined tables.
    guest_id_for_reservation connects two major tables. This has
    to be that way
    because my guest may change the room status from single to
    double (and the
    similar exceptional requests).
    guests reservation
    guest_id_for_reservation
    countrytable hoteltable
    delegationtable roomtype
    I form a query. I want to select distinct those results. But
    it does not
    work.
    If I do not include any table related to reservation table
    and its sub
    joined tables (disregarding guest_id_for_reservation), it
    works.
    Is there a specific syntax for select distinct of this type
    or any
    workaround.?
    Thank you
    Hakan

    Hi I'm still battling with this - have connected the AX to my Imac via ethernet and it shows up fine in Airport Utility. Status light is green and it says its set up to connect to my existing wireless network using wireless connection. Security in Network Preferences is the same for both: WPA2 Personal.
    So I don't think there's a problem with the AX, and my current wireless network (BT Home Hub) is working fine.
    And when I restore factory settings Airport Utility can see the AX before updating settings so the wireless side of AX must work too.
    I'm figuring it must be something about the settings that mean AU can't see it anymore. But I can't work out what, since security is the same.
    Any ideas would be great!

  • Problems with my new E5, help needed

    I just got me a new E5 about a week ago.  Despite reading a lot on this forum, I still have two major issues setting up this device; so I need some help.  Problem number one is that I cannot set up my email.  I have "aol" email that falls under "other" in the email set up section. Some of the screens listed in Pool of Knowledge subsection (like choosing POP3 or IMAP) does not even come up in my e5 during email setup screens. What to do to set up aol email account.
    Problem number 2 is that I cannot transfer my contacts and other data from old device (Nokia X2-01) to the new e5. I paired them easily using Bluetooth but when it get to the point of transferring the data, I hear a "click" sound in the e5 and "Bluetooth disconnected.... " error message comes on. I have tried upteenth times but I get the same result. When I tried to transfer contacts one by one, using Bluetooth business card option it works; but I have over 800 contacts and I would like to use the switch route.  What to do to solve this problem?.  I hope I do not have a faulty device.
    With God, all things are possible

    I can't help you with the contacts problem, but have you made any progress with email? Just because you pick the Other category, doesn't mean you need to enter every server detail. I use Earthlink email, but simply typing my email address causes the wizard to fill in every other detail besides my password. (Curiously, it always uses the wrong SMTP server.) But once setup finishes, I can change any of the settings. I hope that helps. (And BTW, the above may not apply if you opt for using Nokia's push service.)

  • Problems with my MAC PRO, Help needed please!

    Im a photographer using a MAC PRO 2x2 GHz DUAL-CORE INTEL Xeon, MEMORY 1GB 667 mhZ with a Samsung SyncMaster 215tw.
    My problem is, on several of my images that I open on either Photoshop cs2 or even Preview I noticed that my blacks look overly pix elated or solarize simple looks like a broken image. I had the image sent to my roommate's Imac and saw the same image there and it looked perfect but not on my Mac Pro. I wondering what's causing this problem. thank you very much.

    Hi again,
    Just wondering: by any chance do you have a website where you could upload (at least) one of those photos so I (and we) could get a look at it ourselves?
    I use Photobucket.com, I created an separate album there I call "Illustrated Explanations" where others can see (and even copy) examples of photos I want to share or get feedback on.
    I like your choice of color profiles for the SynchMaster (Adobe RGB 1998), but are those photos also given the same color profile? If not - there may be a "conflict" between the different profiles which could explain your problem. But there's more to it than that -
    Yes, you should have clicked the "Calibrate" button and gone through the calibration steps presented to you. Right now, on the Displays - Color panel, I have three calibration settings for the SynchMaster. First is the original, 2nd one is my first try at re-calibrating and the third is my final * I hope!* calibration. You have to enter a name for each calibration profile you create, mine are: "SyncMaster," "SynchMaster1" and "SynchMaster2." The last is the one the monitor is set to.
    As you see, you can do this several times if needed. But if the problem is not eliminated by this procedure, then I would (very much!) think you have a bad monitor and should have it serviced or replaced.

  • Problems with restricted users, urgent help needed

    Greetings,
    I represent a company called eChiron, a service desk company for several client companies.
    We have a client company that has bought between 100 to 200 cell phones, all Nokia 6233. They all run client PCs with windows XP SP2 and are all restricted users (mandatory).
    We've installed 2 nokia PC suites as pilot prior to mass deploying and have both failed to run correctly.
    They execute correctly if the user is changed to local admin (being that the method of instalation), but when reverting back to restricted user the application doesn't work correctly.
    It starts and (apparently) conects to the mobile phone trough bluetooth interface. In reality the conectivity is nonexistent (we've tested by turning off the mobile phone...) and the connection log reports "conection failed".
    As i mentioned before, it's not an hardware fault since it all works correctly in admin mode.
    Thanks in advance for any possible help,
    J
    Edit: the installed version is the latest (17/december) and the language is portuguese.
    Message Edited by echiron on 17-Dec-2007 02:27 PM

    This has always been a limitation in PC suite, I assume you've tried the latest version 6.85?
    You may want to take a look at the link below, it may suit your needs better.
    http://www.businesssoftware.nokia.com/pc_suite_downloads.php

  • Problems with the Strings Urgent Help needed

    I have a unique problem. I have to retrieve a particular value from a String. I tried using String tokeniser but in vain. I cannot use java.util.regex package to match the expressions as the version of java on the client m/c is 1.1.8 and they are not ready to upgrade the same.
    The string From which I have is a very long one running into more than 100 lines which can vary from case to case all I know is to retrieve the value which is just in front of "TestValue" which occur only once in the String Can Anybody suggest a bettter alternative.
    Thanx.
    ebistrio

    StringTokenize on TestValueHow would you suggest that was done?
    As I understand it StringTokenizer tokens = new StringTokenizer(string, "TestValue"); would not tokenize on the string "TestValue" but on any of the characters 'T', 'e', 's', 't', 'V', 'a', 'l' or 'u'. This is a common java pitfall in my opinion due to bady named parameters (I feel it should be called "delims" not "delim") or in other people's opinion due to bad parameter type (should be a char[] not a string).
    A clearer explanation of the problem would help.

  • What's my problem with this G5? Help needed.

    I have an iMac G5- early 2005- running Tiger.
    During boot up there can be a black screen and that's all, no furter, thus I must do a reboot.
    No booting into OS.
    If the system does boot-up it might take anywhere between 3-10 minutes to do so.
    Other than that most of the operating of the machine is fairly ok. Sometimes there can be a serious delay for windows to open or changes to ocurr but that's not usually the csae.
    I used the Disk Utility -at boot- based on someone's recommendation but the disk had no errors, seemingly.
    The disk is partitioned into 2 disks. The second partition is called 'Storage'. It is not available or present[doesn't appear on the desktop] during use of the OS.
    In D.U. it appears as a greyed out word...but I can run first aid and it proves to have no errors and the disk can and is verified, however it is not accessible.
    It was sent off to be repaired, but the result is inconclusive.
    There have been no changes at all, to either hardware or software.
    Any thoughts or ideas?
    Thanks.
    Chris
    Message was edited by: C K2
    Message was edited by: C K2
    Message was edited by: C K2

    I rang apple care and after much time of listening to some fairly nice selections of music, I was informed that there was nothing that could be done with this machine as far as apple were concerned, so.
    I asked techy whether I should get a new hdd. His reply was, use a second hand one, don't waste your money on a new one, so.
    Took off back cover - 3 nuts on base of screen. Undid the 'grey plate' that sits on top of the access point to the hard drive. Undid 3 securing screws, undid cables - be careful to note the orientations of each of these - released the 2 hdd cables - one is for data transfer, the other is the power cable - then 4 screws holding the hdd in its housing. that was it...just reversed everything to replace.
    Then did a re-install of OSX Tiger. All's well. The system is very quick compared to its previous state and no problems so far.
    I did replace the hdd that was in this machine with a better model - Seagate - and a bigger size.
    will keep you posted.
    Just for those who may find their machine out of warranty and they might feel like having a go at this procedure - if the situations are similar - it's worth it and in a sense, you might have nothing to lose.
    Be careful !, take your time !...and keep in mind each and every action you take, so you have a memory or a map of the things that you do/did.
    good luck to you.
    Chris

  • HELP!!!! problem with motherboard HP Probook 4520s , need replacement, where can i buy it??

    HELP!!!! problem with motherboard HP Probook 4520s , need replacement, where can i buy it??

    bumer_v
    You can buy by HP PartSurfer or her
    Say thanks by clicking the "Kudos! Star" which is on the left.
    Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue.

  • HT201210 nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and somet

    nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and sometime just hear from other user that it 's difficult to use then force they change phone that use to handle to another.

    It is a feature to discourage the theft of iPhones by making them useless if resold. It's not going anywhere. It's simple: just don't buy a phone until you make sure that the activation lock has been disabled.

  • Encore CS4 (version 4.0.0.258) will not finish burning to blu-ray disc when using a menu template.  DVD burning works fine.  Anyone know the problem with blu-ray?  HELP!

    Encore CS4 (version 4.0.0.258) will not finish burning to blu-ray disc when using a menu template.   DVD burning works fine with menu template.  Anyone know the problem with blu-ray?  HELP!

    For CS4 you must update the Roxio component, especially with Win8
    http://forums.adobe.com/thread/1309029 http://docs.roxio.com/patches/pxengine4_18_16a.zip
    http://corel.force.com/roxio/articles/en_US/Master_Article/000012592-PX-Engine-Description -and-Download

  • Immediate help needed with XML Parser

    I am currently running Oracle 8i and trying to use the XML utilities. Just to make sure things are working, I tried a very simple program. I followed the xslsample.sql code that was supplied by Oracle. Code is as follows:
    declare
    p xmlparser.parser;
    begin
    p := xmlparser.newparser;
    end;
    When the code executes, I get a PLS-00201: identifier 'XMLPARSER.PARSER' must be declared. Anyone have any ideas on what is going on and how to fix it? Any assistance would be greatly appreciated. You can email directly if you wish since I am really under a tight timeline to get these utilities to work correctly.

    Michael,
    Seems to be some problem with privileges. XMLPARSER is owned by SYS. You will need to grant execute access from SYS to the user under which you are trying to compile the procedure. It might be useful to create a public synonym and then grant access.
    Hope this helps.

  • Problems with poor wifi signal strength, need help?

    Any suggestions would be greatly appreciated? This is a lengthy explanation. Thanks in advance.
    I have a 3rd generation Airport Extreme wirelessly bridged to a 4th generation Time Capsule. I have noticed only mild increase in signal strength.  Surprisingly I have only 1 – 2 bars of signal strength when standing next to the bridged Airport Extreme. There are areas of the house that continue to have very weak coverage ranging from 0 – 2 bars depending on the day and others that continue to have no wifi coverage.
    The house has Cat 5 cable in all rooms. Most rooms only have a phone jack wired to the end of the Cat 5 cable but two rooms have data ports. All the wires (phone and data) run to the same junction box and are connected to, what appears to be, a simple parallel bridge.  (There are a couple unused access points on the bridge. A few years back, I ran an additional line for a phone by simply pressing the colored wire into the corresponding site and the phone works fine)
    It was suggested to plug the two routers directly into the data ports rather than have them communicate wirelessly. When doing this, I had no signal at the other end and the phone stopped working.
    What is the best way to fix the weak wifi signal problem?
    1.     Do I need to tweak my current wireless set up? (FYI, In the Airport Utility, both devices are listed and have green dots)
    2.     Do I need to buy an additional Airport Extreme to bridge to the Time Capsule to cover the current dead areas? (unless there is something I should do different in the set up, hesitant to do this, since I have only seen a marginal boost with my current bridge)
    3.     Would it be better to use the existing cat 5 cable and create a functional “hard wired” network that I can use to connect the two wireless routers? (If this is the answer, is this something relatively simple that I can do myself or should I hire a professional?)
    Thanks again.

    The house has Cat 5 cable in all rooms. Most rooms only have a phone jack wired to the end of the Cat 5 cable but two rooms have data ports. All the wires (phone and data) run to the same junction box and are connected to, what appears to be, a simple parallel bridge.  (There are a couple unused access points on the bridge. A few years back, I ran an additional line for a phone by simply pressing the colored wire into the corresponding site and the phone works fine)
    It was typical awhile back, where you have "whole-house" Ethernet running back to a patch panel to use the cable runs for both data and phone service. This works fine as long as you only wanted 100 Mbps Ethernet (or Fast Ethernet) connections for data. Gigabit Ethernet requires all of the twisted pairs in the CAT-5 cable and cannot share any of those pairs for phone lines.
    So any wall outlet that is wired for both phone & data will not provide Gigabit Ethernet ... unless there are at least two CAT-5 cables going to that outlet. I am only mentioning this as to the potential for reduced bandwidth on some of your connections as all of your AirPort base stations are Gigabit capable.
    As far as "weak" signals, I am assuming that you have configured all of your AirPort base stations for a roaming and NOT an extended wireless network ... correct? Even if you already have, please review the following Apple Support article to make sure you didn't miss anything. Please post back your results.

  • Xfi Xtreme Audio Problems with Microphone and other things NEED HELP!!!!

    ? Alright i have exhausted my search for an answer for my problems.... This is a last resort now!
    Im running Windows 7
    st Problem: I was having problems with my microphone where people heard themselves through my microphone. Ok well i have a creative Fatility series headset with a supposed noise canceling mic. So last night i was like screw it imma put in the install disk for my sound card Xfi Xtreme Audio.
    This Arose my 2nd Problem: Now that the drivers were installed and i finaly got a volume panel it says im running Windows Vista. The name next to my card says Sound Blast X-Fi Xtreme Audio (Vista). Alright so i am running windows 7.... What the heck! Next thing is my microphone doesnt even work! This is just awsome btw and im pretty sure the volume panel isnt even the way it was when i was on an XP system.
    So if anyone has a fix to this problem let me know it would be great!

    A quick update i was able to fix Problem 2, i had to get rid of what i installed so im just back to Problem . I dont have the VOlume Panel anymore but my microphone still seems to make it so that people can hear themselves....

  • I'm still having problems with XUL Runner - please help am getting desperate!

    I recently sought help over a problem I am having with FF. When I try and load it, I get a message telling me that XUL runner 1.9.2.11 is not compatible with 1.9.2.12. The advice I received was to do a clean install. I have done this a number of times - using the Uninstall option in Control Panel as well as running the uninstall utility in the Firefox program folder. Each time I reinstall, and get the same problem. The only difference is that a few days ago I was installing FF 3.6.10, and that gave the error message that XUL runner 1.9.2.11 was not compatible with 1.9.2.10.
    I have FF set as my default browser, so when I click on links in e-mails, etc. I get the same failure to load symptoms. However, I found by chance that FF works OK in conjunction with System Mechanic 10 - a maintenance utility I have on my machine. If I select the on-line help option from that Menu, FF loads and runs OK. I can open new tabs and have no problem loading other pages. However, even with FF open, if I click a link in an e-mail, I get the XUL Runner error message.
    Although not all symptoms are the same, I am also having problems with IE8. When I run the program it loads, shows a 'connecting' message in the tab header, then closes. If I uninstall FF, then System Mechanic selects IE8 as the default browser, and as with FF, loads OK.
    Chrome and Safari both run OK (thankfully). there must be someone out there who knows what this all points to - is that person you?!
    Note: Trouble shooting information retrieved using FF when opened with System Mechanic.

    If you have such problems then you need remove the Firefox program folder before installing a new copy of the full Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.

Maybe you are looking for

  • How to Upgrade from Mac Os 9.2.x to Mac Os X on Power G4?

    I am having trouble moving my G4 tower from 9.2.2 to the Mac Os X system. I am thinking that my Max Os X ver 10.1 disc is damaged, and I'm not sure where or what to purchase to replace this Cd. Can't locate these older versions on Apple's page. This

  • Event linakge for PO work flow not transporting to Qualty system

    This is Sudhakar , I have a problem in Event linkage for PO Release strategy work flow. I have created a work flow for PO release strategy and done the event linkage through SWETYPV transaction code. I have added a new entry in SWETYPV transaction co

  • Create new user in ACE module?

    I'm trying to create a new user in the Admin context, but can't login with that account after I create it. There must be something simple that I'm missing. Any input is appreciated. Here's what I'm typing to create the user: username testuser passwor

  • How do I continuous​ly wait for a trigger?

    using labview and GPIB to control tektronix 3034B oscope. want to continuously wait for trigger. how do i get rid of timeout? I am using IVI instrument driver for 3034B

  • I just warn to carry on building web site what do I have to buy?

    I want to carry on building the web site I started with muse trile but don't know what it buy or even if the work I did is still there please help as I don't want to buy Adobe and have to start again or spend so much money. lesley