Skip to main content

OBIEE connection pool write back option



ยท Write back is the option to create a temporary table and its owner with temporary table space and buffering sizes to write values to the database table.

ยท It provides users of a dashboard page or an analysis with the ability to modify the data that they see in the table view. 

ยท It is the ability in OBIEE to allow the user to enter a value or values directly into a report and have those values written into the database.

ยท Values are written back to an actual physical table in the database.

ยท Only if the user has the โ€œWrite back to database privilegeโ€, then the write back fields in the reports will editable.

Temporary Table

This is used to create a temporary table in database for writing values with temporary table space to keep the memory as temporary.

Components

ยท Prefix

ยท Owner

ยท Database Name

ยท Table space Name
OBIEE connection pool write back option
OBIEE connection pool write back option



Prefix 

When the Oracle BI Server creates a temporary table, these are the first two characters in the temporary table name. The default value is TT.

Owner

Table owner name used to qualify a temporary table name in a SQL statement, for example to create the โ€œtable owner.tablenameโ€. If left blank, the user name specified in the writeable connection pool is used to qualify the table name and the Shared logon field on the General tab should also be set.

Database Name

Database where the temporary table will be created.

This property applies only to IBM OS/390 because IBM OS/390 requires database name qualifier to be part of the CREATE TABLE statement. If left blank, OS/390 defaults the target database to a system database for which the users may not have Create Table privileges.

Table Space Name

Table space where the temporary table will be created. This property applies to OS/390 only as OS/390 requires table space name qualifier to be part of the CREATE TABLE statement. If left blank, OS/390 defaults the target database to a system database for which the users may not have Create Table privileges.
OBIEE connection pool write back option
OBIEE connection pool write back option



Bulk Insert

Which is used to insert the number of rows of data from database, contains buffer size and transaction boundary are the components of Bulk Insert.

Buffer Size

Used for limiting the number of bytes each time data is inserted in a database table. For optimum performance, consider setting this parameter to 128. Mostly the size will looks in kilo bytes only (KB).

Transaction boundary

Controls the batch size for an insert in a database table. For optimum performance, consider setting this parameter to 1000.
OBIEE connection pool write back option
OBIEE connection pool write back option



Unicode database type

Select this option when working with columns of an explicit Unicode data type, such as NCHAR, in a Unicode database. This makes sure that the binding is correct and that data is inserted correctly. Different database vendors provide different character data types and different levels of Unicode support. Use the following general guidelines to determine when to set this option:

On a database where CHAR data type supports Unicode and there is no separate NCHAR data type, do not select this option.

On a database where NCHAR data type is available, it is recommended to select this option.

On a database where CHAR and NCHAR data type are configured to support Unicode, selecting this option is optional.

Note: Unicode and non-Unicode data types cannot coexist in a single non-Unicode database. For example, mixing the CHAR and NCHAR data types in a single non-Unicode database environment is not supported.
OBIEE connection pool write back option
OBIEE connection pool write back option



Comments

Popular posts from this blog

Contact Me

Do You have any queries ?                   If you are having any query or wishing to get any type of help related Datawarehouse, OBIEE, OBIA, OAC then please e-email on below. I will reply to your email within 24 hrs. If I didnโ€™t reply to you within 24 Hrs., Please be patience, I must be busy in some work. kashif7222@gmail.com

Top 100 Informatica Interview Questions

I have attended Informatica interview last week in wipro and couple of other companies, Question below I faced in those companies. 1. What are the main issues while working with flat files as source and as targets ? 2. Explain about Informatica server process that how it works relates to mapping variables? 3. write a query to retrieve the latest records from the table sorted by version(scd) 4. How do you handle two sessions in Informatica 5. which one is better performance wise joiner or look up 6. How to partition the Session? 7. How many types of sessions are there in informatica.please explain them. 8. Explain the pipeline partition with real time example? 9. Explain about cumulative Sum or moving sum? 10. CONVERT MULTIPLE ROWS TO SINGLE ROW (MULTIPLE COLUMNS) IN INFORMATICA 11. DEPLOYMENT GROUPS IN INFORMATICA 12. LOAD LAST N RECORDS OF FILE INTO TARGET TABLE - INFORMATICA 13. LOAD ALTERNATIVE RECORDS / ROWS INTO...

Top 130 SQL Interview Questions And Answers

1. Display the dept information from department table.   Select   *   from   dept; 2. Display the details of all employees   Select * from emp; 3. Display the name and job for all employees    Select ename ,job from emp; 4. Display name and salary for all employees.   Select ename   , sal   from emp;   5. Display employee number and total salary   for each employee. Select empno, sal+comm from emp; 6. Display employee name and annual salary for all employees.   Select empno,empname,12*sal+nvl(comm,0) annualsal from emp; 7. Display the names of all employees who are working in department number 10   Select ename from emp where deptno=10; 8. Display the names of all employees working as   clerks and drawing a salary more than 3000   Select ename from emp where job=โ€™clerkโ€™and sal>3000; 9. Display employee number and names for employees who earn commissi...