OBIEE 11 g, Nq server file system - is quickly filling up

Hello

We must work on the project of Migration OBIEE 10 g and 11g. Reports that are run very well in 10g are fill the Nq 11 g and error causing server file system.

Configuration DB - OBIEE 10 g - current 11i.

New Configuration - OBIEE 11g - 12 DB

QL Server space is same in both configurations. and the report is exactly the same in the environment.

There is a report that works very well in 10g is now generation huge file to the NQ server to 11g. If several users are running this report, with different parameters, it server NQ fills up quickly and causes the error.

We have checked logical queries, they are exactly even.

Physics questions, is slightly different but the result is exactly the same.

Ideas or guidelines to debug this problem.

Kind regards

GHE.

The solution was about length of database column.

Tags: Business Intelligence

Similar Questions

  • Content server file system path Variable

    Y at - it a variable available that displays the installation path of the Content Server file system... which is c:\stellent\ucm

    Thank you!

    If you look at the IdocScript guide, you see the one relative to the variable "IntradocDir":
    "
    Type and its use
    -Configuration Variables (page - 3)
    -Directories and paths (page - 18)
    Description
    Sets the path to the content server installation directory.
    -It has no default value.
    Location
    -Content server: /bin/intradoc.cfg
    -Server Administrator: /admin/bin/intradoc.cfg
    Example of
    Used as a configuration entry:
    IntradocDir = c: / stellent.
    "

    Thus, this variable is not set!
    You can set it and then you will be able to keep it in all your scripts idoc...
    Why do you need to get this way?

    Roman.

  • Image: poster of local disk, download server and display the server file system

    Hello

    I use jdev 11.1.2.4.0...

    The requirement is that users want to upload images to their local drive for the drive on the server and they would like display of server disk images later.

    We do not want to save the images in the database. I'm not sure what should be the solution; However, I intend to...

    1 create a table to keep information from images - image_id, image_location (server drive), image_filename

    2. create a page where users can enter image information and specific file on a local disk name (I think I'll use inputFile component) and provide the Preview button to display an image on the screen before saving. To record data is to save the information in the database and copy an image file on the disk on server (the location for image files is predefined.)

    3. create another page where users can browse the database information and display an image for a selected record getting from the server.

    I need suggestions on...

    1. how to display an image on the page of the local drive?

    2. how to copy a file on a local disk to a server?

    3. how to display an image on the page of the drive on the server?

    Thank you.

    NAT

    See:

    http://tompeez.WordPress.com/2011/11/26/jdev11-1-2-1-0-handling-imagesfiles-in-ADF-part-1/

    http://tompeez.WordPress.com/2011/11/26/jdev11-1-2-1-0-handling-imagesfiles-in-ADF-part-2/

    http://tompeez.WordPress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-ADF-part-3/

    When Timo records the images in the database, you save it in the file system (examples on how to do this Java are available much if you just Google for it). Similar to Timo you then use the tag image to display pictures. The difference is that you can directly add the URL of the database table.

    The advantage of using a database to host images, it's that you're not although dependent on files server structures

    Frank

  • Application server file system permissions

    I run my application on Oracle Application Server and at one point that the application must read and others to write some files to remote paths. Still, it fails with the error "access denied." With local path that it works fine, the same error occurs with the network drive mapped. The same exactly app would be fine works of JDeveloper10g (on built-in oc4j that is).
    The operating system is Windows XP, JRE 1.5, Application Server 10 g.
    Any help is very appreciated!

    Hello

    If the Application Server HTTP server is started as a service, make sure that it starts with a user account with permission to the network and writing. However, appears not to be a JDeveloper problem and, therefore, the question must be poszed the Forum of OracleAs, not here

    Frank

  • Can I set up for Dreamweaver credentials to authenticate to a htaccess on the server file system?

    Hi all! I try to keep my site secure all developing. I like the Live View feature in Dreamweaver, but if I put in place a htaccess file on my server, Dreamweaver can't seem to manage authentication. Any thoughts? If this is not possible, what are the best ways to keep access to a secure Web site and restricted all developing?

    You develop on the external server? Most of us develop on our local machines and then download the files (FTP) the published to the external server.

    I don't know what you're trying security restrictions. You try to password protect the external website during development? And you use the htaccess method?

    Normally the LINUX permissions are set to allow anyone to view your Web site but not make any changes to the file. Your FTP user account has permission to make changes to the file. This has nothing to do with htaccess.

  • File system / OS

    When you review the security of your Oracle DB, someone of you focus on operating system / database server file system security, or focus only on the configuration of the DB and patch levels itself? If review you the file system / OS is all focus you on specific areas or best practices you can provide? Or any OS/FS common level results, you tend to come through this require (d) speaking... Our DB server running Linux... If someone "compromised" or obtained on the server Linux base (or root), what is the potential impact of your Oracle DB?

    Files of data Oracle can have any name. You can call them "fred" and "mary" If you want to. Most DBAs would use ".dbf" extension, but this is not guaranteed.

    To find "select nom_archive from dba_data_files.

  • How to download files from the database file system.

    Hello everyone.

    I m trying to do a procedure to download a PDF file that is stored in the file system of the server of the database and not inside the database. The established procedure is the following:


    create or replace
    PROCEDURE PRT_PR_DOWNLOAD_FICH (v_file_name VARCHAR2
    )

    AS

    V_LENGTH number;
    Lob_loc Bfile;

    BEGIN


    Lob_loc: = bfilename ('DIR_OBJ', v_file_name);
    V_LENGTH: = dbms_lob.getlength (Lob_loc);

    owa_util.mime_header ("application/octet ', False");
    HTP.p ("Content-length: ' |") v_length);
    HTP.p ('Content-Disposition: attachment; filename = "" | ") SUBSTR (v_file_name, INSTR (v_file_name, ' /') + 1) | '"');
    owa_util.http_header_close;
    wpg_docload.download_file (Lob_loc);


    END PRT_PR_DOWNLOAD_FICH;


    This procedure receive the name of the file to download and use the wpg_docload.download_file () function. The DIR_OBJ is a directory with path from the server to the folder that contains the files I want to download.

    When I run this procedure I get the error: "Internal Server Error".

    Can someone tell me what I am doing wrong and if it is the best way to download a file directly from the database server file system?

    Hello Pedro,

    Just out of curiosity, I tried your example ;-) It works very well in my environment! (Oracle 10g with OSH and Apex 3.1.2
    But: I had to grant READ permissions on my directory object to APEX_PUBLIC_USER!

    (1) I created a "test.txt" document in the directory corresponding with my EXPDIR directory object. 'Oracle' user needs read on the file & document permissions!

    (2) give APEX_PUBLIC_USER necessary READ rights on the directory object:

    grant read on the directory expdir to apex_public_user;

    (3) create the procedure:

    CREATE OR REPLACE PROCEDURE MATTHIASH. PRT_PR_DOWNLOAD_FICH (v_file_name VARCHAR2)
    AS
    V_LENGTH number;
    Lob_loc Bfile;
    BEGIN
    Lob_loc: = bfilename ('EXPDIR', v_file_name);
    V_LENGTH: = dbms_lob.getlength (Lob_loc);

    owa_util.mime_header ("application/octet ', False");
    HTP.p ("Content-length: ' |") v_length);
    HTP.p ('Content-Disposition: attachment; filename = "" | ") SUBSTR (v_file_name, INSTR (v_file_name, ' /') + 1) | '"');
    owa_util.http_header_close;
    wpg_docload.download_file (Lob_loc);

    EXCEPTION
    WHILE OTHERS THEN
    HTP.p (substr (dbms_utility.format_error_stack (): dbms_utility.format_error_backtrace (), 1, 4000));
    END PRT_PR_DOWNLOAD_FICH;
    /

    (4) Grant execute rights on APEX_PUBLIC_USER of this procedure:

    GRANT EXECUTE ON MATTHIASH. PRT_PR_DOWNLOAD_FICH TO APEX_PUBLIC_USER;

    (5) Finally, try if download document works well:

    http://: 7777, pls, apex, MATTHIASH. PRT_PR_DOWNLOAD_FICH? v_file_name = test.txt

    I would like to know if it works!

    HTH
    Matthias

  • How/where are the financial reports stored on the file system of the server?

    We recently lost a large part of our reports on our server. We cannot understand what the restore directory location in order to get these reports back. Where is the default directory for 11.1.2.2 financial reports? And in what format the reports are being saved?

    EN reports can be found in the file system of the operating system (o/s), but the EMP workspace hierarchy (folders, tree, etc.) are stored in the database of repository Hyperion bi +.

    On the system of operating system files, the reports are stored in RM1 folder under folder "C:\oracle\Middleware\user_projects\epmsystem1\ReportingAnalysis\data\RM1\root".

    The names of the reports placed here are UUID (identifiers of long - not the actual names).

    For example:

    When a report is created with the name 'My report' in Studio Financial Reporting, by connecting to the EMP workspace will be available in the name of financial reports/folder where it was saved.

    the actual report will be stored in a subfolder of the RM1\root folder on the file system.

    The file name will be a unique identifier (not the real name of the report is 'my report')

    It will be generated 'on the fly' based on various things such as the date and time on the server (i.e. 0000012f5af72b1a-0000-ec71-c0a8006c.00000130510b77bb-0000-5133-c0a8006c.1)

    The meta-data for this report ('My report', that is in the folder in the workspace, the date of the change of the report, permissions on this report, etc) will be stored in the Hyperion bi + DB as an object in an encrypted table. Financial reporting knows what metadata in the Hyperion bi + DB which corresponds to the report, in the file 'RM1\root' because all rows in the table for that object in the Hyperion bi + PB related to 'My report' will be referenced using the UUID of the file (for example 0000012f5af72b1a-0000-ec71-c0a8006c.00000130510b77bb-0000-5133-c0a8006c.1)

    Note: The location of the folder of RM1 differs with each facility's operating system.

  • Use Peoplesoft 8 for our accounting systems and when I go to open a doc (tiff on a shared server file) link, it says that I am not authorized to view the page.

    Use Peoplesoft 8 and when I go to open a doc (tiff on a shared server file) link, it says that I am not authorized to view the page.

    You authenticate (log in) to access this TIFF file?

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".
  • file system on cRIO9014?

    HI @ all

    I'm looking for info on the file system that works on my cRIO9014, the system includes the following components installed:

    • LabVIEW time real 9.0.1

    • Web server for LabVIEW RT 2.0.0

    • Network Variable engine

    • NOR-RIO 3.4.0

    • NI-VISA 4.6.2

    • NI-VISA 4.6.2 Server

    • Run the engine for web services 2.0.1

    • Editor of State system 1.1.0

    • Customer support variables for labview rt 1.6.1

    I would like to know what file is generated and where is it end when I deploy my RT - App?

    Thanks for your help

    Hello Thomas,.

    Have you seen the RT system replication tools (http://zone.ni.com/devzone/cda/tut/p/id/3937)?

    I have not used it myself, but based on the Dev box article, you should be able to make and store a number of different images that can then be deployed in your cRIO targets.

    Sebastian

  • FPGA - Successful Compilation but error 89: full file system

    Hello friends,

    at the end of my last compilation of the server compile reported an 89 error: complete file system. Anyone know what is the file system?

    Maybe the Flash to the bitfiles? But this will be erased automatically with each new download bitfile.

    Note that the compilation was successful and only 89% of the slices when used. Therefore, it remains the space available (FFs and LUTs).

    Finally are there limitations on the use of IO-nodes or FIFO?

    Material: cRIO 9002 with 9101 FPGA Chassis.

    Thank you for helping.

    Marco

    Hard drive was out of free space. After the liberation on 100Mbytes, there was enough space to compile successfully.

    Thank you

    Marco

  • Distributed replication of file system between servers with different performances

    If the published file system replication is set between servers with different performances. What will happen with the fastest server performance? The performance will shrink to match the performance of the server in the slower string?

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

  • a few questions on file systems that were used in the past or present in windows, mac, linux.

    Hello

    1. I see that in the past was also file system VFAT was used.  but I've never heard of this file system until today. is it now used in any system?

    2. I see Linux a ext4, ext3, ext2, files systems, but where is been used or were using reiserFS file system?

    3. also I have a question hfswrapper , I know that mac use hfs, hfs + and hfsx file system, but where is served hfswrapper file system

    very short explanation wil suffice.

    Thank you

    Johan

    Use Google to search for it.

    What is a short explanation?

  • need help to program deleted / 32/rundll.exe file system

    need help with deteleted system32/rundll.exe.files

    Hello

    ·         What is the full error message?

    ·         Were there recent changes made on the computer before the show?

    Follow these steps and check if that helps:

     

    (a) put the CD ROM of Windows XP disc into the CD-ROM drive.

    (b) click Startand then click run.

    (c) type expand X: \i386\rundll32.ex_ c:\windows\system32\rundll32.exe in the Open box, where X is the letter of your CD drive.

    (d) restart the computer.

    You can also try System File Checker analysis to repair missing files or damaged in Windows XP.

    Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe)

    http://support.Microsoft.com/kb/310747

  • I had the virus 'file system' I ran most of MS who removed it... then the screen turned gray and all the icons and files have disappeared... I can't use restore even in safe mode

    I had the virus 'file system' and ran the Microsoft Essentials who kidnapped... Then the screen turned grat and all my tyop desktop icons disappeared and my files... I tried to use the restore but it wouldn't return back or in SafeMode... also, I get a notice that the Task Manager is disabled? How can I turn back?

    Hi David McGeady.

    ·         You are able to open in safe mode Task Manager?

    Follow these methods.

    Method 1: Scan the file system (CFS) auditor to repair corrupted files.

    Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe)

    http://support.Microsoft.com/kb/310747

    Method 2: It seems that the virus is still there. Performs a search using the Microsoft safety scanner.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: If bad sectors are found in the hard drive, then it could try to fix this particular sector. If you have any data on that, it can get lost.

    Method 3: Create a new user account.

    How to create and configure user accounts in Windows XP

    http://support.Microsoft.com/kb/279783

    If the problem is resolved in a new user account, and then follow the article on how to fix a corrupted user account.

    How to copy data from a corrupted to a new profile in Windows XP user profile

    http://support.Microsoft.com/kb/811151

Maybe you are looking for

  • Network Conncxtion has expired... Im confused!

    I tried updating my iphone software and the process ends, but just as it is finialising I get a message that says "There is a problem downloading the software for the iphone... The network connection timed out Make sure your network settings are corr

  • E260v2 the display is in mirror image.

    I got this e260v2 more than five years and it worked fine. All of a sudden the screen is mirror image. While everything else seems to be functional, it's annoying to have to check the screen in a mirror to see what he says. I tried the reset from the

  • CCC, ATI Catalyst Control Center question.

    By mistake, I uninstalled something and kept getting the error message from host to ATI CCC.  I then installed AMD CCC, and now I can't install and Save Big Game Fish or other things, where - as before my error I might play with a small screen size. 

  • How to fix vista. Error Emulation.dll

    How to fix vista. Emulation.dll error my computer says it is missing and I need to reinstall, need help

  • PowerEdge 2950 HARD 500 GB SAS [MS] drive

    Abbiamo UN PowerEdge 2950 Codice di matricola: |Codice di servizio rapido: Per questo Server above serve disco UN auswechseln: Seagate 500 Gb SAS 7.2 Potete fornirlo Potete inviarmi offerta al mio address e-mail: [email protected] Refere