Database report ....

I am brand new DBA ....
Users wants me to make daily database reports.
What should I write in the report ....
I have put the alert.log on the report, Tablespace usage, Backup status with RMAN and Long Operation Status (v_$session_longops), but still the users don't want that kinda report. They said you must write database report that everybody can understand included non DBA personnel.
Is there anyone can give me explanation how to write daily database report ?
thank you very much
indra

Duplicate Thread
Re: database report ....
Please avoid positing the same question mutiple times.
Thanks
Adith

Similar Messages

  • Runtime error while creating logical database report pgm

    Hi,
        I have started doing pgm on Logical Database report using VBAK,VBAP and MARA. I took VBAK as the root node and VBAP& MARA  as subnodes. The actual requirement is:-  I am trying to place these tables in Application server for perfromance issue using Logical database. Based on sales, the items need to be be displayed. And based on Items, the material data should be displayed.So root node here is VBAK.
    I have created these 3 nodes in SE36 tx.code. when I go back to se36 main screen and under "subobjects"  ,I've selected "selections". I got a dialog box saying that "Nodes for which free selections are to be made". I have clicked on the radio buttons.And then clicked on "transfer" . I am getting a runtime error . Please let me know the solution.
        Please do send me the actual process to goon with logical database reporting.

    Hello
    Logically speaking, a company code can have more than one FSV as long as they share the same chart of accounts.
    When COA is common, the FSV pattern can be designed seperatly to serve the purpose of varied reporting.
    The dump you are getting is a temporary snag. Take a screen shot from SM54 after you execute the report and pass it to BASIS for analysis. They would fix that.
    Reg
    assign points if useful

  • Query regarding Logical Database reports

    Hi,
    I have started doing pgm on Logical Database report using VBAK,VBAP and MARA. I took VBAK as the root node and VBAP& MARA as subnodes. The actual requirement is:- I am trying to place these tables in Application server for perfromance issue using Logical database. Based on sales, the items need to be be displayed. And based on Items, the material data should be displayed.So root node here is VBAK.
    I have created these 3 nodes in SE36 tx.code. when I go back to se36 main screen and under "subobjects" ,I've selected "selections". I got a dialog box saying that "Nodes for which free selections are to be made". I have clicked on the radio buttons.And then clicked on "transfer" . I am getting a runtime error . Please let me know the solution.
    Please do send me the actual process to go on with logical database reporting.

    hi,
    look here <a href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/db9bed35c111d1829f0000e829fbfe/frameset.htm">Editing Logical Databases</a>
    pls reward usefuls answers
    thx.
    Andreas

  • Database report generation?

    Anyone know of any good java-based database report generation tools that would work in a JSC created application? I'd like both web reporting and print capabilities.
    thanks in advance!
    Paul

    I haven't used any report generation tool with Creator. But I have seen users reporting about using Jasper Reports and JReports along with Creator in this forum.
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Database - reports - suppress empty fields

    I have a fairly large database which frequently has a number of empty fields in the records. Is there a way I can suppress the empty fields when I print a report? It might reduce a nearly 60 page report to 30. A significant saving.
    Thanks for any help or ideas.

    Here is an enhanced version.
    --[SCRIPT report visible records]
    Enregistrer en tant que Script: report visible records.scpt
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:AppleWorks 6:
    Il vous faudra peut-être créer le dossier AppleWorks 6 et peut-être même le dossier Applications.
    Ouvrir votre base de données,
    rendre visible les fiches à imprimer
    menu Scripts > AppleWorks 6 > report visible records
    Le script crée un document traitement de texte à partir du contenu de ces fiches
    À droite des noms de champs, le script insère un caractère 'deux points' suivi d'un TAB ce qui permet d'aligner aisément le début des données affichées.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script as Script: report visible records.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:AppleWorks 6:
    Maybe you would have to create the folder AppleWorks 6 and even the folder Applications by yourself.
    Open your database
    Make visibles the records to print.
    menu Scripts > AppleWorks 6 > report visible records
    The script creates a new WP document with the contents of these records.
    After the fields name, it inserts a colon and a TAB so it would be easy to align the beginning of data values
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2009/09/20
    --=====
    property myWP : "my report.cwk"
    property doWhat : 1
    1 = skip empty fields
    2 = display fieldName for empty fields
    3 = display fieldName and "unavailable" for empty fields
    property liste : {}
    property nomsChamps : {}
    property nbf : missing value
    --=====
    on run
    my nettoie()
    tell application "AppleWorks 6"
    activate
    if document kind of document 1 is not database document then error "Document 1 is not a database !"
    set myDB to name of document 1
    tell document myDB
    set my nomsChamps to name of fields
    set my liste to index of every record whose visible is true
    end tell -- document 1
    end tell -- AppleWorks
    if my liste is {} then error number -128
    set nbf to count of my nomsChamps
    tell application "AppleWorks 6"
    make new document with properties {document kind:text document, name:myWP}
    set nbr to count of my liste
    repeat with rec from 1 to nbr
    set the clipboard to my readRecord(myDB, rec)
    tell document myWP
    paste
    if rec < nbr then select menu item 12 of menu 4 (* Inserts Page break *)
    end tell -- document
    end repeat
    end tell -- AppleWorks
    my nettoie()
    end run
    --=====
    on nettoie()
    set my liste to {}
    set my nomsChamps to {}
    set nbf to missing value
    end nettoie
    --=====
    on readRecord(d, r)
    tell application "AppleWorks 6" to tell document d
    set l_fiche to {}
    repeat with f from 1 to nbf
    set valF to value of field f of record r
    if doWhat = 1 then
    if valF is not unavailable then copy (item f of my nomsChamps) & " :" & tab & valF & return to end of l_fiche
    else if doWhat = 2 then
    if valF is unavailable then set valF to ""
    copy (item f of my nomsChamps) & " :" & tab & valF & return to end of l_fiche
    else
    copy (item f of my nomsChamps) & " :" & tab & valF & return to end of l_fiche
    end if
    end repeat
    end tell
    return my recolle(l_fiche, return)
    end readRecord
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) lundi 21 septembre 2009 15:32:47

  • Mandatory field in selection screen of pnp logical database report

    Hi experts,
         Im using pnp logical database in my report.
    It give the standard selection screen. I need to make some fields in the selection screen as mandatory like pnpwerks.
    How its possible. Give me some solution.
    Thanks,
    Priya.

    how about if u do this step
    1. Goto- Attribute.
    2. Click "Change"
    3. Click 'HR Report Category'
    4. Click 'Create Report Category'
    5. Click 'new entries' for careating Report Category
    5. Select newly create report category
    6. Click the folder 'Definition of Organizational Selection'.
    7. Click 'New entries'.
    8. Here you assign the required fields to be displayed, for eg pywerks - personal area.
    9. finally assign this newly created 'report category' in the screen you will get upon clicking 'HR report Category' button in the Program attribute screen.
    Hope this may help you.  I am not much into hr abap. but sharing the info which i am aware.

  • To make selection period mandatory in Logical Database Report

    Hi All,
    My report is using customized HR Report Category with selection period as Key Date.
    My requirement is to make Key Date as mandatory field and with default value as sydatum.
    Pls help .
    Regards,
    Nibha

    Hello,
    Although the selection screen will appear from the logical database you define, you can add your validation check at the event 'At selection-screen' to check if particular field is initial or not and give proper error message.
    Other way would be at the initialisation event use the following :
    loop at screen.
    if screen-name = 'P_NAME'.
    screen-input = '1'.
    endif.
    modify screen.
    endloop.
    Also at initialisation
    s_date = sy-datum.
    Regards,
    Mansi.

  • Change output of abap logical database report

    Hello
    I have an abap report that is using a logical database to display some fields.My problem is that i have to change it and display more fields for output ,how can i control this?
    Thank you

    Hi,
    We need to add the required (additional) fields to the internal table structure, fill the fields with relevant data and display them on the screen. How is the output fields related to using a LDB..?
    Can you explain me a little bit more on the below stmt?
    " I have an abap report that is using a logical database to display some fields."
    I am not clear in understanding the relation b/w 'using LDB' and 'fields in output'. I dont think the fields displayed in the output screen will be restricted while using a LDB. Pls correct me if i understood wrong.
    Thanks,
    teja.

  • Restoring pre-migration DPM Database - Reporting Tab issue

    Before migration, upgraded DPM 2010 to 2012 thru to 2012 R2. Took backup of database.
    Built new Windows 2012 R2, SQL 2012 SP1 & DPM 2012 R2. While database is blank, DPM seems to work fine.
    Restored pre-migration backup of DPM database over this new blank database. Most of DPM seems fine so far. Tape autoloader and attached disks are recognised and previous backups are all available. Protection Groups seem fine.
    Accessing the reporting tab causes MMC to quit with error.
    Description:
      AppName: mmc AppVer: 4.2.1205.0 ModName: mmc.exe
    ModVer: 6.3.9600.16384 StackHash: 9EAE70C3
    Problem signature:
      Problem Event Name: DPMException
      Application Name: mmc
      Application Version: 4.2.1205.0
      Module Name: mmc.exe
      Module Version: 6.3.9600.16384
      Exception Name: System.NullReferenceException
      Exception Point: Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView
      Other: 9EAE70C3
      OS Version: 6.3.9600.2.0.0.272.7
      Locale ID: 6153
    Event Log:
    An unexpected error caused a failure for process 'mmc'.  Restart the DPM process 'mmc'.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>0</Seq><TimeCreated>31/03/2014 10:37:37</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>NullReferenceException</ExceptionType><ExceptionMessage>Object
    reference not set to an instance of an object.</ExceptionMessage><ExceptionDetails>System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.DisplayAppropriateListView()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.CheckAccountStatusAndUpdateUI()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingUI()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingPage()</ExceptionDetails></FatalServiceError>
    Accessing reporting using Internet Explorer and the URL for Reporting in SQL seems Okay.
    Seeing as the database restore is the single factor that causes functionality to break I have been trying to ascertain what I might correct incside the pre-migration database.
    While the new machine has the same computer name, the accounts for services and SQL were changed in line with what was suggested/recommended by the setup comments I came across (domain accounts instead of local etc.) So there would be a discrepancy between
    the pre-migration security accounts and the new servers security accounts.
    Should I try and correct this specific issue and can anyone help with that (seeing as rest seems to be working okay)?
    OR
    Can you point me to the recommended steps that I should follow (post-restore) to get this setup working for reporting?

    You're not alone. I have the exact same issue (report tab results in MMC crash) after upgrading from DPM 2012sp1 to DPM 2012R2.
    I installed fresh windows 2012r2, then installed DPM 2012sp1, restored database, then upgraded to DPM 2012r2. Now I can't access the report TAB even though
    http://dpmserver/reports works just fine for viewing DPM reports.
    My error codes are identical to what you posted.
    Additionally, here is the crash log where I thought it was relevant to our situation:
    NORMAL ConnectToReportServerUrl: Try connecting with url [http://dpmserver/ReportServer]
     0D68 0938 05/07 21:18:58.102 42 Reporter.cs(2177)   NORMAL GetReportServerUrl: return [http://dpmserver/ReportServer]
     0D68 0938 05/07 21:18:58.133 42 Reporter.cs(255)   NORMAL  connected to the ReportServer :http://dpmserver/ReportServer/ReportService2005.asmx
    0D68 0938 05/07 21:18:59.915 42 Reporter.cs(396)   NORMAL There is no report in the rootFolderPath :
    0D68 0E30 05/07 21:18:59.930 09 AppAssert.cs(130)   WARNING ASSERT: (FileName:Reporting.cs; LineNumber:612)
    0D68 0E30 05/07 21:18:59.930 09 AppAssert.cs(130)   WARNING There is no DPM report deployed on the report server
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING Attempting to handle fatal error: System.NullReferenceException: Object reference not set to an instance of an object.
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.DisplayAppropriateListView()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.CheckAccountStatusAndUpdateUI()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingUI()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingPage()
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2012)   NORMAL Will  invoke Watson
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2102)   WARNING UI Thread Exception: System.NullReferenceException
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2109)   WARNING --------------------

  • ACS database reporting permissions issue

    Hi,
    I have an issue with my testing of the ACS reporting in two test environments (SCOM 2012 SP1). One has SQL installed on the same server as the MS and the other is a separate SQL install on its own server with multiple MS’s. On both SQL servers
    the ACS database is running on the same server as the other SCOM databases under an instance called SCOM. When we go live the intention is to run on a separate SQL server so not sure if this would still be relevant at that point.
    First off all my normal reports are running fine from the console and from SQL reporting services. My understanding is that the reports are running under different contexts at this point – the web reporting with the account I am logged in
    with and from within SCOM console trying to use the data reader account.
     When trying from the web reporting services or SCOM console I get -
    “An error has occurred during report processing. (rsProcessingAborted)
    Cannot create a connection to data source 'dataSource1'. (rsErrorOpeningConnection)
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote
    connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)”
    With regard to the account I am using for the web reporting. It’s a domain admin account. However what I also did was create a global security group called “SCOMACS” and gave this group “db_datareader” permissions within SQL.
    I also gave the data reader service account permissions to see if this fixed the issue from the console.
    Wonder if anyone could help?

    Hi,
    This seems more like a SQL issue, please make sure your database engine is configured to accept remote connections
    • Start > All Programs > SQL Server 2005 > Configuration Tools > SQL Server Surface Area Configuration • Click on Surface Area Configuration for Services and Connections • Select the instance that is having a problem > Database Engine >
    Remote Connections • Enable local and remote connections • Restart instance 
    Please go through the below blog to troubleshoot this issue:
    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server
    http://blogs.msdn.com/b/sql_protocols/archive/2007/03/31/named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server.aspx
    SQL SERVER – FIX : ERROR : (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server) (Microsoft SQL Server, Error: )http://blog.sqlauthority.com/2009/05/21/sql-server-fix-error-provider-named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server-microsoft-sql-server-error/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Hope this helps.
    Regards,
    Yan Li
    Regards, Yan Li

  • Java Database Reporting

    Hi All
    I am doing a CS assignment and need to print some reports from an Access database. Does anybody know of some free or very cheep software that can do this?
    I cannot spend ridiculous money on progs like Crystal reports since this is only a school assignment not a multinational enterprise project.
    I hope someone can help me.
    Hear from you soon.
    Comlink

    Check out SourceForge.net and look for JFreeReport or iReport under the Java Foundry.

  • Create separate PDF files from MS Access Database report field

    In the development or update of pipe specifications the valve specifications (database records) that are associated with the piping specification are updated or corrected.  These revised valve specifications are then exported as a group through the Access Report Print to PDF file with the piping specification name for the file name.  Each separate valve specification within this single file needs to have its own PDF Valve spec file name so that each valve spec can be attached to project engineering documents or for purchasing.  All of the valves are coded in the in the database and projects with this general description, V-?????? with each question mark representing a descriptive part of the valve.  MS Access database has this V-?????? field name for every valve record in this large database.  The current practice is extract from the single PDF file page thumbnails and rename every extracted file.  With over 1000 valve records being updated, the task is time consuming.

    These are the settings.

  • Database - Reporting

    Hi,
    Would anyone have any recommendations regrading running reports based on the data stored in an oracle database. We will soon go live with a project using an oracle DB. We do not wish to run reports directly from the production DB as it will impact performance. Is there any recommended method/architecture for reporting suggested by oracle for this type of scenario?
    One idea is too runs some scripts that will write the data to another database and from there we will runs out reporting queries. Are there any other potential solutions?
    Many thanks,
    Ro

    user5780461 wrote:
    Hi,
    Would anyone have any recommendations regrading running reports based on the data stored in an oracle database. We will soon go live with a project using an oracle DB. We do not wish to run reports directly from the production DB as it will impact performance. Have you actually measured the impact? If not, you are just making assumptions that -- lacking any other informatin -- appear to be invalid.
    Is there any recommended method/architecture for reporting suggested by oracle for this type of scenario?
    You make it sound like some unusual scenario. What you've described so far (running reports against an OLTP database) is just bread and butter operations for Oracle.
    One idea is too runs some scripts that will write the data to another database and from there we will runs out reporting queries. Are there any other potential solutions?
    And how does reading the data to insert into some other database cause less contention than reading data for a report?
    >
    Many thanks,
    Ro

  • Listener suddenly looses connection to database reporting ORA-12518

    Hi all,
    This has been causing me endless problems for two days now and I desperately need to leave our database running before the weekend. I cloned our database and moved it to a new server following the instructions in this guide, after a quite a few attempts I finally managed to recreate the control files and startup the database but now it keeps crashing unexpectedly.
    The database starts up fine and both the listener and our application are able to communicate with it but after 10-15 minutes, the listener will report ORA-12518 and the only errors I can find are in the clsc.log and css.log, these state;
    2012-03-23 12:21:03.312: [ default][2004]ut_read_reg:2:ocr registry key SOFTWARE\Oracle\olr cannot be opened. error 2
    [CLSE][2004]clse_get_crs_home: Error retrieving OLR configuration [0] [Error opening olr registry key. The system cannot find the file specified.]
    and
    2012-03-23 14:36:37.523: [ GIPCNET][5384] gipcmodNetworkAsyncComplete: [network] error for endp 0C3BCA10, req 0C3BE270, type sgipcnreqtypeConnect (1), data 00000000, sret sgipcretConnectionRefused (28)
    2012-03-23 14:36:37.523: [ GIPCNET][5384] gipcmodNetworkAsyncComplete: slos op : sgipcwWait
    2012-03-23 14:36:37.523: [ GIPCNET][5384] gipcmodNetworkAsyncComplete: slos dep : The remote system refused the network connection. (1225)
    2012-03-23 14:36:37.523: [ GIPCNET][5384] gipcmodNetworkAsyncComplete: slos loc : GetQueueComp
    2012-03-23 14:36:37.523: [ GIPCNET][5384] gipcmodNetworkAsyncComplete: slos info: failed for over 0C3BDCC8
    2012-03-23 14:36:37.523: [ CSSCLNT][5384]clssscConnect: gipc request to clsc://(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=61100)) failed with 29 (00000013)
    2012-03-23 14:36:37.523: [ CSSCLNT][5384]clsssInitNative: connect to (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=61100)) failed, rc 29
    The content of my listener.ora is
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\Oracle\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
         (ENVS="EXTPROC_DLLS=ANY")
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\Oracle\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS="EXTPROC_DLLS=ANY")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
         (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 158.41.215.112)(PORT = 1521))
         (ADDRESS_LIST =
              (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    DEFAULT_SERVICE_LISTENER = (PVSSRDB)
    and my tnsnames.ora is
    PVSSRDB =
    (DESCRIPTION =
         (ENABLE=BROKEN)
         (ADDRESS = (PROTOCOL = TCP)(HOST = 158.41.215.112)(PORT = 1521))
         (CONNECT_DATA =
         (SERVICE_NAME = PVSSRDB)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
         (SID = PLSExtProc)
         (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    I would appreciate any advice you can offer on this issue...
    Edited by: JonathanR on 23-Mar-2012 07:53

    ocr registry key SOFTWARE\Oracle\olr cannot be openedDoesn't appear to be an XE install, just judging from your OH path but perhaps we can help anyways. And looks like CRS, cluster services, I don't have much practice on using that feature.
    Wondering about the localhost:port at 127.0.0.1:61100 entry in listener.log, if you have multiple NICs or multiple ethernet interfaces set up, it might be trying to talk on the wrong interface. Verify the IP address. Which OS? Win7? XP? Server 2008? 2008R2?
    Please post your ifconfig output, maybe there's a VPN adapter or another interface getting in the way.
    $ ipconfig /all
    ... Ethernet adapter Local Area Connection: ...
    ... IP Address ... : 158.41.215.112
    $ hostname
    ... -> <hostname>
    $ nslookup 158.41.215.112
    ... -> hostname[.domain?]
    $ nslookup <hostname>
    ... ->158.41.215.112 (?)
    $ nslookup <hostname>.<domainname>
    ... -> 158.41.215.112 (?) An ora-12518 usually indicates a resource problem- low memory, process unable to start, something along those lines. How large is your SGA+PGA, and how much physical memory, and pagefile size, on the host?
    Edited by: clcarter on Mar 23, 2012 12:25 PM
    add -12518 note

  • Business Objects Enterprise and publishing Access Database reports

    Hi,
    I have searched the forum but cannot find anything to help me so any help would be appreciated
    I have an access database on a shared drive that I want to publish a report for.
    On the BO server I created a system DSN to the database through a mapped drive.
    I use the publishing wizard to configure the report but I am getting the following error when I try and run the report:
    Unable to connect: incorrect log on parameters. Details: [Database Vendor Code: -1023 ]
    I have also gone in on the Business View Manager and created the connection and it connects successfully.
    I have successfully published Sybase and SQL reports but I just cannot get the connection to the Access Database to work.
    Thanks in advance,
    Sinead

    Try using UNC to point to the database.  In other words,
    servername\sharepoint.
    Also, make sure the service account of the server processing the report (I don't think you mentioned what type of report it was) is running under a domain user account that has access to the share (rather than the default local system).  You can set this in the CCM.

Maybe you are looking for