Current Object Name

I found some leads but not a straight answer at forum history.
There is a way to get the current procedure / function name in PL/SQL.
I writing a generic error handler. Today I use a varaible for each procedure to store their names, but
I would like to do it without this variable.
Thanks.
Oracle 10g

From the TK link:
How can I find the name of the procedure or function within a package that called me?
Simple answer: you cannotOf course from 10g onwards you can use <tt>$$PLSQL_UNIT</tt> and <tt>$$PLSQL_LINE</tt> instead of parsing dbms_utility.format_call_stack, but it still doesn't get you the subprogram. People have suggested parsing user_source using <tt>$$PLSQL_UNIT</tt> and <tt>$$PLSQL_LINE</tt> although I'm not sure how practical or efficient that will be. Possibly you could have a function that cached results in an array for efficiency, although you have to be careful when compiling new versions of packages (11g's function result cache may solve that problem though, or PL/SQL Scope might help by letting you query user_identifiers instead of user_source). However at this point I think most people decide to stick with hardcoding.

Similar Messages

  • Changing object name of role is not reflected

    When I change the Current Object Name for a specific role this change is not reflected. The role still retains it original name in the PCD or when I assign the role to a user.
    This only happens for a specific role in our system. For all other roles the change of the Object Name works fine.
    What am I overlooking?

    Hi ,
    Please check that when you change property 'name' of the role and then click on save button you shud get a  'save successful ' kinda message.
    If not then may be your role is locked by some other portal user id and thus not allowing you to change it. Please note that this will also not allow to change any property of the role, so you can test this by trying changing the other properties of the role.
    If this is not the case, then compare the properties of two roles one whichis working fine and the one which is not.
    Thanks,
    Namrta Mahajan

  • Invalid DataStore object name error when running process chain after EHP1

    Hello,
    We recently upgraded our BW Dev platform to NW7.01 EHP1 SP6. I noticed that the layout for "Delete PSA Request" process in the Process Chain has changed after the upgrade. We can no longer specify the actual PSA table to delete eg, /BIC/B0001645. Instead we need to specify the Datasource name and the Source System.
    Now after the upgrade when I run one of my process chains, it fails at "Delete PSA Request" step with error message "Invalid DataStore object name /BIC/B0001645: Reason: No  valid entry in table RSTS". This datasource is based on the flat file source system and the PSA table for this Datasource is /BIC/B0001653.
    Unfortunately the process chain is picking up an older PSA table for this datasource and there is no way for me to specify the current PSA table name after this change in layout with EHP1 upgrade. Any suggestions on how to resolve this issue.
    Many Thanks,
    Al

    Hi,
    Please implement OSS 1345331.
    If this does not help try the below steps:
    1.  Run the report 'RSAR_PSA_CLEANUP_DIRECTORY/_MS' in check mode for a 
           particular PSA table for finding the inconsistencies.
    2.   After that please analyze the logs and if there is any problems related to partition, you need to correct them using the report u2013
    3.  'SAP_PSA_PARTNO_CORRECT' in repair mode for the
          PSA tables.  Run the report again after this
    4.  'RSR_PSA_CLEANUP_DIRECTORY/_MS' in check mode to 
         double check that the invalid partitions are 
         corrected.
         Once this is done you can execute the report     
         'RSR_PSA_CLEANUP_DIRECTORY/_MS' in repair mode.
    -Vikram

  • Spaces in SQLServer Object Names

    Hello,
    I am currently upgrading my skills. I am taking an ASP.NET class that uses the Microsoft SQLServer example database, NorthWind.
    I migrated the database into Oracle so I could complete the homework assignments and project using the same database as the rest of the class.
    The migration went smoothly except for 2 issues:
    1. The Oracle created model created DATE columns for SQLServer DATE columns. However, the data stored in the database was more like the Oracle TIMESTAMP data type. The automatic migration would not load tables with DATE data in them, (Employees and Order Details).
    As it was, I manually moved the 2 tables (using the generated scripts). I altered the NLS_DATE_FORMAT in the .BAT file to match the field data (YYYY-MM-DD HH24:MI:SS) and I changed the .DAT file to remove the .000 (milliseconds) from the data in record field. Perhaps I should have just changed the type in the Oracle model. I am still not convinced however the automatic migration would have handled the DATE data that was stored by SQLServer as for example: 1998-07-15 00:00:00.000
    2. There is a table called Order Details <- note the blank between Order and Details. In Microsoft's SQL this table is referenced as [Order Details] in views, stored procedures and DML.
    However the migration workbench treated this migration complexity by replacing the brackets with quotes. So, I ended up with dbo."Order Details".OrderID for which the <Oracle SQL?> parser would reject.
    In fact, there was a name change done by another part of the workbench that changed the table name to Order_Details. Thus, it appeared as though there was an inconsistent handling of table names: if the migration workbench is context sensitive to "Order Details" being a table name when used.
    If the workbench is NOT context sensitive, the I am not sure of the ramifications of attempting to treat [Order Details] as Order_Details, instead of "Order Details".
    Also, there are stored procedures, like [Sales By Year] where by the ALTER procedure [Sales by Year] line was translated into CREATE OR REPLACE PROCEDURE "Sales By Year", yet there was a name change of the stored procedure object to Sales_By_Year. Again the parser would not CREATE OR REPLACE the procedure.
    As far as the Northwind database is concerned, it seems as though if the migration workbench were to treat [X Y Z] as X_Y_Z instead of "X Y Z", then there would be consistent handling of objects with spaces in their names.
    Bottom line - Issue #2: by design or a defect?

    1. The code does a SUBSTR(date,1,19) so that milli second data will be stripped off if the target type is DATE, but you should use Oracle TIMESTAMP to hold on to
    milisecond data.
    2. The Northwind space issues and bracket issues are defects. The recommended Oracle approach is not to have spaces in identifiers, so you get the underscores as replacements whether you like it or not. Otherwise you will end up having to quote all theses identifiers and the references to them will be case sensitive, and those last couple of things the OMWB is not good at so using the underscores saves the OMWB developers a lot of hassle. But as you see, this seems to have been
    inconsistantly applied.
    The only way forward is for you to decide whether you want references to object names to be case-insensitive (so replace spaces with underscores) or you want to have spaces in the names, so you must use quoted identifiers. Then you just have to be consistent on the approach you choose.

  • Object name, segment advisor and db sequential read

    oracle 10.2.0.4:
    I am looking at our ADDM and AWR report. It's complaining about db file sequential read waits and also "Segment Advisor" on LOB SYS_LOB.... I have couple of questions:
    1. When select is fired (from JDBC/hibernate) with the column that is of type BLOB does the blob gets extracted at that point or just the reference is returned to the BLOB. And only when that column is accessed then the blob is fetched. Or does it get fetched right away in the "Select statemement"?
    2. I see Sedgment Advisor on object name LOB SYS_LOB000000012511C000006$$. How do I know which column/table it's referring to.
    3. db file sequential read waits means that something is wrong with disk layout?
    4. Even though our IO is not that high ADDM keeps complaining about increasing SGA to 64G. Currently as it is 32G and it's huge. Could it be because of above reasons that it thinks that it needs larger SGA?

    We are expecting a very high load in coming days. So I was looking at the system to check if somethings needs to be improved beforehand. I see things like 'User I/O waiting on Hot Objects", "db file sequential read waits". I read about it but I am not sure how to really see if it's going to be a problem or if it's a problem. We have indexes but one of the queries selects blob and is not always used so I was wondering if db file sequential read is being caused by that. I am not sure why we would have waiting on Hot objects because currently our system in not very busy. Hot object is a LOB and it's partitioned. It says database object with id XXXX, 0 full object scansm 25336 physical and direct reds. I know the table by looking up in DBA_LOBS.

  • Invalid object name 'dbo.uf_GetRateSrcMember'

    Hello Friends,
    We recently applied the  SP3 (CPMBPC03P_1-20002499) for BPC 5.1. We are in Single Server environment. Our BPC 5.1 build was 5.0.486 which was required to install the SP3. After the installation it is 5.0.502
    We are getting the error below when we are trying to change the appliction sets from from the main page.
    Any help to resolve the issue is appreciated
    Server Error in '/OSoft' Application.  Invalid object name 'dbo.uf_GetRateSrcMember'.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: Invalid object name 'dbo.uf_GetRateSrcMember'.
    Source Error:
    The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
    Add a "Debug=true" directive at the top of the file that generated the error. Example:
      <%@ Page Language="C#" Debug="true" %>
    or:
    Add the following section to the configuration file of your application:
    <configuration>
       <system.web>
           <compilation debug="true"/>
       </system.web>
    </configuration>
    Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
    Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
    Stack Trace:
    [Exception: Invalid object name 'dbo.uf_GetRateSrcMember'.]
       Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack) +905
       OSoft.Consumers.ZFP.WebBase.PageBase.GetCurrentView() +518
       OSoft.Consumers.ZFP.WebBase.PageBase.get_CurrentView(String strDimension) +43
       ASP.Landing_aspx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) +95
       System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +27
       System.Web.UI.Control.Render(HtmlTextWriter writer) +7
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +243
       System.Web.UI.Page.ProcessRequestMain() +1926
    Really looking forward for answers.
    I would really really really appreciate any help
    Thanks

    Kaji,
    I had the same problem. Here is the solution:
    Dear customer,
    This issue looks similar to a previously reported bug.
    In general there is the possibility that some service/process
    remained in a bad status and this can be fixed by restarting the server
    But could you please also check, whether this description fits
    to your scenario:
    This issue occurred because when there are no secured dimensions
    in an appset,
    The modified application process remove the user function
    which is used for checking secured dimension.
    In case there is no secured dimension in the appset the
    problem occurres.
    This issue looks similar to a previously reported bug.
    In general there is the possibility that some service/process
    remained in a bad status and this can be fixed by restarting the server
    But could you please also check, whether this description fits
    to your scenario:
    This issue occurred because when there are no secured dimensions
    in an appset,
    The modified application process remove the user function
    which is used for checking secured dimension.
    In case there is no secured dimension in the appset the
    problem occurres.
    When modify application is run , the user function has been removed.
    A workaround is this:
    if you make Entity and RateSrc as secured dimension,
    the user function will be made in the appset again.
    Then you can change the user function as other name in database
    by renaming. After finished the rename,
    you can change the dimension as unsecured dimension like current.
    Then, you have to replace the user function name
    as original function name.
    Because the user function name is dependent on dimension name.
    If you can#t connect BPC Admin due to web page error,
    you have to execute the EverestAdmin.exe file
    in "C:\Program Files\BPC"
    Hope it solves the prob...
    Nic

  • Invalid object  name 'SVERS'

    Hello,
    When trying to perform an Upgrade of a BW3.0B to BW3.5, Prepare Phase, an error occurs in script MSSCONCHECK.SQL.
    - Msg 208, Level 16, State 1, Server SRVDW, Line 1
    Invalid object name 'SVERS'.
    Can anyone help?
    Thank you.
    Regards,
    PT

    I have similar eror message during upgrade from ECC 5.0 to ECC 6.0 on MS SQL 2005. The output from my sapup is as shown below:
    >> 07:39:34  PREPARE: START OF PHASE INITPUT_PRE
    Supply the following information:
    Confirm the name of your SAP system: [AWD]
    SAP SYSTEM ID     =
    The hostname of your central SAP server: [SERVER01]
    SAP SYSTEM HOST   =
    Enter the SAP instance number: [02]
    INSTANCE NUMBER   =
    The system identifier of your database: [AWD]
    DATABASE ID       =
    The hostname of your database server: [SERVER01]
    DATABASE HOST     =
    Executing script MSSCONCHECK ...
    MSSCONCHECK: Connection check failed for the user specified
          SAPup message
    SAPup> Errors were found in the logfile MSSCONCHECK.LOG
           after execution of the script MSSCONCHECK.SQL.
    SAPup> SAPup cannot proceed until these errors are fixed.
           Please, examine MSSCONCHECK.LOG, fix reported errors and then call R3
    gain
                - "continue"
                - "cancel"
    Enter one of these options [continue] :=
          SAPup message
    SAPup> SQL-scripts must be executed by the NT user account SERVER01\awdadm.
           Check your installation of the integrated security procedure
           on host SERVER01 and make sure that a login for the NT user
           SERVER01\awdadm exists with the following rules:
           - user SERVER01\awdadm owns the role System Administrators
           - user SERVER01\awdadm has the default database AWD
    SAPup> Integrated security installed correctly?
                - "no"
                - "yes"
    Enter one of these options [no] := yes
    Executing script MSSCONCHECK ...
    I'm currently running both Solution Manager 4.0 and mySAP ERP 2004 SR1 on the same box in Development environment.
    Has anyone gotten a breakthrough on this error messages? Mode set to both SQL and Windows Authentication, can do selct * from SVERS for solution manager database but not for ECC 5.0.
    Urgent!!!!

  • Changing of R/3 PS Object Names affects BW reporting

    Hi all
    Would like to ask for some help on PS Objects in R/3 and BW. Current we are running BW 3.0B in Production, and we hit this issue on PS objects. In R/3, names for PS objects such as Project Definition, WBS Element, Network Activity and Network Activity Element can be changed by the R/3 users. This posed a problem to BW, as it could not recognize the changes made to the PS Object name and unable to reflect it correctly in BW. It will subsequently bring in the PS transaction data as a separate line item for the same object multiple times, and this causes reporting problems in BW.
    From what I can search in the SDN and OSS, it looks like it is a design problem with the WBS and Project Definition (OSS Note 739182). I tried some solution recommended at this thread (WBS Updates in R/3 not Key in BW) and it helps 0PROJECT and 0WBS_ELEMT, by pulling the internal key into the 0PROJECT and 0WBS_ELEMT characteristics and placing the external key to the 0PROJECT_EX and 0WBS_EX characteristics. This solution works in testing, but when it comes to Network Activity and Network Activity Element, we were stumped again.
    We do allow R/3 users to change the Network Activity and Network Activity Element in R/3 system, as it is part of the business process. This posed a problem, because unlike Project Definition and WBS, Network Activity and Network Activity Element does not have internal or external ID. They also don't have characteristics similar to 0PROJECT_EX and 0WBS_EX. On the other hand, we cannot stop users from changing the Network Activity and Network Activity Element in R/3.
    Thus, does anyone have any good idea which can cater for Network Activity and Activity Element? Should we customize/enhance both the characteristics to include external IDs (like WBS and Project Definition) and use a conversion routine (such as WBSEL)?
    Thanks alot for your help!! Appreciate your time spent on this. Cheers...
    Chris

    Well you can either overwite a key figure in a cube or add to it
    ie
    for the same physical key to a ODS per datasouce in the update rules you can have this scenarion
    <key to ods>  value
    ..                   100
    now if for the same key we get 300 you can do this
    overwrite
    <key to ods>  value
    ..                   300
    or this
    addition
    <key to ods>  value
    ..                   400

  • Transport user error: invalid object name while starting CMS in CCM

    Hi Experts,
            I'm not able to start the CMS in CCM.It was working fine. Suddenly it went down due to some data base access failure. After that Iu2019m not able to start the CMS.
    Kindly find the event viewer error and information.
    Error: The root server reported an error Initialization Failure.
    Error: Failed to register object..   Reason: Transport user error: invalid object name..
    Information: Central Management Server stopped
          Could you please tell me how to start the CMS in CCM? Since I can able to setup CMS Database and audit database successfully.
    Regards,
    Sridharan

    Hi ,
            Thanks for the response.I have trace the CMS.I found some error in log file.any idea on the following errors,
    trace message: CNSClientManager::VerifyConnection() : search fails(37) - Transport user error: object with the specified name not found.
    trace message: CNSClientManager::VerifyConnection() : Failed to query for APSs.  Empty cluster list returned.
    trace message: TheAPSServer::RegisterApsInNameServer: Fail to register the current APS(Transport user error: invalid object name.)
    trace message: CNSClientManager::ClusterInfo::InvalidateAPS: Removing APS  from m_ActiveMembers and adding to m_InactiveMembers
    trace message: SIServerController:run: Fail to initialize or uninitialize.  Reason is The root server reported an error Initialization Failure.:
    Regards,
    Sridharan

  • Get Web Dynpro object name

    Hi colleagues,
    I am new to Web Dynpro. I would like to know how can I get current Web Dynpro object name from user interface on Portal - to open source code in SE80?
    Is it possible to use in Web Dynpro something like "/h" in backend command line? - to start debugger immediatelly after user action?
    Thanks a lot for help.
    Best Regards
    Martin

    >
    Martin Has wrote:
    > Hi Baskaran,
    > thanks for reply. Unfortunatelly I don't know what should I search for in repository - which name to supply and search. I have opened certain page on portal. And I need to get some technical information from this page to open or find source in SE80.
    >
    > Best Regards,
    > Martin
    As i already mentioned, you at least have to get the name of the application from iView property sheet. If you have a content administrator rights then you can find the iView and see the property.
    Otherwise ask people who have this access to tell you the application name.

  • IPTC Headline vs IPTC Object Name

    I'm just curious....
    Everything I've read about using IPTC fields recommends that we use HEADLINE for the short descriptive caption. And that OBJECT NAME be reserved for a more technical reference.
    Yet, I see that iPhoto uses the Object Name....
    Do we know why Apple made that decision?
    I have lots of data in Headline.... I'll have to transfer it to Title before I can import to iPhoto.
    Thanks for your consideration
    Marion

    iPhoto uses IPTC field 120, Caption/Abstract, for the descriptions. The titles are put into the IPTC field 05 - Object Name (Title). Why Apple uses those fields: you'll have to ask Apple: http://www.apple.com/feedback/iphoto.html
    The following are the IPTC field titles:
    *05Object Name (Title)
    10Urgency
    15Category
    20Supplemental Categories
    25Keywords
    40Special Instructions
    55Date Created
    80By-line (Author)
    85By-line Title(Author position)
    90City
    95Province/State
    101Country/Primary Location Nam
    103Original Transmission Reference
    105Headline
    110Credit
    115Source
    116Copyright Notice
    120Caption/Abstract
    122Writer/Editor
    You can see a lising of the core IPTC fields here: IPTC Core mapped fields PDF
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Cannot access a disposed object. Object Name : DataReader.

    "Cannot access a disposed object. Object Name : DataReader."
    This issue occurs when i use two custom pipeline component in the validate
    stage of recv pipeline.
    1)frst custom component is to validate the FF file (if i use this component alone everything works fine)
    2)2nd custom component is to execute map in the pipeline after the frst component
    Is there a soultion for this ?
    Other than setting RecoverableInterchangingProcessing to "True" and adding pContext.ResourceTracker.AddResource(Stream) ??
    Thanks
    Ismail

    It would be easy if you had your code copied here..
    One thing I suspect and we normally forgot to do is to reset the position of the stream to the beginning when we go from one component to another, something like below:
    yourStream.Position=0 
    or 
    yourStream.Seek(0, SeekOrigin.Begin);
    (may be DataReader is yourStream in your case?) 
    This statement can be added at the last of your Execute method just before your return statement. "yourStream" is the stream variable associated with your message.
    We need to re-position the stream before we read it again (when you get control to execute method, default position is 0). When you have more than one components, the message (IBaseMessage) then needs to be passed from one component to another and the current
    position needs to be 0.
    FYI: RecoverableInterchangingProcessing is to allows an interchange to be processed completely even if one or more messages in the interchange fail at the following stages/phases and ResourceTracker is used to manage the lifetime of the objects (e.g. you will
    track those objects which you want to be disposed after execution of your component).
    Please mark it as Answer if this answers your question
    Thanks.
    Mo
    The contents I write here is my personal views, not the view of my employer and anyone else.

  • Duplicate Object Name Error When Publishing Crystal Reports from BW to BOE

    Hi,
    We recently upgraded our systems (all client and server) to SP2.7 in order to solve a problem with saving Crystal Reports to BW.  Now we are experiencing a new error when trying to publish a Crystal Report from BW to BOE (either all in one step from Crystal Reports application or directly from within BW).
    Upon trying to publish a Crystal Report from BW to BOE, we get the following error:
    "An error occurred while saving and / or publishing.  The return code 1 was returned from the server.  Logon to Crystal Enterprise failed.  Unable to commit the changes to Enterprise.  Reason: Failed to commit objects to server : Duplicate object name in the same folder."
    We have repeated this issue numerous time with different reports, users and logon credentials and have verified that there are NOT any duplicate object names.
    Additionally, in some cases, the report ultimately publishes to BOE, but with the above error interruption along the way.
    Any ideas?
    Thanks,
    Josh
    Edited by: Josh Crawford on May 10, 2010 9:46 AM

    Ingo,
    Apologies for the delayed response.  We've spent a few days poking around with this issue, and had even opened a customer message for it (13641).
    In the end, it seems that the problem was somehow associated with the "Prepare this report for translation." flag in the "Save to BW Options" dialog box of Crystal Reports.  If we try to Save & Publish with the Translation flag selected, we get the duplicate entry error.  If we Save & Publish without the Translation flag selected, everything is fine.
    There are still some details we need to look into, but for the time being it looks like we don't have an issue anymore(assuming we ever did) as we're not concerned with Translation capabilities.
    If we come across the problem again, I'll post again.
    Thanks,
    Josh

  • Create directory / object name must NOT be case sensitive

    SQL Dev. 2.1 - the wizard, chosen from the left side navigator, submits a wrong create statement in which the object name becomes case-sensitive. This should not be so! Even if you write the new object name in small letters , the object name must end up in the data dictionary with capitals. kind regards Inger ([email protected])

    Which wizard? If I use a create table wizard, for example, and enter the table in lower case, this is indeed stored in the DB as upper case, as you require.
    Please provide more detail for your problem.
    Sue

  • Find object Names in a file and print all those objects Names

    Hi All,
    I am new to this forum.
    I want to know how to read only objects names in txt file. In the text file i have sql queries, package names, Function Name. I need to read all the objects and display out put. The file contains around 20000 Lines.
    Please suggest me.
    Thanks & Regards
    Suresh.

    Gurram wrote:
    want to read .rex File. The file contains combination of SQL code with table Names, Packages,Functions,There are three basic ways to read an external file.
    You can use UTL_FILE and use standard/basic file I/O calls like fread() and fwrite() - common amongst most (if not all) programming languages.
    You can define an external table for the file, and SQL*Load the contents of the file dynamically via a SQL SELECT statement.
    You can load the file into a CLOB using DBMS_LOB and then process it - quite useful if the text file is XML as the XMLTYPE supports parsing a a CLOB containing XML.
    I want to pick Each object name put in a separate file line by line.That in turn will need to use UTL_FILE to create an external file.
    Keep in mind though that your in a database environment with PL/SQL. The very best place for data is inside the database in SQL tables. Not outside as external files. Thus you need to ask yourself whether dealing this way with external files is the best solution, and a robust and scalable one.
    Granted, many times from the database side we need to deal with external files. The optimal method usually is to load that file's data into a database table as structured data - data that can be accessed via SQL and sorted, filtered, aggregated and analysed.
    To provide a "file" as output - this should ideally be done directly from structured data (SQL tables). And can be done using HTTP (via a web enabled PL/SQL procedure that supplies the file content as a http Mime stream), using FTP (via <i>UTL_TCP</i>) or as a CLOB via a PL/SQL call interface. Using UTL_FILE is not necessarily the only option.

Maybe you are looking for

  • PDF Searching using Adobe Acrobat Plugin Find Function in Safari

    I currently incorporate the Adobe Acrobat Pro (9.1.2) plugin for viewing PDF files. I like using Safari for viewing PDFs within a web browser, but I find Safari's built-in Find function (open apple-F) inferior to Acrobat's ability to search for text

  • 10.6.3 frequent crashes

    I've got an xServe 2.66Ghz w/ SSD and 12GB ram running 10.6.3 server. This is a new server and was running 10.6.2 for 3-4 weeks before I upgraded to 10.6.3. I made the mistake of not testing 10.6.3 first before rolling this server into production. Th

  • How to edit non-iWeb created pages?

    I have a personal website that was created using another app. Is it possible to import this and edit it using iWeb? If it is, it's not readily apparent. Thanks.

  • Flex optimization

    Hey there, I was wondering if there are any techniques to reduce the filesize of my Flex application? With dynamic linking, it's 41k. With static linking, it's about 300k. What's all that extra heavyweight that brings it up to 300k? And by my underst

  • Adding buttons to MSO

    Hi, I have been seen on the forum for some time now for similiar problems and nothing I have found seems to work (only partially). I am new to this  and will try to explain so maybe someone can see my mistake. I have a photo with mutliple objects and