Oracle BI EE
Dashboard answers tekrar alanların gruplanmaması PDF Print E-mail
All in One - Oracle BI EE
Written by Nilay Burcu Geyik   
Friday, 15 January 2010 09:55
Dashboard içine eklenen answers raporundaki satıların tekrarlanması halinde otomatik gruplanmasının kaldırılması işlemi için aşağıdaki gibi seçeneklerin kullanması gerekmektedir.
Last Updated ( Friday, 15 January 2010 10:01 )
 
java.lang.NoClassDefFoundError : run Exception in thread "main" while OBIEE installation PDF Print E-mail
All in One - Oracle BI EE
Written by Administrator   
Tuesday, 24 March 2009 20:41

if you get this error in OBIEE installation. you have to extract all these folders into one folder

B50964-01_1of3

B50964-01_2of3

B50964-01_3of3

 

 

 
oci PDF Print E-mail
All in One - Oracle BI EE
Written by Administrator   
Saturday, 06 December 2008 14:21

I am getting following error:
NQODBCSQL_STATE:HY000nQSError:10058 A general error has occurred,
nQSEoor:43093 An error occurred while processing the EXECUTE PHYSICAL statement.
nQSError:17001 Oracle Error code: 3114, message: ORA-03114: not connected to oracle at OCI call OCIStmtExecute,
nQSErro:17010 SQL statement preparation failed.

 

 you have to define the data source name in the tnsnames.ora.

Last Updated ( Thursday, 06 August 2009 11:25 )
 
OBIEE Aggregate Persistence Wizard PDF Print E-mail
All in One - Oracle BI EE
Written by Administrator   
Saturday, 27 September 2008 03:43

Oracle BI EE, there is an option to improve the performance. Aggregate Persistence Wizard

To use go to Tools -> Utilities -> Aggregate Persistence Wizard

 

Select measures which was applied with an aggregation function. Otherwise , the columns will not be displayed.

aggregate_persistance_wizard

 

 

 

 

 

 

 

 

 

 

The following logical table diagram our situation. Account is used by qualified list item, if you want use new aggregation table, you have to assign this level which has the your qualified list item column within the table.

aggregate_persistance_wizard

 

Select dimension levels:

Account Detail ( consists Qualified list item column )

City

Day Detail

 

 

 

nqcmd -u Administrator -p Administrator -s “D:\AggregatePromAgg.sql” -d AnalyticsWeb

this is the command which will be executed to create your new aggregated table.

 

 

 

The following query is created by Oracle BI EE.

It creates main table which has aggregation column and keys for dimension tables.

Dimension tables has all data in the original table. City table and

sa_city80c084fb are the same. To use this table from main table

ag_custpromagg_city_daydetail_accoundetail, it adds a new column cityid to

ag_custpromagg_city_daydetail_accoundetail.

 

 

/* Formatted on 2008/08/08 11:36 (Formatter Plus v4.8.7) */

CREATE TABLE ag_custpromagg_city_daydetail_accoundetail ( city_code80c0829b, date_of_tr80c082cd, card80c088a4, totalamoun80c0eb08 ) AS SELECT d1.c1 AS c1,

d1.c2 AS c2,

d1.c3 AS c3,

d1.c4 AS c4

FROM

(SELECT t82929.city_code80c0829b AS c1,

t82937.date_of_tr80c082cd AS c2,

t82947.card80c088a4 AS c3,

t82972.totalamoun80c0eb08 AS c4,

ROW_NUMBER() OVER (PARTITION BY t82929.city_code80c0829b, t82937.date_of_tr80c082cd, t82947.card80c088a4 ORDER BY t82929.city_code80c0829b ASC, t82937.date_of_tr80c082cd ASC, t82947.card80c088a4 ASC) AS c5

FROM

sa_custome80c08d2a t82947,

sa_day80c0850b t82937,

sa_city80c084fb t82929,

ag_custpromagg_1 t82972

WHERE ( t82929.city_code80c0829b = t82972.city_code80c0829b AND t82937.date_of_tr80c082cd = t82972.date_of_tr80c082cd AND t82947.card80c088a4 = t82972.card80c088a4 )

) d1

WHERE ( d1.c5 = 1 )

 

 

 

We can select any column from city , day detail, account detail. The aggregated table and dimension tables which are selected will be used, you can check it from generated qurey in NQQuery.log , segmentation criteria DAYNUMBER = 2

 

like that :

 

WITH
SAWITH0 AS (select distinct T82947.MIGROSCARD80C088A4 as c1
from
SA_CUSTOME80C08D2A T82947,
SA_LOOKUPD80C0850B T82937,
ag_CUSTPROMAGG_1 T82972

where ( T82937.DATE_OF_TR80C082CD = T82972.DATE_OF_TR80C082CD and T82937.DAYNUM80C082D3 = 2 and T82947.MIGROSCARD80C088A4 = T82972.MIGROSCARD80C088A4 ) )
select 'N0' as c1,
count(*) as c2
from
SAWITH0

Last Updated ( Monday, 14 March 2011 22:19 )
 
ibot, cache and saved result set configuration PDF Print E-mail
All in One - Oracle BI EE
Written by Administrator   
Tuesday, 17 June 2008 03:45

OracleBI\web\bin > cryptotools credstore -add -infile OracleBIData/web/config/credentialstore.xml

 
Eğer
>Do you want to encrypt the password? y/n (y): y

1. Durum : Yes seçersen : şifre encrpt edilceğinden, decrypt edilebilmesi için passphrase’i kullanması gerekir. Onun için belirtilmeli.

instanceconfig.xml ‘deki
<CredentialStore>
<CredentialStorage type="file" path="E:\OracleBIData\web\config\credentialstore.xml" passphrase=secret />
</CredentialStore>

2. Durum : No seçersen : şifre encrpt edilmeyecek, decrpyt edilmesine gerek kalmadı. Onun için passphrase’e gerek yok.
instanceconfig.xml ‘deki
<CredentialStore>
<CredentialStorage type="file" path="E:\OracleBIData\web\config\credentialstore.xml" />
</CredentialStore>
Last Updated ( Friday, 18 December 2009 11:42 )