Apex_util.download_print_document with Oracle XE?

Hi!
Can anyone tell me whether it is possible to use apex_util.download_print_document with Oracle XE?
And can I do so without BI Publisher?
If not, please point me to some solution that allows me to print PDF from my apps.
Thanks!
Remco

FOP : [http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html]
Cocoon: [http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html]
Jasperreports: [http://blog.dunull.org/?page_id=70]
Thank you,
Tony Miller
Webster, TX

Similar Messages

  • Apex_util.download_print_document with clob file

    Has anybody had success using apex_util.download_print_document with a clob data file (instead of Report Query)? I'm trying this with an XML dataset and rtf. document that works if I try in Word BI -Plugin. If I try code below from APEX page I get an error saying there is something wrong with the document.
    apex_util.download_print_document(
    p_file_name => 'test',
    p_content_disposition => 'attachment',
    p_report_data => test_clob('',''),
    p_report_layout => 'ID_LST',
    p_report_layout_type => 'rtf',
    p_document_format => 'pdf',
    p_print_server => null);
    CREATE OR REPLACE FUNCTION test_clob (p_username in varchar2,
    p_password in varchar2) return CLOB IS
    v_clob CLOB;
    BEGIN
    v_clob := dbms_xslprocessor.read2clob('INTERFACES','id_lst.xml');
    return(v_clob);
    END test_clob;

    FOP : [http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html]
    Cocoon: [http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html]
    Jasperreports: [http://blog.dunull.org/?page_id=70]
    Thank you,
    Tony Miller
    Webster, TX

  • Creating PDF with XML and APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT

    I am trying to generate a PDF report with an existing BLOB stored in a table being applied to a report template. Here is my procedure.
    declare
    doc blob;
    begin
    select img into doc from table where id = :P1_SEL_ID;
    APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT (
    p_file_name => 'Document',
    p_content_disposition => 'attachment',
    p_report_data => doc,
    p_report_layout => 'TEMPLATE1',
    p_report_layout_type => 'rtf',
    p_document_format => 'pdf'
    end;
    When I run the procedure adobe acrobat opens but gives me an error message saying "The file cannot be opened because it has no pages".
    I am storing the blob through APEX_UTIL.GET_PRINT_DOCUMENT and a report query with the document format 'XML' here.
    declare
    idoc blob;
    begin
    doc := APEX_UTIL.GET_PRINT_DOCUMENT (
    p_application_id => 103,
    p_report_query_name => 'SAVE_XML',
    p_document_format => 'xml');
    update table set
    img = doc
    where id = :P1_SEL_ID;
    end;
    I am pretty sure that the stored files have data in them as I tried downloading and opening them after stored. Any ideas as to why this is? Is it the way I am storing/calling the blob file?
    Edited by: BLum on Feb 1, 2010 4:13 PM

    Nope sorry. I have no idea really of what could be the problem. I cannot even find a valid example of how to use that process in that way. I posted here as a last resort. As sort of a patch I just read the xml file and inserted the data into a temp table then called a report query on the temp table.

  • Handling Special characters in call to apex_util.download_print_document

    I am developing some custom reports that I need as PDFs. My client does not have BI Publisher so I am doing some custom xsl to generate the reports. I test as I develop by using a simple web page that POSTs to the apex_fop.jsp. Then I also test by saving the XML and XSL to the database and then query them and using apex_util.download_print_document, passing the XML and XSL as a blob and clob respectively.
    The issue I have is an ampersand. The following line
    <td>this &amp; that</td>works great when sent via the web page post to apex_fop.jsp. However when the exact same file is saved to the database and run through apex_util.download_print_document and opened with Adobe Reader, it says the file has been damaged and the oc4j error log for the fop application says
    oracle.xml.parser.v2.XMLParseException: Unexpected EOF
    What's the difference between the two calling methods, and how do I get ampersands in the data using apex_util.download_print_document.
    Thanks.

    Larry,
    When you submit your request to apex_fop.jsp through a simple web page, and include escaped characters such as "&amp;", then your web browser takes care of encoding the & in your string. In APEX, you have a number of different ways to generate your PDF documents. You can use report queries, classic reports, interactive reports, or call the print API directly. When using any of the built-in reports (classic, interactive, report queries), the APEX engine generates the XML document holding your data for you. The APEX engine also takes care of escaping your data, so when you have a value like "this & that" in any of your queries columns, the engine escapes this to "this &amp; that". The engine additionally encodes characters such as &, which gets encoded into %26. And after that, processing is handed of to an interface between APEX and the print rendering engine. This interface simply takes the incoming XML data and stylesheet / template and makes an HTTP request to the rendering engine (e.g. BI Publisher, apex_fop.jsp, etc). It does not do any encoding, since that had been done in a previous step. The APEX print API is calling this interface directly, which means, that the incoming XML data already needs to be encoded prior to calling the APE. So if you change your string "this &amp; that" to "this %26amp; that", it should work as expected. We will have to look into whether we need to enhance the print API to allow for encoding the XML data supplied by the developer.
    Hope this helps,
    Regards,
    Marc

  • APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT

    My system is Apex 4.0.1+oc4j+Apex Listener+BI publisher. I need generate user-defined report layout with custom padding-left,*padding-top* values for each printing element (it is like Edit Print Attributes page in the application builder, but more complex), so the standart Report Queries and Report Layouts is not an option. DOWNLOAD_PRINT_DOCUMENT Procedure Signature 3 working fine with the pre-defined report query and pre-defined report layout. But I get 0-Byte pdf-file when trying to print document using custom XML based report data (as a CLOB) and XSL-FO based report layout (as a CLOB). Can anyone provide working example? Here is mine:
    declare
    f_layout clob;
    f_data clob;
    begin
    f_data:='
    <?xml version="1.0" encoding="UTF-8"?>
    <DOCUMENT>
    <DATE>05/17/2011</DATE>
    <USER_NAME>NIN</USER_NAME>
    <APP_ID>103</APP_ID>
    <APP_NAME>Oracle APEX AppBuilder</APP_NAME>
    <TITLE>TEST</TITLE>
    <P32_VAL2></P32_VAL2>
    <REGION ID="0">
    <ROWSET>
    <ROW>
    <LANG>RUS</LANG>
    </ROW>
    <ROW>
    <LANG>ENG</LANG>
    </ROW>
    </ROWSET>
    </REGION>
    </DOCUMENT>
    f_layout:='
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="DOCUMENT">
    <xs:complexType>
    <xs:sequence>
    <xs:element ref="DATE"/>
    <xs:element ref="USER_NAME"/>
    <xs:element ref="APP_ID"/>
    <xs:element ref="APP_NAME"/>
    <xs:element ref="TITLE"/>
    <xs:element ref="P32_VAL2"/>
    <xs:element ref="REGION"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="DATE">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    <xs:element name="USER_NAME">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    <xs:element name="APP_ID">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    <xs:element name="APP_NAME">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    <xs:element name="TITLE">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    <xs:element name="P32_VAL2">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    <xs:element name="REGION">
    <xs:complexType>
    <xs:sequence>
    <xs:element ref="ROWSET"/>
    </xs:sequence>
    <xs:attribute name="ID" use="required">
    <xs:simpleType>
    <xs:restriction base="xs:byte">
    <xs:enumeration value="0"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:attribute>
    </xs:complexType>
    </xs:element>
    <xs:element name="ROWSET">
    <xs:complexType>
    <xs:sequence>
    <xs:element ref="ROW"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="ROW">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="LANG">
    <xs:simpleType>
    <xs:restriction base="xs:string"/>
    </xs:simpleType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT (
    p_file_name => 'mydocument',
    p_content_disposition => 'attachment',
    p_report_data => f_data,
    p_report_layout => f_layout,
    p_report_layout_type => 'xsl-fo',
    p_document_format => 'pdf');
    end;

    Hello,
    If you use a branch you don't see the download as the branch is bringing you to another/the same page.
    You probably want a before header process and make that conditional with a request. On your button you define the same request for ex PRINT. In your process, you set a condition Request = Value and type in PRINT.
    That should do it for you.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/
    REWARDS: Please remember to mark helpful or correct posts on the forum

  • Apex function apex_util.get_blob with unexpected behavior

    Hi Experts.
    I've been building an Apex search application and hit a snag while testing the apex_util.get_blob download url.  It appears the Download url is only valid in the session that it was generated. Meaning this.  The url in Step 2 below now returns an "500 - Internal Server Error".  But when it was first generated (i.e. select Download link in Apex app, the right click and select Copy Link Location) the same url below worked.  Is there a way to fix this?
    Here are my steps:
    1) Upload a store a document using the Download syntax : DOWNLOAD:GPAP_PROJECT_FILES:FILE_BLOB:ID::FILE_MIMETYPE:FILENAME:UPDATED:FILE_CHARSET:Inline:Download.
    2) with either FF or IE, when I select to cfopy the lijnk, e.g.
    https://apex.oraclecorp.com/pls/apex/apex_util.get_blob?s=101780738579356&a=2853&c=35900184302057347654&p=19&k1=307565788455977950718535285815317923965&k2=&ck=23EE058993C510D8E30A6B23E12431E8&rt=CR
    3) Result:  If I paste this url into another browser window from the "same" session as the file, it works fine.  But if I start a new browser instance/session, and paste the same url a "500 - Internal Server Error" results.  Should this be possible, and if so, can you please share any suggestions?
    Thanks a lot!
    Mike

    Hi Mike,
    Did you consider creating a public procedure to download your file?
    Here is a good blog that tells how to do this:
    http://matthiashoys.wordpress.com/2013/02/22/http-404403-executing-apex-procedure-from-url-with-oracle-11g-xe/
    You basically just create a procedure that generates the blog, and then you give it a grant to public.
    Just remember to do a security check inside the procedure.
    Regards,
    Joni

  • Bug in APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT for special characters?

    Hi,
    I am using APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT to download reports from BI-Publisher. But with special characters, and only if the filename is to long, the filename is in Firefox 10.0.2 not correct. In IE9 its running fine. I am not sure if its only a browser-problem or a problem with APEX.
    Here is the code:
    declare
        v_filename varchar2(1000);
    begin
        v_filename := 'Umlaut ü 123456789012345678901234567890123';
        APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT (p_file_name => v_filename,
                                           p_content_disposition => 'attachment',
                                           p_application_id      => :APP_ID,
                                           p_report_query_name   => 'Checkliste',
                                           p_report_layout_name  => 'Checkliste',
                                           p_report_layout_type  => 'rtf',
                                           p_document_format     => 'pdf');
    end;With
    Umlaut ü 123456789012345678901234567890123its working and I get a file named "Umlaut ü 123456789012345678901234567890123.pdf".
    But with
    Umlaut ü 1234567890123456789012345678901234(one character longer) its not working and I get a file named "=_utf-8_B_VW1sYXV0IMO8IDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDEyMzQucGRm".
    If I change the ü to ue I have no problems, even with much longer filenames.
    Very strange, isnt it?
    Any ideas for this?
    Kind Regadrs,
    Mark

    Hi,
    it does not work all fine with the IE. The following is not working both browser (firefox and IE):
        APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT (p_file_name => 'Objektpruefung 02.08.2010 1000.pdf',
                                           p_content_disposition => 'attachment',
                                           p_application_id      => :APP_ID,
                                           p_report_query_name   => 'AnlagenCheckliste',
                                           p_report_layout_name  => 'AnlagenCheckliste',
                                           p_report_layout_type  => 'rtf',
                                           p_document_format     => 'pdf');The filename is then "Objektpruefung 02..pdf".
    Can anybody help me?
    Regards,
    Mark

  • Error while installing Oracle Apps server 10.1.3 with Oracle DB 11.2.0.2

    Error while installing Oracle Apps server 10.1.3 with Oracle DB 11.2.0.2 residing in the same server and being used by Apps server as it's metadata.
    bash-3.00$ export ORACLE_HOME=/data/ora11g/app/ora11g/product/11.2.0
    bash-3.00$ cd /data/OAS/install/soa_schemas/irca/
    bash-3.00$ ./irca.sh
    Integration Repository Creation Assistant (IRCA) 10.1.3.1.0
    (c) Copyright 2006 Oracle Corporation. All rights reserved.
    ERROR: Cannot find library - /data/ora11g/app/ora11g/product/11.2.0/jdbc/lib/ojdbc14.jar
    Please verify that the ORACLE_HOME is set correctly.
    bash-3.00$

    Hi Craig,
    Database 11gR2 could be used for Installing Application Server 10.1.3.x but with some limitation.
    So please review the note:-887365.1 Oracle Database 11g Release 2 (11.2) Certification for Oracle Application Server 10g (10.1.2, 10.1.3, 10.1.4)
    Section :- Oracle Application Server 10g Release 3 (10.1.3)
    Regards,
    Praaksh.

  • Install Solution Manager in RedHat Enterprise 6 with Oracle 11

    Hello ,
    In the marketplace-PAM,  RedHat Enterprise 6 is not listed as approved for EHP1 Solution Manager 7.0 64 bit (unicode) with Oracle.
    Does anyone have any information on this subject?
    Has anyone installed the Solution Manager 7.0/Oracle with RedHat Enterprise 6?
    tks

    Yes, you are correct. Apart from PAM, following Note confirms this. RHEL 6 is not supported yet for Oracle, is in planning stage.
    Note 1565179 - SAP software and Oracle Linux
    Thanks

  • Unable to boot bankapp servers with Oracle 8.1.7 in windows2000

    Hello,I tried to run bankapp examples with oracle 8.1.7 in windows2000. But when
    I booted the servers using tmboot, there are some errors.(1)I used the following
    RM entries:Oracle_XA;xaosw;D:\Oracle\Ora81\precomp\lib\msvc\oraSQL8.lib D:\Oracle\Ora81\precomp\lib\msvc\oraSQX8.lib
    D:\Oracle\Ora81\RDBMS\xa\ORAXA8.lib (2)The OPENINFO string in the ubbshm file
    is:DEFAULT:TMSNAME=TMS_ORA TMSCOUNT=2 LMID=SITE1
    BANKB1     GRPNO=1 OPENINFO="Oracle_XA:Oracle_XA+Acc=P/scott/tiger+SesTm=100+LogDir=.+MaxCur=5"(3)the
    follow is the error message when I booted the servers:
    .. 174841.GLOBALDB!BALC.852.2572.0: 07-26-2001: Tuxedo Version 8.0 32-bit Windows.
    174841.GLOBALDB!BALC.852.2572.0: LIBTUX_CAT:262: INFO: Standard main starting
    174841.GLOBALDB!BALC.852.2572.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open
    returned XAER_RMERR
    174841.GLOBALDB!BALC.852.2572.0: tpsvrinit: failed to open database due to
    174841.GLOBALDB!BALC.852.2572.0: tpopen failed, tperrno: 16
    174841.GLOBALDB!BALC.852.2572.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    174841.GLOBALDB!tmboot.480.548.-2: CMDTUX_CAT:825: ERROR: Process BALC at SITE1
    failed with /T tperrno (TPERMERR - resource manager error) ...
    Can anyone help? Thanks a lot!
    Best Regards
    Lily

    I found the answer myself in an earlier post.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by The Oracle Reports Team:
    Reports 6i will connect to Oracle8i, however you need to connect over Net8 - i.e. on the database side, you need to set up the TNS listener to accept connections, and on the Reports side (which, incidentally, needs to be installed in a separate Oracle_home) you need to configure the tnsnames.ora file to connect to the 'remote' database (since it is in a different oracle_home, to all intents and purposes it may as well be on another machine - it's all considered 'remote').
    Regards
    The Oracle Reports Team http://technet.oracle.com <HR></BLOCKQUOTE>
    null

  • Registering a Partner application with Oracle SSO 10gR2

    Hi Everybody
    I'd like to ask a question around registering a partner application with Oracle SSO.
    I have entered my home_url, logout_url and cancel_url e.g. home_url is https://vevopuitest1.co.uk/vevo_test1 and so on for the other fields.
    When I save the details some information is automatically created e.g. Site Id, Site Token etc.
    The bit that I am particularly interested in are the fields Single Sign-On URL and Single Sign-Off URL.
    For my purposes these fields are respectively: https://cwassotest1.co.uk/pls/orasso/orasso.wwsso_app_admin.ls_login and https://cwassotest1.co.uk/pls/orasso/orasso.wwsso_app_admin.ls_logout
    My questions are:
    1. Where do these values come from?
    2. Can I view them anywhere, say, in Oracle Directory Manager or using ldif queries?
    I would like to be able to verify these values.
    Many Thanks
    Andy

    I'm afraid this won't answer your question completely, but AFAIK in principle it does not matter on which machine SSO is running, as long as it passes the user id and credentials properly through the HTTP Header. Even more: in practice it is very common to have SSO running on a different machine than where your app runs.
    So what I would do is find out how to use ADF Faces with SSO. Perhaps someone else can provide pointers on that.
    Jan Kettenis

  • Forms 6.0 how to query clob column with oracle 9.2 DB

    hi every body,
    i made install for oracle 9.2 oracle DB every thing goes ok but when i made query in my form version 6.0 which have CLOB column the form closed automatically without any message?
    and just for know when i run the same form with oracle 8.1.7 DB the form made query normally without any problem.
    i want your help please.
    Message was edited by:
    mshaqalaih

    I know there was a problem in 6i where you would get a crash if your query returned more than {Max Length} characters of the field representing the CLOB column.

  • Using Java Access bridge (Accessibility) with oracle forms 6.0 client

    I'm trying to use JAB (java Access bridge ) to capture events in oracle forms 6.0 client .
    I've a Jinitiator 1.1.8 and JRE version 1.4x
    I've configured JAB as per the installation guide . However the events don't surface in Java Monkey .
    Has anybody encountered similar issue ? what is the solution for the issue ??
    Also on one of the forums I read Jinitiator 1.3x and above is automatically recognised by Java Access bridge .
    For jinitiator version less than 1.3 manual configuration is required . however I haven;'t been able to find any on the oracle forms KB
    Also here is the excerpt from the link http://www.oracle.com/us/corporate/accessibility/faqs/index.html
    Q: Are there special steps for using Java-based applications with assistive technology?
    A: If the Oracle application is written in Java, such as JDeveloper or Oracle Forms (runtime), customers must first install the latest version of Sun's Java Access Bridge. The Java Access Bridge provides the integration with screen readers such as JAWS or SuperNova that support Java. You just download the Access Bridge and install it. Sun's AccessBridge 2.0x recognizes Oracle's JInitiator 1.3x and above so no manual configuration steps are necessary. The Access Bridge is available from: http://java.sun.com/products/accessbridge. At the time this document was written, Access Bridge 2.0.1 is the most current publicly available production release; Oracle recommends upgrading to this version. Sun's AccessBridge is bundled with Oracle Universal Installer (OUI) and can be found in the Java Runtime Engine (JRE). More information for configuring such products is in the respective product documentation, or on http://www.oracle.com/us/corporate/accessibility/products/index.html.
    Edited by: 974810 on 4 Dec, 2012 1:10 AM

    ODP.NET requires Oracle Client 9.2 or higher.
    You can find additional information about ODP.NET from the FAQ:
    http://www.oracle.com/technology/tech/windows/odpnet/faq.html
    and the ODP.NET homepage:
    http://www.oracle.com/technology/tech/windows/odpnet/index.html
    Hope that helps,
    Mark

  • Using long vs. clob datatype with Oracle 8.1.7 and interMedia

    I am trying to determine the best datatype to use for a column I
    wish to search using the interMedia contains() function. I am
    developing a 100% java application using Oracle 8.1.7 on Linux.
    I'd prefer to use the standard JDBC API's for PreparedStatement,
    and not have to use Oracle extensions if possible. I've
    discovered that there are limitations in the support for LOB's
    in Oracle's 100% java driver. The PreparedStatement methods
    like setAsciiStream() and setCharacterStream() are documented to
    have flaws that may result in the corruption of data. I have
    also noticed that socket exceptions sometimes occur when a large
    amount of data is transferred. If I use the long datatype for
    my table column, the setCharacterStream() method seems to
    transfer the data correctly. When I try to search this column
    using the interMedia contains() function, I get strange
    results. If I run my search on Oracle 8.1.6 for Windows, the
    results seem to be correct. If I run the same search on Oracle
    8.1.7 for Linux, the results are usually incorrect. The same
    searches seem to work correctly on both boxes when I change the
    column type from long to clob. Using the clob type may not be
    an option for me since the standard JDBC API's to transfer data
    into internal clob fields are broken, and I may need to stick
    with standard JDBC API's. My customer wishes to purchase a
    version of Oracle for Linux that will allow us to implement the
    search capability he requires. Any guidance would be greatly
    appreciated.

    I've finally solved it!
    I downloaded the following jre from blackdown:
    jre118_v3-glibc-2.1.3-DYNMOTIF.tar.bz2
    It's the only one that seems to work (and god, have I tried them all!)
    I've no idea what the DYNMOTIF means (apart from being something to do with Motif - but you don't have to be a linux guru to work that out ;)) - but, hell, it works.
    And after sitting in front of this machine for 3 days trying to deal with Oracle's, frankly PATHETIC install, that's so full of holes and bugs, that's all I care about..
    The one bundled with Oracle 8.1.7 doesn't work with Linux redhat 6.2EE.
    Don't oracle test their software?
    Anyway I'm happy now, and I'm leaving this in case anybody else has the same problem.
    Thanks for everyone's help.

  • Installation Problem in SAPNW7.0 with Oracle on RHEL5.4

    Hi Everyone,
            I am installing SAP NETWEAVER7.0 SR3 with ORACLE 10.2.0.4 on RHEL5.4 Operating System. I have installed the java
    and i have install the ORACLE 10.2.0.4 Successfully. I set the environment variable in vi .bash_profile and i set the kernal parameters with their values in vi /etc/sysctl.conf file then run the command sysctl -p. Later i run the ./sapinst script the cd /NW7.0/
    BS_Installation Master_2005/ IM_LINUX_x86_64. It went fine up to the 24th phase. At the 24th phase "start instance" i got the error.
    The error message is
    " ERROR 2010-10-10 12:03:03.542
    CJS-20022  Could not start instance 'DVEBMGS00' of SAP system QAS"
    I did try my level best to resolve it. Can any one tell me what could be the issue and how to resolve it.
    Thanks

    startdb.log
    Sun Oct 10 16:45:11 IST 2010
    LOGFILE FOR STARTING ORACLE
    Trying to start QAS database ...
    Sun Oct 10 16:45:11 IST 2010
    checking required environment variables
    ORACLE_HOME  is >/oracle/QAS/102_64<
    ORACLE_SID   is >QAS<
    Sun Oct 10 16:45:11 IST 2010
    check initora
    Sun Oct 10 16:45:11 IST 2010
    check initora
    Sun Oct 10 16:45:11 IST 2010
    checking V2 connect
    TNS Ping Utility for Linux: Version 10.2.0.1.0 - Production on 10-OCT-2010 16:45:11
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /usr/sap/QAS/SYS/profile/oracle/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP) (HOST = quality) (PORT = 1527))) (CONNECT_DATA = (SID = QAS) (GLOBAL_NAME = QAS.WORLD)))
    OK (10 msec)
    tnsping: V2 connect to QAS
    Sun Oct 10 16:45:11 IST 2010
    Connect to the database to check the database state:
    R3trans: connect check finished with return code: 12
    Database not available
    Sun Oct 10 16:45:11 IST 2010
    Shutdown database
    First trying to shutdown the database - May be,
    the database is in the nomount or mount state
    Sun Oct 10 16:45:12 IST 2010
    starting database
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Oct 10 16:45:12 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-09925: Unable to create audit trail file
    Linux-x86_64 Error: 13: Permission denied

Maybe you are looking for

  • Mac Mini drive read/write 20MB/s

    I've been fighting a slow drive for months and have yet to find a solution.  Most recently I installed a 1 TB 7200 RPM drive from OWC, cloned my drive and find the new drive measures about the same read/write speed of 20-25 MB/s.  I'm at a loss to fi

  • Standard report related to MIRO

    Hi, I need a standard report which could extract MIRO data: - Invoice vendor - Invoice data - Condition (KSCHL) - Invoice value I know that these data are stored in the RBKP and RSEG tables, but must I generate a custom report or a query to have thes

  • Re: How to Clone Using the Restore Option of Disk Utility

    This is a revision to original post: How to Clone Using Restore Option of Disk Utility 1. Open Disk Utility from the Utilities folder. 2. Select the backup or destination volume from the left side list. 3. Click on the Erase tab in the DU main window

  • Can't see iMovie anymore

    Hi everyone, when i bought my Macbook Pro 2011 it had Snow Leopard installed and it was included iMovie. I upgraded to Lion as soon as it was released and no problems. After a year, i decided to format my Macbook so i downloaded the OS and burned it

  • Download assistant with no products and can't login

    What is the download assistant using for username and password when it tries to sign in ? How can one change what it uses if it is in error ?