IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

interview queries


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sivatechdrive

Active User


Joined: 17 Oct 2004
Posts: 191
Location: hyderabad

PostPosted: Wed Mar 02, 2005 7:18 pm
Reply with quote

hi

i was asked following queries in an interview

1.Disadvantages of Runstats Utility

2.which system tables keeps the information of VIEWS

3. the alias is not deleted even if the table is deleted,what happens when i refer an alias name after the table is deleted,what will be the SQLCODE


Thanks
siva
Back to top
View user's profile Send private message
ovreddy

Active User


Joined: 06 Dec 2004
Posts: 211
Location: Keane Inc., Minneapolis USA.

PostPosted: Fri Mar 04, 2005 2:31 pm
Reply with quote

1 Ans: The DB2 compiler reviews object statistics, gathered by the RUNSTATS command, to determine the best way to optimize the request. Absent or outdated statistics can cause the SQL compiler to make poor
optimization decisions about index access, join method and data refetching.

Object relationships and dependencies are also important to SQL tuning. For example, a trigger that executes every time a row is inserted could cause insert statements that take an unusual amount of time to process. Without a complete picture of the objects involved with a SQL
statement, tuning efforts may be dedicated to the wrong area.

2 Ans: views are stored in SYSVIEWS table.

select * from SYSIBM.SYSVIEWS; will show a list of views

3 Ans:
An alias can be defined for an object that does not exist at the time of the definition. If it does not exist, a warning is issued (SQLCODE 01522).

However, the referenced object must exist when a SQL statement containing the alias is compiled, otherwise an error is issued (SQLCODE 52004).


Bye,
Reddy.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts Comp interview questions Mainframe Interview Questions 5
No new posts Index related queries DB2 5
No new posts Interview Questions on Cobol DB2 program Mainframe Interview Questions 5
No new posts The Last Two Question For You To Ask ... Mainframe Interview Questions 0
No new posts Need help with below queries DB2 3
Search our Forums:

Back to Top