What is AB_LOCAL expression where do you use it in ab-
initio?

Answers were Sorted based on User's Feedback



What is AB_LOCAL expression where do you use it in ab- initio?..

Answer / prasad setti

If you use an SQL SELECT statement to specify the source
for Input Table, and if the statement involves a complex
query or a join of two or more tables in an unload, Input
Table may be unable to determine the best way to run the
query in parallel. In such cases, the GDE may return an
error message suggesting you use ABLOCAL(tablename) in the
SELECT statement to tell Input Table which table to use as
the basis for the parallel unload.

To do this, you would put an ABLOCAL(tablename) in the
appropriate place in the WHERE clause in the SELECT
statement, and specify the name of the "driving table"
(often the largest table, but see below) as a single
argument.

When you run the graph, Input Table will replace the
expression "ABLOCAL(tablename)" with the appropriate
parallel query condition for that table.

For example, suppose you want to join two tables-
customer_info and acct_type-and customer_info is the
driving table. You would code the SELECT statement as
follows:

select * from acct_type, customer_info

where ABLOCAL(customer_info) and

customer_info.acctid = acct_type.id

Note that when using an alias for a table, you must tell
ABLOCAL(tablename) the alias name as well.

select * from acct_type, customer_info custinfo

where ABLOCAL(customer_info custinfo) and

custinfo.acctid = acct_type.id

Is This Answer Correct ?    12 Yes 0 No

What is AB_LOCAL expression where do you use it in ab- initio?..

Answer / alok

we use AB_LOCAL(expression) to increase the SQL query
performance by supplying the name of large table in
expression. This way we make it as a driving table.

Is This Answer Correct ?    11 Yes 0 No

What is AB_LOCAL expression where do you use it in ab- initio?..

Answer / mahendra garewal

AB_LOCAL is used for both parallel unload and for
determining the driving table in the complex queries.

Is This Answer Correct ?    11 Yes 0 No

What is AB_LOCAL expression where do you use it in ab- initio?..

Answer / sunitha

Parallel unloads

Is This Answer Correct ?    6 Yes 2 No

What is AB_LOCAL expression where do you use it in ab- initio?..

Answer / ramanjaneyulu.i

sql queries does not recognise by Abinitio then we will use
AB_LOCAL.

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More Ab Initio Interview Questions

what are kinds of layouts does ab initio supports ?

4 Answers  


How to compare two dmls in abinitio

0 Answers  


Can you explain the co>operating system’s processing model?

0 Answers  


In abinitio, what types of parallelism are used?

0 Answers  


What is max core value ? what is the use of it?

2 Answers   JPMorgan Chase, Wipro,






Describe the elements you would review to ensure multiple scheduled batch jobs do not collide with each other?

0 Answers  


Hi friends, I have 100 records in my input file, if i run first,the first 10 records are stored into the output and if i run second time next 10 records stored into the output file like that please let me know the answer Thanks, krishna

5 Answers   CTS,


Why might the optimizer use a table scan when an index is available?

0 Answers  


What is the purpose of having stored procedures in a data-based?

0 Answers  


What is meant by Co > Operating system and why it is special for Ab-initio ?

2 Answers  


What is abinitio?

0 Answers  


Name the different type of processing based on the steps that you know about?

0 Answers  


Categories