Questions for an interview

I need to do an interview for a new vagancy at my company and I'm not sure if someone could help me with this task, just sharing some experience.
The skill involved are:
SQL, PL/SQL and Tunning.
Thanks

http://www.geekinterview.com/Interview-Questions/Oracle/PL-SQL
Kamran Agayev A. (10g OCP)
http://kamranagayev.wordpress.com

Similar Messages

  • Need objective sql and pl/sql question for preparing interview

    Hey buddy please help me, now I am preparing interview of sql and pl/sql where asking objective question, so I need online site for preparing interview, your suggestion would be greatly appreciated.

    Have you tried searching using one of the many Internet search engines?
    I expect that there are many kinds of sites out there that may cater to you.
    The only other recommendation I would have would be to review the documentation at http://tahiti.oracle.com. Probably the SQL Language Reference, PL/SQL Reference, Application Developer's Guide, and Concept's Guide.

  • SQL Statement for Post-Interview Question

    Hello,
    I was recently asked a question for an interview and think I got (part of it) wrong, but here is the question followed by my query with output. If someone could show me where I went wrong I would greatly appreciate it. It would be a great learning experience
    for me. I think where I fell short was the count of each repeating output row.
    Q: There is a table called Member with three columns: MemberID, FirstName, and LastName. We need a query to find how many First Name and Last Name combination duplicates exists. 
    The desired output is  First Name, Last Name, total number times the combination is repeated.  
    •        BONUS question 1:  Have the result set with the largest number of duplicates first. 
    •        BONUS question 2:  What do you do if there are extraneous leading or trailing spaces on each name cause the same first name last name combination showing up on multiple lines?
    SELECT * FROM (
    SELECT (ROW_NUMBER() OVER (
    ORDER BY  a.LastName, a.FirstName, a.MemberID DESC
    )) AS ROWNUM
    , a.MemberID
    ,  rtrim(ltrim(a.LastName))
    ,  rtrim(ltrim(a.FirstName))
    , a.name
    FROM User_Details AS a INNER JOIN
    (SELECT  rtrim(ltrim(LastName)), rtrim(ltrim(FirstName))
    FROM User_Details
    WHERE LastName !='' AND FirstName != '' 
    GROUP BY LastName, FirstName
    HAVING
    (COUNT(*) > 1)) AS b ON  rtrim(ltrim(a.LastName)) =  rtrim(ltrim(b.LastName)) AND  rtrim(ltrim(a.FirstName)) =  rtrim(ltrim(b.FirstName))
    WHERE 0=0
    --first placeholder condition
    ) AS TEAM_OUTPUT
    WHERE ROWNUM BETWEEN 1 and 100
     Output:
          123456       Allen       Michael
          123456       Allen       Michael  
          46683        Allen       Michael
          46683        Allen       Michael       
          71795        Allen       Mike
          71795        Allen       Mike 
          32171        Allen       Mike
          32171        Allen       Mike 
          38058        Allen       Patricia
          32524        Allen       Patricia
          211454       Allen       Susan
          34679        Allen       Susan
          29826        Allen       Susan
          39684        Allen       Teri       
          77557        Allen       Terri       
          227006       Allen       Theresa
          107360       Allen       Theresa
    Thanks,
    Buster

    Shouldn't it be as simple as
    SELECT FirstName, LastName, COUNT(*) AS C
    FROM Member
    GROUP BY FirstName, LastName
    HAVING COUNT(*) > 1
    ORDER BY COUNT(*) DESC
    (add the LTRIM AND RTRIMs back in to deal with the possible extra spaces)

  • Question for doubt

    1. when u save the ck11n either systme issue the messsage  OR  directly save? if give the message what is that message.... plz this my client question for my interview......( I am not working this one)......

    Hi
    When u save ck11n, the system gives a popup box which has 2 options.
    1.cost comp split(which willbe ticked by default is not editable)
    2.itemizatio( which will also be ticked by default) but this we can edit it by removing the tick.
    hit an enter here and the cost estimate will be saved.
    Hope this would help u.
    Pls assign points if useful.
    Vishnu.

  • Interview Questions for FI- General Ledger and Special Purpose Ledger

    Hi Experts,
    Can you guys provide me interview questions for
    1) FI-SPL (Special Purpose Ledger)
    2) FI-GL (General Ledger)
    3) COPA
    4) Cost Center Accounting
    Help in this regard is highly appreciated. If you have any Interview Questions documents, please email it to [email protected]
    Thanks
    Rajanikanth.

    I have some cost center qns
    How is cost center realted to profit center?
    What is a cost element group?
    What is a cost center group?
    What is the difference between Assesment & Distribution?
    What is a activity type?
    Award points if helpful

  • Interview Question for C# - other problmes

    Hi,
    I've recently found a good interview question and answer to it placed on that forum - writing a method
       protected int GetSum(int from, int to) 
    At first glance too easy, after reading a good answer I've admitted that's a really good questions.
    (https://social.msdn.microsoft.com/Forums/vstudio/en-US/6facee9e-cb42-4e8f-987a-081c68864a08/interview-question-for-c?forum=csharpgeneral )
    I'm looking for more questions like this. Thanks for any suggestions.
    Sylvia

    It shows only that it is a fool who asks this. (the interviewer not the OP)
    Nobody should create a function GetSum(int from, int to)
    It is only hard to maintain, serves nothing beside that it shows the programmer who made is was paid per line of code.
    Normally this is simply
    var x = y+z;
    Success
    Cor

  • Interview question for support engineer

    interview question for support engineer ....please can i get this sir..need to interview for apple as support engineer...thank you

    Hi Fritz,
    Let us address the problem one by one.
    1. You might need to change the source structure to :
    -root 1..1
    --Value 1..unbounded
    Please note root and Value are the names given by me you can use any names as per your wish. But we cannot have the source as you specified, will this source be ok for you?
    2. Give File content conversion parameter
    recordset name = Vale
    Value.endSeparator 'nl'
    By doing this there will be a Value node created when the source file has a newline character
    3. In message mapping create two UDF
    *UDF1 (Simple ?UDF with input field named *input )
    for (int i=0;i<input.length;i++)
       output += input<i>;
    return output
    *UDF2 (Simple UDF with input field named input)*
    int i = 1;
    String [] value = new String[112];
    while (input.indexOf(";") != -1)
    String counter = "";
    Integer i_int = new Integer (i);
    if (i<10)
        counter = "00"+ i_int.toString();
    else if (i>9 && i<100)
         counter = "0"+ i_int.toString();
    else counter = i_int.toString();
    if (input.startsWith(counter)) {
      value<i> = input.substring(3, input.indexOf(";"));
      if (input.indexOf(";") != -1 )
         input = input.substring(input.indexOf(";")+1);   
    else
      value <i> = "";
    i++;
    int j;
    GlobalContainer globalContainer = container.getGlobalContainer();
    globalContainer.setParameter("Output", value);
    Now do a mapping like this
    Value (context root)--> UDF1 > UDF2> target root node (ie Bewsatz)
    By this step you set all the values in global container named Output
    3. Now for each target  field call this UDF
    *UDF3 (Simple UDF with input field named pos)*
    GlobalContainer globalContainer = container.getGlobalContainer();
    String[] Value = (String[] )globalContainer.getParameter("Output");;
    String outvalue;
    if (Value != null) {
    outvalue = Value(pos) ;
    return outvalue;
    Call this UDF for each output field with positions like 1, 2, 3, ...111
    Please try this
    Regards
    Suraj

  • Interview questions for oracle dba

    Hi I am trying to find teh interview questions for oracle dba .
    What will be your answer to the following questions. Can somebody shed some light...
    . What is the day to day duties of oracle dba?
    ·     Did you use online or off-line backups?
    ·     What version of Oracle were you running?
    ·     Haw many databases and what sizes?
    ·     If you have to advise a backup strategy for a new application, how would you approach it and what questions will you ask?
    ·     If a customer calls you about a hanging database session, what will you do to resolve it?
    ·     Compare Oracle to any other database that you know. Why would you prefer to work on one and not on the other?
    Thx
    KK

    . What is the day to day duties of oracle dba?
    I have got a checklist, designed for my daily, weekly, fortnightly and monthly tasks. For example, in the daily checklist tasks, I check for the alert log file, competion and correction of my exports and operating system backups. DB space situation, Antivirus status, standby database status, space on disks, any rogue queries etc.
    · Did you use online or off-line backups?
    Both.
    · What version of Oracle were you running?
    8i(not any more), 9i, 10g
    · Haw many databases and what sizes?
    8 databases, ranging from 1 TB to 10 GB. I have segregated them into OLTP production, testing, cm, and development and a Datawarehouse.
    · If you have to advise a backup strategy for a new application, how would you approach it and what questions will you ask?
    How much they could afford to lose data or they want zero data loss and also I will get their requirements about down time and up time of database.
    · If a customer calls you about a hanging database session, what will you do to resolve it?
    First I will identify it, then see to it what exactly it is doing, capture that situation and then either try to release the locks(if its a blocking or blocked session), or kill the session, if its hanging on a runaway query.
    · Compare Oracle to any other database that you know. Why would you prefer to work on one and not on the other?
    Oracle passes the ACID rule with distinction as compared to the other databases. Moreover, the multiversion read consistency, recovery, flexibility and challenges of Oracle are matchless.
    Cheers
    fahdoracle.blogspot.com

  • Oracle Asset (Functional) Practichttps:/e Questions for Interviews and Exam

    https://www.createspace.com/3495382
    http://www.amazon.com/Functional-Questions-Interviews-Certification-Examination/dp/1456311581/ref=sr_1_4?ie=UTF8&s=books&qid=1289178586&sr=8-4
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Oracle Asset (Functional) Practice Questions for Interviews and Exam

    https://www.createspace.com/3495382
    http://www.amazon.com/Functional-Questions-Interviews-Certification-Examination/dp/1456311581/ref=sr_1_4?ie=UTF8&s=books&qid=1289178586&sr=8-4
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Oracle Asset (Functional) Practice Questions for Interviews and Certificati

    https://www.createspace.com/3495382
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Interview Questions for MTO from SD point of view

    Dear SAP Experts,
    I would like to know in detail the Interview Questions for MTO from SD point of view.
    Thanks
    Bhushan

    Hi,
    Since MTO is more a conceptually driven scenario first you need to understand what exactly happens in a business.
    1) Be clear on the strategy groups.
    2) Be clear on the cost center assignments since sales order is cost object in case of MTO
    3) So you need FI interface idea to execute MTO process.
    4) Understand how the SD is informed after the production is completed for an MTO order.
    5) Understand the movement types involved, since sometimes it may be required that this special stock may be needed to sent to unrestricted or perhaps assign it to some other sales order.
    6) Know clearly about requirement type since thats the key which identifies an MTO order.
    Make sure you als read the library. Hope it helps.
    regards
    sadhu kishore

  • BW Questions for Interview ?

    Hello All,
    I am in need of some good BW Interview Questions to prepare for my BW interview. Can anybody please send me some good questions or guide me to some websites/soft copy of book where I can find good interview questions.
    Also please guide me with some useful tips as how to prepare for the interview...
    I would be highly grateful to you all for your help.
    Regards
    Sandeep
    [email protected]

    Sandeep, there is a thread going on in this forum. Just beside this. As k any one of them and they will mail you the questions.
    Good luck.

  • EP,ESS/MSS  and webdynpro for java interview questions.

    I am an ep and ESS?MSS consultant and work on webdynpro for java.I have also worked on PDK like customization of masthead and logon page.I would like to know how to prepare for an interview? I mean what should I read ? and what topics should I cover?

    HI Anzar
    Instead of posting this here, you could have googled it. There are no. of sites for the same thing.
    Since you wrote, so just curious... EP & ESS/MSS Consultant... what does that mean?
    If I am not taking it wrong, by that sentence you are trying to tell that you have worked on ESS / MSS modeule. Right?
    See, if you are an EP Consultant, you must know all the below atleast -
    1. PORTAL SIDE
    a. Different types of iView configuration
    b. User Management
    c. Internal / External Portal Configuration
    d. Content development
    e. UWL
    f. Portal bottlenecks (I mean portal related issues, like slow responding etc.)
    g. Display & Desktop Configuration
    h. System Landscape Directory
    i. NWDI
    2. WEB DYNPRO SIDE
    a. Calling iviews from wd applications
    b. RFC/ BAPI calls
    c. JCO Connections
    d. SC/DC Concept
    e. Import/Export Parameters
    f. Scenario Based Answering (like... if your imported BAPI import parameters are changed by BASIS, what will you do to make it work for you.... etc)
    g. Singleton/Non-Singleton nodes
    h. Controllers
    i. Interfaces
    j. Multi-lingual Applications
    k. EJBs
    l. PDK applications
    This is the basic list, it can contain many more items... This is the list which I faced for my interview. As an EP consultant, you must be good in both Portal as well as WD end.
    1 more thing, every interview is different from other, so no point in just mugging them out. Go through with there concepts. That way, you can answer twisted & scenario based questions.
    Hope this will help.
    Best Regards
    Chander Kararia
    if question solved, close the thread after marking it answered.
    Best Regards
    Chander Kararia

  • Looking for Tuxedo interview questions

    Hello All,
    Can somebody suggest some good Tuxedo interview questions?
    Thanks in advance for your time.
    regards
    Raj

    Are you interviewing someone, or are you the one getting interviewed?
    Are these questions for a programmer, administrator or both?
         Scott Orshan
    Raj wrote:
    Hello All,
    Can somebody suggest some good Tuxedo interview questions?
    Thanks in advance for your time.
    regards
    Raj

Maybe you are looking for