what are the differences among these table level lock modes - IN SHARE MODE, IN SHARE UPDATE MODE, IN EXCLUSIVE MODE ?
HCL,
3 11327What is oracle ? why we should go for oracle database instead of diffrent databases available in the industry.
5 11689I have one Excel file with 1,50,000 Records. Now I need to load that whole file into Oracle Database with same columns in Excel sheet . I need PLSQL Procedure or used by SQL PLUS
7 17550Create table emp (id number(9), name varchar2(20),salary number(9,2)); The table has 100 records after table created.Now i nee to change id's Datatype is to be Varchar2(15). now Alter table emp modify(id varchar2(15),name varchar2(20), salary number(9,2)); Whether it will work or returns error? post answer with explanation.
13 22479How many database objects (trigger, packages, sequence etc) uses a particular field in a given table. For ex: I want to know how many database object uses the ATTRIBUTE1 in the PO_VENDORS table. What query will give me the result showing the database object name(package, trigger etc), field_name used (in this case ATTRIBUTE1) and table_name (in this case PO_VENDORS).
IBM,
2 8879what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?
2486
how to check server status with 'mysqladmin'? : Sql dba
Is foreign key mandatory?
what is transaction? : Sql dba
Is delete faster than truncate?
Can we insert data in view?
Which is faster joins or subqueries?
How can you view the errors encountered in a trigger?
What is trigger explain with example?
What is the clause we need to add in function body to return variable?
Show code of a cursor for loop.
tell us something about heap tables. : Sql dba
What is sql not null constraint?
Write the alter statement to enable all the triggers on the t.students table.
a table has 2 classifications 1)liabilities 2)earnings this liabitity has 2 elements with 2 input values and the earnings have 2 elements with 2 input values i wrote a query so that my input is liability savings amount1 amount2 xxxx null xxxxxx 0 xxx1 null xxxxx1 0 null yyyy 0 yyyy null yyy1 0 yyy1 my problem is --when i developed a report(d2k) with this data my o/p is liabilities,amount1,savings,amount2 xxxx xxxxxx xxx1 xxxxx1 yyyy yyyy yyy1 yyy1 how could i move this savings,savings values 2 palces up. can any body provide me witha better solution
What is bind reference and how can it be created?