Sponsored Links

Interview Questions



INTERVIEW QUESTIONS ORACLE DETAILS

Question: How to get a calender in date field in oracle forms?

Answer: 1)Set the LOV of the item for which calendar to be attached as ENABLE_LIST_LAMP LOV, which is included in the TEMPLATE form.

2)Set ”Validate from List” to 'No' in the property palette of that item .

3)Then in KEY–LISTVAL trigger of that item write

calendar.show;

Category Oracle Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 7832 users
Added on 7/27/2011
Views 70347
Rate it!

Question: How to get a calender in date field in oracle forms?



Answer:

1)Set the LOV of the item for which calendar to be attached as ENABLE_LIST_LAMP LOV, which is included in the TEMPLATE form.

2)Set ”Validate from List” to 'No' in the property palette of that item .

3)Then in KEY–LISTVAL trigger of that item write

calendar.show;
Source: CoolInterview.com


--- To add a calendar in Form 6i
You will need to files
1) stndrd.olb
2) calendar.pll
******************
1) From within forms open the file stndrd.olb via file>> open.(Search for stndrd.olb file in your hard disk).This will add the item "standards" to the object navigator/object libraries section. This will now always appear in the object navigator.

2) Next open the form that you wish the calendar to be on.

3) Expand the "library tabs" section of the "standards" item in "object libraries" to reveal 5 items, inc. "components". Right click on "components" & select "object libraries" from the menu that appears.

4) From the box that appears select the component "calendar" and drag it to the form you wish it to be added to within the "object navigator". It will then ask whether you want to "sub-class" or "copy". Select copy, or the form with the calendar will not work on PC's that does not have the standards item added. Copying will add all required bits you need for the calendar.

5) Next open the "calendar.pll" file & this will add a "calendar" item to the "pl/sql libraries" section on the "object navigator". Select the "program unit" section and drag it up to the "programs unit" sectino of your form. This will add 2 items to the "programs unit" section (date_lov - package spec & date lov -package body).

6) Next on my form i added a button to call the calender with a "when_button_pressed" trigger & added this code.
********************************
DATE_LOV.GET_DATE
(NVL(:BLOCK.ITEM, SYSDATE),
'BLOCK.ITEM',
200, 100,
'SELECT DATE',
'OK','CANCEL',
TRUE, FALSE, FALSE);
********************************
The block.item is where you want the date to be inserted into via the calendar user interaction. Source: CoolInterview.com

Answered by: Binu Thomas | Date: 4/7/2010 | Contact Binu Thomas Contact Binu Thomas


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
I have a server with 2GB RAM.Who is the optimal size for the shared pool size
The shared pool reserved size is 1/10 to shared pool size
Is there a mathematic type for compute the shared pool size ?


View Answer
I want to know that..is there any special way to login into oracle SQL*PLUS Editor directly..Rather than every time u have enter user,password,host string...what should i do with login.sql script.. i Put it in /Bin directory..but not working..

View Answer
Explaint the nvl2 function

View Answer
When transporting a tablespace from one database to another, it should be
a. Read-only.
b. Offline.
c. Online.
d. Tablespace status does not matter.
View Answer

Which NLS parameter can be specified only as an environment variable?
a. NLS_LANGUAGE
b. NLS_LANG
c. NLS_TERRIROTY
d. NLS_SORT

View Answer
Which parameter in the export file is used to specify a structure –only export (no rows)?
a. ROWS
b. TABLE
c. NODATA
d. DIRECT

View Answer

What does the parameter DIRECT=Y in the export parameter file signify?
a. When exporting table data, bypass the SQL buffer cache and read the data blocks directly form the disk to the export file.
b. When exporting table data, bypass the SQL processing layer and read data from disk to the buffer cache, and copy them directly to the export files
c. When importing data using the export file create, write data blocks directly to the file, rather than going through the buffer.
d. To perform a direct import, the export file must be created sing the direct method.
View Answer
Choose the statement that is not true. Direct-path load
a. Disables insert triggers on the table and enables them after the load completes.
b. Disables referential integrity constraints and enables them after the load completes.
c. Disables unique constraints and enables them after the load completes.
d. Does not disable any constraints or triggers.
View Answer
Which utility would you use to refresh the test table with production data?
a. SQL*Loader conventional path
b. SQL * Loader direct path
c. Export/import
d. SQL * Plus direct-load insert
View Answer
To use the transportable tablespace feature, the block size of the target and source database should be
a. 4KB
b. Same size
c. Not larger that 16KB
d. Different size
View Answer

If you run the ALTER SESSION SET NLS_DATE_FORMAT + ‘DDMMYY” statement, which dictionary view would you query to see the value of the parameter?
a. V$SESSION_PARAMETERS
b. NLS_SESSION_PARAMETERS
c. NLS_DATABASE_PARAMETERS
d. V$SESSION
View Answer
Choose two reasons why you would use a direct –path load instead of a conventional-path load.
a. To restrict users from performing
b. To perform parallel loads
c. To disable the generation of redo log entries if the database is in ARCHIVELOG mode.
d. The table has many indexes, and the temporary tabelspace is small.
View Answer
Which two parameters must you specify when importing the metadata information into the target database while transporting tablespaces?
a. DATAFILES
b. TABLESPACES
c. TRANSPORT_TABLESPACE
d. TTS_OWNERS
View Answer
Choose two NLS parameters that cannot be modified using the ALTER SESSION statement.
a. NLS_CHARACTERSET
b. NLS_SORT
c. NLS_NCHAR_CHARACTERSET
d. NLS_TERRITORY
View Answer

20. Which command is used to define CONNECT and RESOURCE as the default roles for user JAMES?

a. ALTER USER
b. ALTER ROLE
c. SET ROLE
d. SET PRIVILEGE
View Answer
19. What is accomplished when you issue the following statement?

ALTER USER JOHN DEFAULT ROLE ALL;

a. John is assigned all the roles created in the database
b. Future roles granted to John will not be default roles
c. All of John’s roles are enabled, except the roles with passwords
d. All of John’s roles are enabled when connecting to the database

View Answer
18. How do you enable a role?

a. ALTER ROLE
b. ALTER USER
c. SET ROLE
d. ALTER SESSION

View Answer
Which role in the following list is not a predefined role from Oracle?
a. SYSDBA
b. CONNECT
c. IMP_FULL_DATABASE
d. RESOURCE

View Answer
16. To grant the SELECT privilege on the table CUSTOMER to all users in the database, which statement would you use?

a. GRANT SELECT ON CUSTOMER TO ALL USERS;
b. GRANT ALL ON CUSTOMER TO ALL;
c. GRANT SELECT ON CUSTOMER TO ALL;
d. GRANT SELECT ON CUSTOMER TO PUBLIC;
View Answer
Which data dictionary view can be queried to see whether a user has the EXECUTE privilege on a procedure?

a. DBA_SYS_PRIVS
b. DBA_TAB_PRIVS
c. DBA_PROC_PRIVS
d. SESSION_PRIVS
View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All Oracle Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions