What is the difference between a package and a plan?
Answers were Sorted based on User's Feedback
Answer / deepak dada
plan contain the package. plan is executable unit. not
package package contains only one dbrm as input and plan
contains nos of dbrm as input .package is more useful than
plan
| Is This Answer Correct ? | 39 Yes | 3 No |
Answer / s
A package is a single bound DBRM.
Many DBRMs/packages can be bound to a Plan.
| Is This Answer Correct ? | 31 Yes | 1 No |
Answer / rajyalakshmi
Plan will contain the package we can execute the plan but
we cant execute the package.
Plan will contain number of packagees.In Package only one
DBRM is present but in plan number of DBRMs r there.
| Is This Answer Correct ? | 24 Yes | 1 No |
Answer / swetha
plan contains group of packages. plan is a pointer to
package.
| Is This Answer Correct ? | 19 Yes | 4 No |
Answer / siri
PACKAGE:- package is a single bound dbrm...package is not executable......means its not executable with the cobol load module...dbrm bind the package and trun into the plan...when there is changes need to the sub prg its enough to recompile sub program...for example i have 10 prgs like a,b,c,d,e,f,i,j...i have the requirement to changes need to the program b..in case of package only recompile and rebind b program only....
PLAN :- plan is collections of packages....dbrm is also directly bind to the plan...but one dis advantage is there when dbrm is directly rebind in plan...that is suppose 10 dbrms is there..10 dbrms 10 times rebind to the plan..same example is like above...10 prgs is there like a,b,c......j b program to need changes after compiling the program u rebind not only b program all are rebind again...in case of package bind into the plan...suppose 1000 packages are there they are included in one package list it is easy to bind to the plan...no need to the rebind the 1000 times..one u bind that automatically 999 prgs are bind into the plan...
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / krishna priya
plan contains multiple DBRMs.but packag contains single
DBRMs as well as when package will excuated include the
list of plans
| Is This Answer Correct ? | 10 Yes | 2 No |
Can SQL statements/queries be included in a copybook?
Is it possible to alter a table – for example adding a column, when another user is accessing or updating some columns?
What is meant by concurrency?
Name some fields from SQLCA.
How do you simulate the EXPLAIN of an embedded SQL statement in SPUFI/QMF? Give an example with a host variable in WHERE clause)
Hi All, In a Cobol-DB2 program, I am fetching rows from 4 tables using cursor and then based on the a field present in that table, It processes the information accordingly..for example stat-c is one digit field..if stat-c is 'D' then the a row is deleted from table and written those details in to a file. If the stat-c is 'U' then a row is updated (hardcoded what to update)in a table and written those details in to a file. If the stat-c is 'I' then a row is inserted in a table and written those details in to two files. The issue is i have to include the intermediate commits. When an abend occurs, due to commit statement db2 tables will be saved, But there will be lose of file contents. When we resubmitting the job associated with this program there will be insert ,update and delete anomolies to avoid that what measures could be taken?. The intermediate commit is nothing but issuing commit after massive inserts, updates and deletes(sum of 500actions)
Give some example of statistics collected during RUNSTATS?
Why PS file called Physical seqential file?How to sore data in sequential file and ESDS file? What is the use of DBRM,PLAN,package and Collection.
I have a table name Table1 which contain columns Cust_no, car_model, country, salesamt. The records are 101, Fiat, India, 12345 2nd record is 102, Tata, USA, 98743 3rd record is 101, indica, India, 65342 4th record is 103, Toyota, UK, 64522 5th record is 103, Maruti, USA, 98632 and so on..... Now my question is write sql query which will give me detail about the sum of sales amount in perticular country
While creating a table, by mistake you have given size of one field as 10. But as per requirement size should be 8. What is your next step?
What do you mean by commit and rollback?
How would you move a tablespace (using STOGROUP) to a different DASD volume allocated to that tablespace?