OBIEE 10 g: Promoted filter does not use BETWEEN operator in SQL

I have a prompt with operator control and Calendar is between . During the initial loading a sql report uses the BETWEEN operator in SQL very well (because is invited filter). But when a new date is selected and click on GO, it shows < = operator in the SQL instead.

Expected:

AND T9610. "" calendar_date "between CONVERT(DATETIME, '2015-01-15 00:00:00', 120) AND...

Actual result:

AND T9610. "" calendar_date "< = CONVERT (DATETIME, ' 2015-01-15 00:00:00 ', 120)

We are moving from Windows server 2003 to 2008. Our development app. works very well, it always uses the BETWEEN operator. but our new production and uat approx. has this problem. I confirmed the sub elements between environments.

RPD

Catalog

Version 10.1.3.4.2 (Build 110727.2045)

InstanceConfig.Xml

DBFeatures.ini

NQSConfig.ini

SQL Server 2008 R2

Windows Server 2008

My research of existing patches show everything to be due to my problem. What else could be missing?

Turns out that I have wrong set of resource files (res folder), they'RE pointing to. Once I directed to the other game that worked.

Tags: Business Intelligence

Similar Questions

  • OBIEE - SQL Expression filter does not at all - shows SQL but no result

    IM at my wits end for this

    I have a report where I use a filter with a simple SQL expression
    cast ( timestampadd(SQL_TSI_YEAR, -1, Cast(Cast(DATE '@{pv_as_of_date}{2013-04-01}' AS CHAR) AS TIMESTAMP) ) as DATE)
    If an end user can enter a date and it is passed into the filter through a variable

    pv_as_of_date

    This is set by default to 2013-04-01

    I want to subtract 1 year to make the final result

    2012-04-01

    When I run the report I see two problems

    (1) for displaying the filter at the bottom, I see the complete SQL code. This should not show that the returned date? In this case the filter should not show 2012-04-01?

    (2) the filter does not yet that is my biggest problem

    I tested the code above in a column and I KNOW the date is returned as expected

    But when I use the same SQL code in the filter then it does not work

    Am I missing some special button somewhere to allow SQL expressions?

    Any help hugely appreciated

    I don't see anything wrong in the expression, but when you might have questions

    Criteria over time. "' Academic year Desc" column-> filter-> Advanced-> convert it to SQL
    and use this expression.

  • View does not use index Mview underlying but mview uses indexes

    Hello

    I faced a situation where, while querying data to display based on mview does not use the index, but when we wonder of mview it uses index and produce quick results.

    Here are the details:

    
    querying from view: (completes in more than a minute even after passing hint)
    ================================
    explain plan for select /*+ index(  ITGI_CREDITOR_LEDGER_CMV ITGI_CREDITOR_LEDGER_INDX) */ * from CR_LEDGER_REP_V where vendor_id='1474911';
    
    Plan hash value: 463951623
    
    ---------------------------------------------------------------------------------------------------
    | Id  | Operation              | Name                     | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT       |                          |  9056K|  5648M| 97644   (1)| 00:00:04 |
    |*  1 |  VIEW                  | CR_LEDGER_REP_V          |  9056K|  5648M| 97644   (1)| 00:00:04 |
    |   2 |   COUNT                |                          |       |       |            |          |
    |   3 |    MAT_VIEW ACCESS FULL| ITGI_CREDITOR_LEDGER_CMV |  9056K|  2159M| 97644   (1)| 00:00:04 |
    ---------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - filter("VENDOR_ID"=1474911)
    
    
    
    Querying from mview: (completes within a second)
    ==============================
    
    explain plan for select /*+ index(  ITGI_CREDITOR_LEDGER_CMV ITGI_CREDITOR_LEDGER_INDX) */ * from ITGI_CREDITOR_LEDGER_CMV where vendor_id='1474911';
    
    
    Plan hash value: 1726512073
    
    --------------------------------------------------------------------------------------------------------------------
    | Id  | Operation                              | Name                      | Rows  | Bytes | Cost (%CPU)| Time     |
    --------------------------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT                       |                           |    21 |  5880 |    21   (0)| 00:00:01 |
    |   1 |  MAT_VIEW ACCESS BY INDEX ROWID BATCHED| ITGI_CREDITOR_LEDGER_CMV  |    21 |  5880 |    21   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN                     | ITGI_CREDITOR_LEDGER_INDX |    22 |       |     3   (0)| 00:00:01 |
    --------------------------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("VENDOR_ID"=1474911)
    
    
    
    View DDL
    ========================
    
    CREATE OR REPLACE FORCE VIEW SANJAY.CR_LEDGER_REP_V
    (
       QRY,
       SR_NO,
       VENDOR_ID,
       VENDOR_TYPE,
       VENDOR_NUMBER,
       VENDOR_NAME,
       VENDOR_SITE_ID,
       VENDOR_SITE_CODE,
       GL_DATE,
       ACCOUNTING_DATE,
       PO,
       INVOICE_TYPE,
       AP_INVOICE_NO,
       INVOICE_DOC_CAT,
       AP_INVOICE_DATE,
       INVOICE_VOUCHER_NO,
       PAYMENT_VOUCHER_NO,
       CHQ_NO,
       DESCRIPTION,
       PAYMENT_DATE,
       ACC_CODE,
       PAYMENT_METHOD,
       CURR_CODE,
       DEBIT,
       CREDIT
    )
    AS
       SELECT qry,
              ROWNUM srn,
              vendor_id,
              vendor_type_lookup_code,
              vendor_no,
              vendor_name,
              vendor_site_id,
              vendor_site_code,
              gl_date,
              accounting_date,
              po_distribution_id,
              invoice_type_lookup_code,
              invoice_num,
              doc_category_code,
              invoice_date,
              inv_voucher_num,
              payment_num,
              check_number,
              description,
              pay_accounting_date,
              account_code,
              payment_method_code,
              invoice_currency_code,
              debit,
              credit
         FROM sanjay.itgi_creditor_ledger_cmv;
    
    
    
    

    The plan does not change even if I do not use advice.

    Although I said developer to use mview directly, but I did not understand this behavior.

    DB version: 12.1

    OPERATING SYSTEM: AIX 6.1

    Kind regards

    Gerard

    Note that the query on the view plan is only to apply your filter predicates on line 1, rather than against the mview in line 3. Line 2 said you that enforcement must correspond to a kind of County before it can filter which is due to the virtual rownum in your point of view.

    You need this column? In my opinion, it's meaningless. Remove the column from the view would mean that the view doesn't have to be assessed in its entirety (if not, how it will calculate rownums?) before allowing you to filter. You asked the developer to implement the work is likely to come with a different value of sr_no (if the developer is even using it?) than what he would have obtained by using the view.

    The column tries to catch a unique key for the view? Are you aware that rownum values can and will change between requests to the same table as the order lines are selected is not guaranteed. If the column is actually useful (and it is correct to calculate at this level) you then could it sense it is calculated inside the mview? This means that you can only refresh the mview completely and rownum values can (and will) only change on refresh.

  • Question of Safari and Chrome. indicates on the navigation screen. "An element of the Protection of the family filter does not work as expected. Restart your computer. If the problem persists, contact support.  Error: failed to hose CPI. »

    Question of Safari and Chrome. indicates on the navigation screen. "An element of the Protection of the family filter does not work as expected. Restart your computer. If the problem persists, contact support.  Error: failed to hose CPI. »

    Quit Safari, Chrome to quit smoking. If necessary Forcequit.

    Start Safari while holding the SHIFT key, select the menu Safari ClearHistory, then after this check that the homepage is the one you want.

    Do the same for Chrome.

    Close all browsers, restart the mac.

  • part of the screen lack sound as if all type of himself downplayed a little and does not use the entire screen

    I have a dell studio with vista, I shot it today and the far right 1/4 of my screen has disappeared, its like everything kind of himself downplayed a little and does not use the entire screen. I didn't change anything or add programs. someone has an idea?

    Hi musicwatkins


    Did you the latest changes on the computer?

    You can check if changing the resolution of the screen helps you solve the problem. See below for links-

    http://Windows.Microsoft.com/en-us/Windows-Vista/change-screen-resolution

    http://Windows.Microsoft.com/en-us/Windows-Vista/getting-the-best-display-on-your-monitor

     

    You can also check if the setting parameters of monitor, referring to the manual of the monitor will help you.

     

    I hope this helps.

  • Firewall Windows does not use recommended settings

    Firewall service Windows is not running: does not use recommended settings

    Firewall service Windows is not running: does not use recommended settings

    Please specify:
    > windows firewall service is not running
    > does not use recommended settings

    If it running or NOT?
    Which of the above is the problem?

    RE: windows firewall service does not

    Start button > in the search box, type services > press the Enter key > scroll down to Windows Firewall and click on it...
    under the State column, it must be said... started
    under the Startup Type column, I must say... Automatic

    If it does not say that, right click on Windows Firewall > click Properties > make the changes.

    RE: does not use recommended settings

    Start button > in the search box, type windows firewall > looks upward at the top on the left, click on Windows Firewall > click on change settings > put on a blue radio point (recommended) level > OK for the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • If I buy a used PC that does not have an operating system or OS disc, still has the label of license for windows can download Microsoft windows?

    If I buy a used PC that does not have an operating system or OS disc, still has the label of license for windows can download Microsoft windows?

    N ° you must contact the manufacturer of the computer and asking for a disc of recovery/reinstallation of Windows. Carey Frisch

  • 0 x 80070422 windows firewall does not use recommended settings to help protect your computer

    Hello, I kepp getting this firewall of windows message 0 x 80070422 does not use recommended settings to help protect your computer,.

    Whenever I click on the recommended use of the parameters, it gives me this code. I ran virus and malware scans and I foud more but now they have been removed. But still, I'm afraid that I don't have a wall of fire and that anthing can pass through.

    If anyone can give me some advice it would be greatly appreciated.

    Marko7

    Hello

    Run an online scan to check any virus or any other malicious software:
    http://OneCare.live.com/site/en-us/default.htm

    and see here

    Error code 0 x 80070422 cannot activate the firewall

    I would like to know if this helps
    Elvis

  • Tablespace does not use a certain data file

    Hi all, I am new to Oracle DB. Reported by developer that storage space is full, and then I found that there are two data files associated with the storage space by checking dba_data_files. The first data file size is already full of 32GB, and the second is 8GB. However, it seems that the tablespace does not use the data file second when I check the free space of the tablespace because I cannot find its use. That's why Oracle DB shows ORA-01654 and tell me to add another data file. I fix this by adding another data file. But I'm just wondering why it seems that the tablespace does not use the second data file, I checked the status of second in the data file is online of v$ datafile. Could someone give me an idea about this problem? Thank you very much.

    c115bca7-E432-460f-a0c5-273b2157dcbe wrote:

    Hi all, I am new to Oracle DB. Reported by developer that storage space is full, and then I found that there are two data files associated with the storage space by checking dba_data_files. The first data file size is already full of 32GB, and the second is 8GB. However, it seems that the tablespace does not use the data file second when I check the free space of the tablespace because I cannot find its use. That's why Oracle DB shows ORA-01654 and tell me to add another data file. I fix this by adding another data file. But I'm just wondering why it seems that the tablespace does not use the second data file, I checked the status of second in the data file is online of v$ datafile. Could someone give me an idea about this problem? Thank you very much.

    1 cause the second data file - is not activate with auto-extend and its fixed size, 8 GB, which could deliver the extensions are not free - filled and that you may not able to find any free extends from dba_free_space
    2. Please activate auto extend for this data file and add the new data file based on space allocation.

    -Pavan Kumar N

  • Can I create a web database search that does not use Javascript?

    Can I create a web database search that does not use Javascript?

    While it would be possible to do it through custom coding, this type of web database search would not supported by Eloqua.

  • the chest x-ray: this filter does not work with Dreamweaver CC 2015.

    < HTML >

    < Head >

    < title >

    Filters 3

    < /title >

    < / head >

    < style >

    IMG

    {

    filter: xray();

    }

    < / style >

    < body >

    < Img src="file:///E:/Pratibha%20%20Pics/Aishwarya%20Rai/super-sexy-

    "Aishwarya-rai - wallpapers_4354.jpg" >

    < / body >

    < / HTML >

    the chest x-ray: this filter does not work with Dreamweaver CC 2015.

    IMG {}

    filter: xray();

    -webkit-filter: invert(100%) grayscale(100%);

    filter: invert(100%) grayscale(100%);

    }

  • Lightroom does not use my gpu and it says it is compatible, and the driver is updated, what do I do now?

    Lightroom does not use my gpu and it says it is compatible, and the driver is updated, what do I do now?

    As far as I could see, your card supports OpenGL 3.2 only that OpenGL 3.3 is necessary.

  • Why color Temp does not use theory standard blackbody in lightroom?

    Hi all, I would like to ask a question. Why the temperature in Lightroom does not use theory standard blue witch bsigns black body for higher values and the red ones for lower values on the kelvin color temperature scale?

    I'm not a novice and a motion graphic designer and 3D generalist and I do not understand why the Lightrooms does not use the normal scale. You go to a 3D ap and if you are familiar with lightroom you will have some problems whit lighthning because in all the 3d points and from what I've seen other counters aps use the kelvin color temperature values, higher values are asigned to blue spectrum. For example, with a bulb (D65) of natural light has a value of 2700 Kelvin is the red color red but in lightroom is on the opposite side and 2700 you have a tint of blue. I personally find very annoing this approach and I would like to ask Adobe if they could put an option to change the color temperature scale Kelvin standard.

    Thank you

    http://en.Wikipedia.org/wiki/Color_temperature

    Cursors do not set the light black body temperature, but compensation requested the image to compensate for the temperature of the black body of light.  This is going the other way.

    If a picture is taken in tungsten (light that is yellow-ish), we always want to look white 'white' when view us on a screen (as our eyes compensate for the color temperature of the ambient lighting).  To adjust to the lighting low temp black body (i.e. yellow-ish), so we want to make the image more blue, so it does not yellow.  Until the lower part of the blackbody temp lighting (i.e. more yellow enlightenment), the more blue the compensation that we must apply.

  • ORA-16797: database does not use a server parameter file

    I can see newspapers apply pending data. But in the dataguard alter journal generates error ORA-16797: database does not use a server parameter file

    Error message in the logfile dataguard
    -----------------------------------

    DG 2010-03-23-17: 0 2 714415739 MICHAEL 46:45: GET_DRC finished
    DG 2010-03-23-17: 714415740 3 1000000 MICHAEL 46:45: GET_SITE: success. (len = 464)
    DG 2010-03-23-17: 714415740 3 1000000 MICHAEL 46:45: GET_SITE finished
    DG 2010-03-23-17: 2000000 3 714415741 MICHAEL 46:45: GET_SITE: success. (len = 481)
    DG 2010-03-23-17: 2000000 3 714415741 MICHAEL 46:45: GET_SITE finished
    DG 2010-03-23-17: 0 2 714415742 MICHAEL 46:45: CTL_GET_STATUS sent to the ANZPRD site for treatment
    DG 2010-03-23-17: 0 2 714415742 MICHAEL 46:45: CTL_GET_STATUS finished
    DG 2010-03-23-17: 47:32 0 2 0 RSM0: HEALTH CHECK ERROR: ORA-16797: database does not use a server parameter file
    DG 2010-03-23-17: 47:32 0 2 704706097 CTL_GET_STATUS operation cancelled during phase 1, error = ORA-16797
    DG 2010-03-23-17: 47:32 0 2 704706097 CTL_GET_STATUS operation cancelled during phase 1, error = ORA-16797

    QL > SELECT MAX(SEQUENCE#), THREAD # V$ ARCHIVED_LOG GROUP THREAD #;

    MAX(SEQUENCE#) THREAD #.
    -------------- ----------
    2, 2000
    2060 1

    I did the steps

    Create spfile pfie
    Shutdown
    Started by spifile

    No luck. Journal of applied began. but I see the same error in the datagurd log file

    Here's what it should look like:

    SQL> show parameter pfile
    
    NAME_COL_PLUS_SHOW_PARAM                                                         TYPE
    -------------------------------------------------------------------------------- ------
    VALUE_COL_PLUS_SHOW_PARAM
    ---------------------------------------------------------------------------------------
    spfile                                                                           string
    C:\ORACLE\PRODUCT\11.1.0\DB_1\DATABASE\SPFILEORABASE.ORA
    SQL> 
    

    My guess is that the file is not in the right place. Check the location and your ORACLE_HOME environment variable.

    It should be in $ORACLE_HOME/database for windows, $ORACLE_HOME/dbs for real operating systems.

  • AirDrop does not work between Mac mini end of 2014 and 6 s iPhone more

    Hello!

    I'm here for the first time. A little more last year, I bought a Mac mini end of 2014 with Core i5 clocked at 2.6 GHz, 8 GB RAM and 5400 RPM HARD drive. I replaced the HDD for an SSD, Samsung EVO 850 250 GB, to be correct. I also have an iPhone 6 Plus and does not AirDrop between my devices. They discover each other. Update both OS X and iOS on a regular basis, so that's not the problem. Check on this issue and finding a solution a have met this Airdrop is not my Mac mini 2012 and I have a few questions:

    I checked that TRIM Enabler Coulon, but later on my Mac I searched this Samsung EVO can't GARNISH. What it means? Download and install TRIM Enabler would be unnecessary, because the problem isn't here? Everything is fine with the Bluetooth, WiFi, my 6s more connects to the other MacBook Pro Retina early 2015, as the new MacBook 12 "iPads and iPhones, too. Please help me, thank you in advance.

    10.10.4 and later Apple does not allow that you caraa select TRIM and third part SSD. See:

    http://osxdaily.com/2015/10/29/use-trimforce-trim-SSD-Mac-OS-x/

    Can yo test to see if AirDrop works among other devices?

    like the iPhone with another device iOS or Mac or Mac with another Mac or iOS device?

Maybe you are looking for

  • Deletion of purchased app to avoid annual fees charged?

    How to remove an app from iTunes account? I want to close an account unused app to not be charged an annual fee. Site Web of the PPP told me to delete my account on the site, I bought the app. For me, it's in the iTunes store. I went on my account iT

  • Apple TV in error 'enable home sharing '.

    Years, I got an AppleTV on each of our 3 TV.  I have them, then connect via "Computers" to my iMac which is running iTunes and my library of movies more than 2,000 movies.  I've never had a problem with the part 'Computers' on the AppleTV not just ha

  • 10 Firefox back to the default theme on the computer restarts

    Tried to do a little research by keywords. Problems finding anything relevant. I just upgraded to firefox 10 and now (never had this problem before) I have to manually change the default theme every time I restart the computer. It's a theme I downloa

  • FX &amp; PS in PJ760VE settings

    In the manual of PJ760VE it is said that FX (1920 x 1080/50 interlaced) is the highest quality. Yet, in other tutorials, for example "overview of Interlaced Scan and Progressive Scan Formats" video by Sony, progressive scan is clearer pictures, more

  • software 'trial' is no longer a trial. I bought then why he says trial is completed before 2012

    Several years ago, I bought the software online directly from Microsoft. Search Collage 2008 called. I have same icon on my page that you come first after signing in. It says 'test period completed purchase produce. Not twice! Also, I used to go to t