INTERVIEW QUESTIONS TO ASK

hi,
i hav some question to ask here...........
1).undo segments in undo tablespace shud be same or can be different size in LMT(oracle9i.)
rollback segment in Rbs tablespace shud be same or can hav different size in
DMT(oracle8i).
2) while installation do we need to create group name ONlY as DBA or we may create with some other name.
3)can we change the storage parameter of tempfile in DMT?
4)can we relocate system tablespace?
5)what is shared memory realm?why it occurs?how will u solve it?
6)what is end_of_communication channel? why it occurs? how will you solve it?
with regards
Boo

1).undo segments in undo tablespace shud be same or can be different size in LMT(oracle9i.)Undo segment management is handlyed by the oracle, doesn't have control to the dba. The answer is, SIZE is evaluated by the oracle, manually a dba can't size it and it can be uniform size or different size.
select segment_name,bytes from dba_undo_extents
rollback segment in Rbs tablespace shud be same or can hav different size inDMT(oracle8i).
You can create different size rollback segments.
4)can we relocate system tablespace?Tablespace can't be moved, only its datafiles can be moved.
However, system tablespace must always remaind available. So, no you can't move the system tbs datafiles.
6)what is end_of_communication channel? why it occurs? how will you solve it?Could be many reasons.
You need to see in which situation this occurs.

Similar Messages

  • Interview question being asked

    Hi All,
    I was asked interview techinical question. I was not able to answer these. can anyone tell me what are the answers for these!
    Q How do you convert Basic cubes to Transactional Cubes?
    Q Diffrence between version Bw3.5 with other older version like BW 3.0, 2.1
    Q what is Rollup, why we use it? (i Answered this one but not staisfactory accrding to the interviewer)
    Ans To apply newly loaded data to aggregates you use rollup. You can maitain aggreegates in rollup.
    He said but what it is ?
    Thanks
    Gaurav

    Gaurav
    Check these links also
    http://sap.ittoolbox.com/documents/document.asp?i=3240
    http://www.techinterviews.com/?p=198.
    http://www.fundoosite.com/interview-questions/type.asp?iType=72
    http://www.sapassist.com/documents/document.asp?i=3240
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm.
    Thnaks
    Sat

  • Interview questions to ask regarding companies network

    I had a quick phone interview the other day for a network engineering position and was asked to have another interview.  They asked me to have questions for next time regarding their network?
    Any good questions that I should be asking regarding their network?

    Depending upon the type of position, I would tend to ask questions regarding Design and Support. Always ask the questions in a manner that allows YOU to follow up and highlight how your skills would be beneficial to the company - don't just aks questions and listen to the response, use the answer as an opportunity.
    Design:
    Routing protocols used?
    Firewalls used?
    Switches/routers used?
    Level of redundancy?
    Type of Service? i.e. MPLS, VPN, etc.
    and many, many more
    Support:
    Is the network fully documented via diagrams?
    Are procedures documented?
    Expectations of support for the environment?
    Change procedures?
    and many, many more
    However, equally important is the stability of the company & department you would be working for:
    How long has the person been the Manager for the team?
    Why is there an opening? i.e Did someone leave or is the company expanding?
    Always ask for a tour of the facilities where you would be working
    Try to meet some of the staff before starting
    The key is the company is looking for someone that will suit THEM. You, in turn, should be looking for a company where you would feel comfortable and fit in with the team. Most people know within the first 5 minutes of meeting someone whether or not there is any interest - that's why first impressions are so important.
    Good luck,
    Steve

  • Interview Questions I was asked....

    Hi all,
    The following are the Interview questions, i was asked and although i know answers littlebit, i dont know whether they are correct or not, so i am
    writing here to know answers and for your reference also.
    1) Can i use function as column of table ? if yes, how ?
    2) Sub Query and Joins, which one is better performance wise and how ?
    3) Using Sys_refcursor OR a set of OUT parameters, which one is better ?
    4) I am inserting data into table, what are the best options to avoid
    to insert invalid data ?
    5) I am loading data with some batch action or manually. After
    inserting few records, i have committed the data, but after that
    error occured. Now, how i will found, which data i have committed ?
    6) How Audit has been done in sql and pl/sql from Developer point of view or dba point of view ?
    Thanks,
    Pal
    Edited by: user546710 on Jan 21, 2011 3:26 AM

    user12075620 wrote:
    I don't think we can use the function as a column in a table. What John is referring to is a virtual column whose expression is defined af function call:
    SQL> CREATE SEQUENCE SEQ1
      2  /
    Sequence created.
    SQL> CREATE OR REPLACE
      2  FUNCTION F1
      3  RETURN NUMBER
      4  DETERMINISTIC
      5  IS
      6  BEGIN
      7      RETURN SEQ1.NEXTVAL;
      8  END;
      9  /
    Function created.
    SQL> CREATE TABLE TBL(
      2                   X NUMBER,
      3                   Y NUMBER GENERATED ALWAYS AS (F1())
      4                  )
      5  /
    Table created.
    SQL> INSERT
      2    INTO TBL(
      3             X
      4            )
      5    SELECT  LEVEL
      6      FROM  DUAL
      7      CONNECT BY LEVEL <= 5
      8  /
    5 rows created.
    SQL> SELECT  *
      2    FROM  TBL
      3  /
             X          Y
             1          1
             2          1
             3          1
             4          1
             5          1As you can see, column Y value was calculated as select time. Now I deliberately declared non-deterministic function F as deterministic to show you virtual column is calculated at select time. In the above select Oracle calls function F for the first returned row. Then, since F is declared as deterministic Oracle realizes there is no need to call F again (same parameters - actually same no parameters in this case therefore deterministic function should return same results). Same thing happens when we select again:
    SQL> /
             X          Y
             1          2
             2          2
             3          2
             4          2
             5          2
    SQL> /
             X          Y
             1          3
             2          3
             3          3
             4          3
             5          3
    SQL> As you can see, F is called each time we select so we can say that function is used as a column in a table.
    SY.

  • Dataguard Interview questions and most frequeently asked DG issues

    Hi Gurus,
    I am new to this forum and happy to be a part of it.
    Can someone help me in posting " Dataguard Interview questions and most frequeently asked DG issues" as i am preparing for the interviews.
    And also share the enhancements to DG in 11g.
    Thanks in advance.

    I'm not impressed by any of the questions at any of the linked sites provided so here are the one's I would expect someone to be able to answer:
    1. What is the difference between Physical and Logical Data Guard in terms of how they work and how they are used in the enterprise?
    2. What is the difference between vanilla Data Guard and Active and Snapshot?
    3. How do you enable the Data Guard Broker process and why and when would you want to?
    4. Who is Larry Carpenter and why should you care?
    5. What parameters in using orapwd are critical for success?
    6. What would you recommend as a value for SEND_BUF_SIZE and why?
    7. Given a primary production database, and a full RMAN backup that takes 1 hour to fully restore ... how long would it take you to implement Physical Data Guard from the time you started working?
    If the answer to question 7 is greater than 2 hours ... my assumption would be that you probably had never done it before and it wouldn't matter that you got the first six questions correct.

  • ABAP-HR INTERVIEW QUESTIONS

    Hi All
         I want ABAP-HR interview questions,I am attending my first abap-hr interview on thursday,
         So i want what type of question i can expect from the interviewer.
       If any one plz send to my mail.
    Thanks in advance

    Hi Chris
    Keep up the comments as you are the only one that seems to willing to call out folks on the board.
    Just yesterday I saw a question saying something of the effect " I am a consultant and the client is asking me to prepare configuration material on garnishment and taxes please help"
    I almost did a "Chris" response but decided to hold tight and just say nothing though part of me wishes I have the clients email address so they could be aware of what a joker they are paying to help them.
    Jarret

  • Hi SAP FI/CO GURUS ...... PLEASE GIVE ME INTERVIEW QUESTIONS ON SAP FI/CO

    Hi FI/CO gurus
    I require your great help to get my brother into SAP House. He had done his FI/CO training and he is trying as fresher into SAP. So i request you to please give me interview questions on SAP FI/CO in topic wise. The reason i am asking here in this forum is, a lot of gurus who are having great experience are there in this group. if i get help from these gurus, that will be great help to my brother into get into SAP FI/CO.
    So i request you to please send me interview questions on SAP FI and CO in topic wise. Awaiting for your reply.
    Regards
    Raj

    Hi,
    Please find below few questions on FI. I think those are very useful for intervew
    SAF FI Technical Interview Questions 1
    1. Tell me about FI Organizational structure?
    Ans:     Client
                   |
          Operating Concern
                   |
    Controlling area1       Controlling Area 2
             |
    Co. Code 1 Co. Code 2
        |
    Bus area 1  Bus area2  Bus Area3  Bus Area 4
    2. How many Normal and Special periods will be there in fiscal year, why do u use special periods?
    Ans: 12 Normal posting period and 4 special periods are in the fiscal year which can be used for posting tax and audit adjustments to a closed fiscal year.
    3.Where do you open and close periods?
    Ans: PPV is used to open and close the periods based on a/c types considering GL Accounts. Tr. Code. OB52.
    4.What do you enter in Company code Global settings?
    Ans: 4 digit Alphanumeric key.
    Name of the company
    City
    Country
    Currency
    Language
    Address
    5.What is document type, and what does it control? Examples.
    Ans: Document type is nothing vouchers containing line items. Several business transac! tions can be identified within a particular document type.
    It controls the document number ranges.
    It controls the Header part of document
    IT controls the line item level of the document
    Helps filing of physical document 
    6. What is posting key and what does it control?
    Ans: These are special classification keys. Two character numerical key it controls the entry of line items.
    Posting key determines Account type, Debit/credit posting, Field status of transaction.
    7. What is field status group, what does it control? 
    Ans: FSG is mandatory field in ! GL Creation. You use this field to define which fields are displayed when you post business transactions to a G/L account. 
    A field may have one of the following statuses.
    - Suppressed
    - Display
    - Optional
    - Required
    8. What is chart of account and how many charts of accounts can be assigned to a company?
    Ans: Chart of account is a list of all G/L accounts used by one or several company codes.
    For each G/L account, the chart of accounts contains the account number, account name, and the information that controls how an account functions and how a G/L account is created in a Company code.
    You have to assign a chart of accounts to each company code. This chart of accounts is the Operating chart of accounts and is used for the daily postings in this company code.
    You have the following options when using multiple company codes.
    You can use the same chart of accounts for all company codes
    If the company codes all have the same requirements for the chart of accounts set up, assign all of the individual company codes to the same chart of accounts. This could be the case if all company codes are in the same country.
    In addition to the operating chart of accounts, you can use two additional charts of accounts If the individual company codes need different charts of accounts, you can assign up to two charts of accounts in addition to the operating chart of accounts. This could be the case if company codes lie in multiple countries.
    The use of different charts of accounts has no effect on the balance sheet and profit and loss statement. When creating the balance sheet or the profit and loss statement, you can choose whether to balance the co! mpany codes which use different charts of accounts together or separately.
    9. What does definition of a chart of account contains?
    Ans: chart of account key
    Name
    Maintenance language
    Length of the GL Account Number
    Controlling Integration
    Group chart of accounts (Consolidation)
    Block Indicator
    10. Can one COA be assigned to several companies?
    Ans: yes. One COA can be assigned to several companies.
    11) What is account group and what does it control? 
    Ans: Account group determines which fields you can configure on the G/L master record. It is necessary to have at least two one for B/S and another one for P&L a/c.
    It controls the Number ranges of GL A/C.
    The status of fields of the master record of GL belongs to company code area.
    12) What is reconciliation account; can you directly enter documents in that a/c?
    Ans: When you p! ost items to a subsidiary ledger, the system automatically posts the same data to the general ledger. Each subsidiary ledger has one or more reconciliation accounts in the general ledger. 
    We can’t use reconciliation account for direct postings.
    13) How do you control field status of GL master records and from where do you control! 
    Ans: Field status variant is maintained all FSGs.
    14) What are the segments of GL master record?
    Ans:
    - COA Segment
    A/C group
    Nature of account
    Short text
    GL a/c long text
    Trading partner
    Group Account Number
    -  Company code segment
    Account currency
    Tax
    Reconciliation a/c for a/c type
    OIM,LID,FSG.
    15) What does Field status group assigned to a GL master record controls?
    Ans: It controls the account assignments that are made to the account. Specifically the field status group controls whether postings to cost centers, internal orders, profitability segments and so on are required, not allowed (suppressed), or optional.
    16) What is Country and operational chart of account? Why do you use group chart of account?
    Ans: Operational chart of account – Day to day activities It is mandatory.
    Country COA – It’s used for legal specific requirement of each country. It’s additional and optional.
    Group COA used for consolidation of Company codes. This is for group consolidation purpose.
    17) What are all the segments in a Customer/Vendor master record?
    Ans: Segments in Customer           Segments in Vendor
    -      General Data segment            General data segment
    -      Company code segment         Company code segment
    -      Sales area segment                 Purchasing organization Segment
    18) What is open line item management? What do you mean by clearing open line items?
    Ans: Open item management is further reconciliation function. OIM allows you to display the open and cleared items and amounts in an account. OIM should be used if an offsetting entry is made for every line item posted in the account. The a/c is reconciled and cleared against another account. Ex. Salary clearing account and GR/IR Clearing account.
    19) What is residual payment and part payment?
    Ans: Residual payment it clears original invoice with incoming amount and create new line item for remaining outstanding amount.
    Partial payment it leaves the original invoice amount and creates new
    line item for incoming amount.
    20) What is internal and external number ranges?
    Ans: Internal Number Ranges: Doc. No will be provided by the system automatically in serial order allotting the next available progressive number. The number must be in numerical.
    External Number ranges: Doc. No will be given manually by the end user. System will not lock no automatically in this case. User can pick the number randomly. Number may be an alpha numeric.

  • Need  interview questions on SAP-XI  3.0

    HI all,
    Can some body help me.
    I am Explicitly luking for NEW (or updated ) interview questions and i am abt to start my interviews from tommorrow.
    any idea where i can find more info on SPECIFIC XI interview questions/FAQS other than the available sdn.sap.com website.
    Plz help me to go thru this..
    I wud surely appreciate ur timely help.
    Thanx
    VKL

    Hi V L
    Some of them are:
    -->Steps required to configure a scenario
    -->Types of mapping
    -->which all configurations you need to do in R/3
    for an Idoc to file scenario
    -->Questions regarding the interfaces you have worked
    on
    -->Qestions on adapters eg. Idoc , RFC etc
    -->How to configure JDBC Adapter(Sender & Receiver)
    -->Qestions on Content conversion
    -->Questions on BPM and the step types in BPM.
    -->Questions on ALERTS. How to configure Alerts, alert rules, etc.
    -->Architecture of XI.
    Also check XI FAQs by Michael:
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Kindly go through this link where you will find many interview questions:
    /message/1209232#1209232 [original link is broken]
    Re: Interview for TCS
    Prequisite need in XI and SAP
    Re: Provide me some IDOC related docs.
    All the very best for your interviews.
    ---Satish

  • Interview questions Doubts

    Hi friends,
    I got some interview questions please any body answer this questions,thanks for advance.
    What is table partition?
    2. What are the options available in transfer rule and when ABAP code is recquired during the transfer rule what important variables you can use?
    3. How would you optimize the dimensions?
    4. What are the conversion routines for units and currencies in the update rule?
    5. Can you make an infoobject as info provider and why?
    6. What are the steps to unload non cumulative cubes?
    7. Give step to step approach to archiving cubex.
    8. What are the load process and post processing.
    9. What are the data target administration task
    10. What are the parallel process that could have locking problems
    11. How would you convert a info package group into a process chain?
    12. How do you transoform Open Hub Data?
    13. What are the data loading tuning one can do?
    thanks for advance,
    bye
    habeeb

    sb92075 wrote:
    PC wrote:
    hi,
    Plz clear some doubts.In 1 interview below questions were asked to me..I would not work for any company where RBO was still be used.
    V9 Oracle was last version to include RBO & V9 has been obsoleted this whole Century.So, I should resign from my employer of 17 years because we still have a couple of applications that use RBO, I can just hear the exit interview now :-)
    In case you are wondering, one of the applications that uses RBO is on 10.2.0.3, and the other is 9.2.0.8
    John

  • Interview Questions in PD

    Hi,
    I need some interview questions in PD. I have to be a panelist for PD. Please give me some questions along with answers in PD.
    Thanks and regards.

    Re: Support Question?
    it may be helpf ul
    and one more thing ur telling that u r the panelist and if the person going to come to interview is the member of this community means than wht will u do. so pls maintain some secrecy.
    pls ask ur collegues to collect the questinos and try to find out the answers by urself
    and always it is better to have a personal mailing not here but among ur collegues
    k
    sikindar
    if there is anything worng from my side pls excuse me

  • Interview questions?plz answer

    hi
    i have some interview questions;can anybody share with me?
    1.what is meant by static variable and static method with an example?what r the uses?;
    2.what r the uses of Interfaces over abstract class?
    3.Name two interfaces without method?
    4.what is meant by polymorphism?explain with an example?
    5.what is meant by deadlock?
    6.what is meant by time-slicing?
    7.how can u set input and output parameters using Callablestatement with an example?
    8.what is difference between throw and throws?

    hi
    i have some interview questions;can anybody share with
    me?
    1.what is meant by static variable and static method
    with an example?what r the uses?;A static variable changes rapidly. A static method changes methodically.
    2.what r the uses of Interfaces over abstract class?Interfaces used over abstract classes form a protective layer, insulating and encapsulating them from synchronization problems.
    3.Name two interfaces without method?Trick question. No interfaces have methods.
    4.what is meant by polymorphism?explain with an
    example?Men in Hawaii can marry more than one woman. Each wife does something different when the man asks her to give him some poi.
    5.what is meant by deadlock?Bob Marley's hair.
    6.what is meant by time-slicing?Time slicing is a technique for delaying an unpleasant task. A process can continue to put it off until later by slicing the remaining time in half.
    7.how can u set input and output parameters using
    Callablestatement with an example?You ought to know that. I'm not going to help you.
    8.what is difference between throw and throws?"Throw" is singular and used with one argument. "Throws" is plural and used with multiple arguments.
    Good luck.

  • SAP TM help , Resume, interview questions and market -appreciate your help

    Hey Everybody, 
                             Can any one of you send me the sample resume for Time management? Especially targeting the schemas. I just did HR311 at SAP school. I’m looking for the opportunity now days.
    I’ll also appreciate if any one of you can tell that what kind of interview questions I could face? Sample question will be great. 
    BTW how is SAP time market?
    Thanks,
    UA
    Email id : [email protected]

    Did I ask something difficult?  I’ll appreciate if you guys shed some light on some scenarios. For example if you have Unions or worked with unions what you do in order to accommodate them. That would be great if you explain with the help of Business examples. What PCRs you have created etc...

  • Webdynpro interview questions and answers

    hi friends
    i need webdynpro interview questions and answers
    urgently
    thanks

    Hi Ramachandran,
       There is a seperate book in sap Press for interview question but will cost a lot and i dont think it is easily available in India.
    But then, if you are aware of Webdynpro for Java, you dont have to worry a lot. Since Webdynpro is a new technology, People who really want to recruit people will stick to basic questions.
    I can give some examples below
    1. What is adaptive RFC and How to Use it
    2. What are the table variants and how to use each of them
    3. Can ask about tree and trees in table.
    4. What is singleton and supply function
    5. Some basic Portal Admin Question.
    6. basic customization question using HTMLB
    7. What is the diff between Adaptive rfc and adaptive web servie and who to use both.
    8. Diff between drop down by key and drop down by index.
    9. diff between Link by action and link by url and other Basic UI questions.
    10. Might ask about merge functionality of NWDI if used.
    11. Might ask about dynamic Ui and Context Generation
    12. and So on.
    I have attended Few interviews and know many of those questions. I cannot put every thing here.
    But Dont worry. If the interview is for Selecing people and not to show ego of how good the person who is interviewing is , will ask basic to understnd how good the candidate is in understanding basics as rest all have the document in SDN.
    Hope it helps.

  • SAP PI 7.0 interview questions required

    Hi All,
    I am preparing for an SAP PI interview. Kindly provide me frequently asked interview question/answers. Any kind of help is appreciated.
    Thanks & Regards,
    Akshay

    This is not correct place to discuss abt Interview stuff.betetr to search in google.please close the thread.

  • Interview question: EIGRP and Grandmother

    Hi all.
    A question was asked to me a couple of months ago during an interview. I'm quite curious as to how others would respond to it. Here it is.
    "If I was your grandmother, how would you make me understand EIGRP?"
    I know that when the interviewer says "make me understand", it doesn't mean you should go deep into the details of the IGP. Maybe just a bird's eyeview. But still, makes you think.

    I guess I'd have to relate it to something my grandmother would understand.  I know she would be lost as soon as I said IP.
    I would probably relate to driving in her car to get to the grocery store.  Imagine if it every corner there was a traffic guard directing traffic, and every traffic guard had a map with the fastest way to get to her destination in his hand.  When she gets to that intersection the traffic guard tells her which way to go.  As long as all the roads are working the path she takes to the store pretty much remains the same.  Now imagine that all of these guards have walkie-talkies in their hands, and if there is an accident on a road, and that road is closed that guard announces to all the other traffic guards that that road is closed and and the traffic guards are quickly able to give you an alternate route before you get stuck in traffic.  The good thing about EIGRP is that these updates to traffic patterns are only sent periodically instead of all the time, this greatly reduces the amount of communication over the walkie-talkies, making it much easier for other communication to pass over them as well, while keeping everyone updated on what the best path to take to the store is.
    I like trying to use analogies in my explanations to my end users.  It puts the context of your discussion into terms that they can relate to and understand the general concept of.  An interviewer might be asking you to do this to show, that you not only can regurgitate the answer that they're looking for, but understand it well enough to break it down into simpler terms that can be communicated to someone without technical knowledge that can still be understood.
    I report to the VP of Finance/CFO here at my organization.  I find myself constantly having break down complicated terms into something that he can understand in order to get budget approval for projects.  I'm guessing your interviewer wanted to be sure you had the skills to be able to communicate complex IT concepts with someone who may not understand the "dictionary" explanation?

Maybe you are looking for

  • Attribute Not Found Error

    I was having entity and eovo working fine. My object was also working well. Few days latter I add one field to database and synchronized my entity and view object. Now when I add the newly added attribute to my jspx page, then when I run the applicat

  • Making a .exe In LabVIEW 8.2

    I'm trying to make a stand alone executable from a vi created in Lab VIEW 8.2. I did not create the vi in a project, but I have moved It into one. I have been unable to make a exe that works on the none Lab VIEW computer. I have Three questions 1. Do

  • Blu-ray discs don't seems to write a 'lead-out'. Help!

    Hi, I am using Premiere Pro CS4 with Encore CS4. Up until now I have always used DVD's and not blu-ray discs and have never had a problem. I now film in full HD and would like to be able to build blu-ray discs in Encore. I import to Encore through dy

  • Want to restore to factory settings

    My MacBook has been acting very starnge lately and I want to restore it to factory settings, but I no longer have the install disc (at least I don't think I have). I'm currently on 10.6.8, if I upgrade to Lion will I be able to do a restore somehow f

  • Call another program in first program

    hi, i need to perform to call another report in my current report. so how am i going to do so? how report work: the report are going to run as background job. once the report run, it will send out the report in text file to user. and then i want it t