Answers needed for my questions

Hello,
I need answers for few questions.It helps me a lot.It may be very basics but kindly answer me.
)How do you view the value of the parameter that is being used by instance?
show parameter..?
2)How do you get the information of hidden parameters
3)What is the database object that stores information related to various types of db connections over network
4)How do you verify since when the db session is running
5)How do you verify the Originating machine details of the database session
6)How do you verify the name of program that the db session is running
7)What is the naming convenion of Base tables. Where is the information of base tables stored?
8)How are dynamic views created. Whre is the information of dynamic views stored?
Kindy tell me.
Thanks,
928714.

928714 wrote:
Hello,
I need answers for few questions.It helps me a lot.It may be very basics but kindly answer me.
)How do you view the value of the parameter that is being used by instance?
show parameter..?* At sql prompt enter
show parameter PARAMETER_NAME
or you can use the query
select name, value from v$parameter where name='PARAMETER_NAME';
>
2)How do you get the information of hidden parametersThe hidden parameters start with an "_".They can not be viewed from the output of 'show parameter'
or querying v$parameter unless and until they are set explicitly in init.ora.
Use the query (make sure you have connected as SYSDBA)
SELECT a.ksppinm "Parameter",
b.ksppstvl "Session Value",
c.ksppstvl "Instance Value"
FROM x$ksppi a,
x$ksppcv b,
x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/_%' escape '/'
3)What is the database object that stores information related to various types of db connections over networkYou can query the view DBA_DB_LINKS
4)How do you verify since when the db session is runningselect (sysdate-logon_time)*24*60 "SESSION running since(in mins)" from v$session
5)How do you verify the Originating machine details of the database session
6)How do you verify the name of program that the db session is runningFor point 5 and 6 use the following query:
select program "PROGRAM" , machine "ORIGINATING MACHINE " from v$session
7)What is the naming convenion of Base tables. Where is the information of base tables stored?For naming conventions refer following links
http://www.oracle-base.com/articles/misc/naming-conventions.php
http://ss64.com/ora/syntax-naming.html
The information of Base tables is stored in the Data Dictionary
8)How are dynamic views created. Whre is the information of dynamic views stored?Refer the follwoing link
http://docs.oracle.com/cd/E11882_01/server.112/e10713/datadict.htm

Similar Messages

  • Quick answer needed for fan question!

    OK, I have read all the threads on the fan noise and downloaded XRG 1.1 to check my fan speeds. As I surmised, my fans appear to be running too fast (at all times). Here are the details.
    CPU between 5% and 10%
    CPU temp 120 degrees
    Hard Drive 130 degrees
    CPU fan 4400 rpm
    Hard Drive fan 6000 rpm
    System fan 4000 rpm
    Do I need to reset the nvram? does this include having to pop the back off and reset 2 switches as I read on another post? any other suggestions?

    Yes it's an original 20" iMac G5. I ordered it the week they were announced, and have an extra 512MB ram in there to bring the total up to 768MB. I know the fans will run faster and louder than they are now, because when I updated some firmware (for the little power light at the front) the fans ran at the default highest speeds and I almost thought the computer was actually going to fly away.
    After putting the processor back to "automatic" and putting the computer to sleep for the night, when I brought it back up this morning the fans were in the 3000 range. Quiet. Amazing what 1000rpm can do. After running Safari and Mail for an hour or so, the fans are back up to the ranges I posted in my first post... not the fastest, but definately noticeable from across the room. Temperature and CPU loads never really changed much although the fan noise did.
    Since the fans did start at a lower speed and then move higher, does this mean that the "button" reset inside will not work? or should i just go ahead and try? not really wanting to crack open the back if it is pointless...

  • @Ceroberts75-Need for Speed Questions !

    OK, This is in specific to Ceroberts75 and maybe also others... After People have reported some improvements in smoother and faster working of their N900 after the PR 1.3 update. The Need for speed Tips that Ceroberts75 has posted in his topic " Top 12 Maemo Issues and Fixes that Ceroberts" After the PR 1.3 update is it still required ?
    Following those tips for Need for speed, is it gonna make the device even more faster and smoother even after the PR 1.3 Update. is it still required after PR 1.3 update ?  

    ceroberts75 wrote:
    dont worry about it.  it is not going to hurt your device....
    but if you still feel like there is a little monster lurking around the corner that is going to get you, then when you uninstall the swappolube, it will automatically go back to stock settings.
    this is the same for the transition control.
    as for the speed and which one you should use....that kernel that you installed, enhanced kernel....  all the different speeds are fine. i have 2 units locked at 1.15ghz since it came out and prior to that, at 900mhz.  i have yet to see anything bad happen, ie-phone catching on fire or burning my face, or discoloring my elppa casing...oops...was that my outside typing fingers?  anyway...i would not have put it up there if  it wasnt safe to do so.
    have fun with it...you will not hurt your device doing so.
    Hey Ceroberts75,
    Sorry if I am asking you this again, But I am still not really satisfied. I am OK with Swappolube, But I want to delete this events.d.folder that it created when I accidentally also clicked on the store Tab (pls check the screenshot). How do I delete events.d.folder. I checked my entire phone I could not find it anywhere where has it gone and is hiding.
    I am ok with Swappolube but I don’t want the events.d.folder to store anything.
    is the events.d.folder associated with Swappolube? So if I uninstall swappolube will it also go away with swappolube !!
    Attachments:
    Swappolube.jpg ‏58 KB

  • NEED FOR INTERVIEW QUESTION SQL AND PL/SQL

    I am finished Oracle 9i OCA.Pls Anyone help me.Interview Questions for SQL and PL/SQL.

    Hi,
    first of all, It is not the right place for this question. Better Google it and you will find hell lot of information over there.
    Still, Give your email id, i will send you all the SQL/PLSQL interview question, I am having..
    Thanks
    KaMaL

  • Answers please for these questions

    Hi,
    The following are some questions which I have faced in an interview recently ... Can I get the answers for these ?
    1) In which format oracle stores the data ?
    2) How many cursors can I open ? If I want to limit the number of cursors what changes should I do ?
    3) Write a query using emp table, which shows only rows between 4 to 6 (only 4th, 5th and 6th record should be displayed) ?
    4) Write a query using emp table, which displays even records and odd records ?
    5) I have declared 3 procedures in a package declaration, if I declare only 2 procedures in package body, does it show any error ?
    6) If I declare a variable in package specification say x number and if I declare same variable within package body with some value, first of all, does oracle allow me to do that ? If yes, if I want to refer the value of that variable (declared in specification) how can I refer ?
    7) If i update sal of an employee from 1000 to 2000 (emp table), then I give select statement, after that I give alter command (to change length of ename), then give select statement again, then give rollback, then give select again .... what's value of sal for that employee (answer is 2000, since alter command commits all the changes to the database) .. Now my question is, if there are multiple instances running (with same username and password), can all the users see the change in the salary when the 1st user gives the alter command ?
    8) Write a query to display duplicate records of the table (taking emp table as an example)
    Regards

    1) In which format oracle stores the data ?
         http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/intro.htm#sthref35
    2) How many cursors can I open ? If I want to limit the number of cursors what changes should I do ?
         http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams138.htm#REFRN10137
    3) Write a query using emp table, which shows only rows between 4 to 6
       (only 4th, 5th and 6th record should be displayed) ?
    4) Write a query using emp table, which displays even records and odd records ?
         For both 3 and 4 the question you must ask is on what column the order is determined. I
         assume that the order is on empno.
         Answer for 3rd question.
         select *
           from (select row_number() over(order by empno) rno, e.*
                  from emp e)
          where rno between 4 and 6;
         Answer for 4th question.
         This is a home work for you. Hint is use the above query and modify a bit you get the answer.
    5) I have declared 3 procedures in a package declaration, if I declare only 2 procedures
       in package body, does it show any error ?
         You can try this by yourself. Just create it and see.
    6) If I declare a variable in package specification say x number and if I declare same
       variable within package body with some value, first of all, does oracle allow me to do that ?
       If yes, if I want to refer the value of that variable (declared in specification) how can I refer ?
            You can try this by yourself. Just create it and see.
    7) If i update sal of an employee from 1000 to 2000 (emp table), then I give select statement,
       after that I give alter command (to change length of ename), then give select statement again,
       then give rollback, then give select again .... what's value of sal for that employee
       (answer is 2000, since alter command commits all the changes to the database) .. Now my question is,
       if there are multiple instances running (with same username and password), can all the users see the change
       in the salary when the 1st user gives the alter command ?
            The answer would be YES. That is the purpose of COMMIT. Once data is commited
            then its visible to other sessions. And this one can also be tried by yourself.
    8) Write a query to display duplicate records of the table (taking emp table as an example)
         I will leave this one as home work for you. Hint is you can use eith GROUP BY or
         check out analytic function COUNT()...

  • HT201303 Answers forgotten for security questions

    I'm trying to make a purchase from iBooks for my iPad and after selecting to buy and entering my ITunes ID and password it then prompts me to answer security questions.  I don't recognize these questions, I've never had to answer questions to make purchases before.  This is so frustrating.  I want to get passed this so the book will download into my iPad

    Frequently asked questions about Apple ID - http://support.apple.com/kb/HE37 --> Can I change the answers to the security questions for my Apple ID?  --> Yes. You can change the answers to the security questions provided when you originally signed up for your Apple ID. Go to My Apple ID (http://appleid.apple.com/) and click Manage your account.
    Forgotten security questions - https://discussions.apple.com/message/18402551  and https://discussions.apple.com/message/18625296
    More involved forgotten question issues - https://discussions.apple.com/thread/3961813
    Kappy 09/2012 post about security questions - https://discussions.apple.com/message/19569468
    John Galt's tips (09&11/2012) - https://discussions.apple.com/message/19809294 and https://discussions.apple.com/message/20229239
    If none of the above work, contact iTunes Support at http://www.apple.com/support/itunes/contact/ and follow the instructions to report the issue to the iTunes Store.

  • Simple answer needed to complex question

    I said "simple" because, although a Mac user for many years, I have no knowledge of the tech angle (which gets me in trouble regularly.)
    In the last few days, my Safari started getting very slow on my iMac. I searched the forums and saw a suggestion that I discard a couple of files as well as "start in a safe mode" which required I do a restart with the shift key depressed.
    Here is where the strangeness began. Upon a restart after the safe mode, it would fire up, then after a minute or so, it would shut down. This happened a number of times.
    This is what I did: I started from my install disk and it fired up fine. I ran Disk Warrior and it resolved some issues, but said I had problems that could not be corrected.
    I had installed Application Enhancer a week or so ago and had no problems with the restart.
    Yes, I do have a number of 3rd party things, but have not suffered the failure to start that I now have.
    I guess my question is this: Have I done something that cannot be undone by starting in "Safe Mode" and if so, how do I undo what has been done? Also, what is safe mode and could it have corrupted something?
    By the way, I do not shut down any more or restart. I just let it sleep so that it will continue to run.
    Please, any suggestions (other than the obvious "reinstall Leopard") would be greatly appreciated.
    Thanks in advance!

    Which iMac do you have (would be helpful if you updated your signature)?
    I just recently read a post where several people had major problems with Applications Enhancer and needed to uninstall that app to get rid of the problems.
    When you ran Disk Warrior, what exactly did it fix and what were the problems that could not be resolved? Can you post or copy the screenshots/messages?
    Here's a link to the Apple article explaining safe mode:
    http://support.apple.com/kb/HT1564?viewlocale=en_US

  • Query need for following question

    ORD :
    ORD_ID
    ORD_DATE
    CUST_ID
    ORD_TOTAL
    CUST :
    CUST_ID
    CUST_NAME
    CITY
    Quest:
    ORD_ID either less than 10 or greate than 50 also ORD_TOTAL >5000 ?

    What have you tried yourself sofar?
    And again:
    Quit polluting this forum, please.
    You're not providing any details reqarding your requirement, database version and so on...
    Read: http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html
    And use CREATE TABLE + INSERT INTO statements, formatted by using the {noformat}{noformat}tag when you want to post an example.
    For example, if you post:
    {noformat} select *
    from emp;
    {noformat}
    it will appear as: select *
    from emp;
    on this forum.
    Tags are explained in the FAQ, so read that too: http://forums.oracle.com/forums/help.jspa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Simple help needed for cache question...

    Here's the deal...
    I want to allow the users to view cached pages via the browser back button.
    BUT, I want to be able to determine if the user clicks a link from one of
    the cached pages. If so, I can display a message that states something like
    "the page you are view has expired, please refresh...".
    This seems logical to me, though I haven't been able to come up with an
    exact solution.
    I've heard something about the use of sequence numbers stored in the
    session, but can't find anything on this.
    Help.

    Tricky...
    There's no mechanism that I know of to make the browser invalid a page in its cache only when a link is clicked on.
    There's no mechanism that I know of that exposes whether a page is fresh or cached to one of the client scripting languages, such as JavaScript.
    So the only thing I can think of is for you to do some pretty ugly things:
    1. Make all links go through a JavaScript validation process--i.e. use the onClick attribute of your anchor (a) tag like so:
    If your JavaScript method returns false, then the link will not be followed.
    So what does your JavaScript method do? Well, you could try doing some kind of timestamp comparison. For example, when the page is loaded, you can execute a JavaScript method in the <BODY> tag, like this:
    <body onLoad="javascript: someMethod()">
    and you could then set a timestamp variable. Then, when you have your links validated, you could compare the time elapsed, and if it's greater than x minutes, you could display your refresh message.
    OR, you could set a flag when the user clicks a link to a new page on the page, and then if they ever go back to the page in the cache, you could check the variable and if it has in fact been set, then you know you're looking at a cached copy.
    2. Disable client-side caching and serve everything fresh. This is probably the way to go; as you can tell, doing something different is a little messy.
    If there is a simple solution, let me know.

  • No longer have indication of need for synchronizing a folder

    My workflow in LR is to do all of my editing, etc. and then open Bridge and change all of the file names to reflect more discriptive titles. I then switch back to LR (4.3). In the past this would result in all of my edit pictures involved in this process showing the infamous question mark, BUT also the new discriptive names. I would then sync and all would be well. Now the file name does not change and the question mark does not show. The folder needs to be sync'ed and since I know that I do so and all of the titles then change in the LR view.
    One other piece of data - I installed win7 64 bit (was on 32 bit) and of course reinstalled LR and CS5. I suspect there is some preference setting I need to change to have LR reflect the new file name and thereby need a sync and so indicate it, but I don't know what it is. I could use some advice on this one. Thanks.

    colblip,
    It was not my intention to insult you. But your workflow goes totally "against the grain" of Lr.
    I know that some people insist on their workflow even if it is not optimal. But - and that is my experience from participating in the forum - they usually come to grief.
    It's absolutely fine if you find that Bridge is better for your workflow. But then, why don't you stay in Bridge?
    Mixing Bridge and Lr just doesn't work for the simple reason that Bridge saves to file while Lr saves to its catalog.
    And most experienced users of Lr agree on that Lr and Bridge don't mix well.
    And I used strong words to drive the point home that - indeed - you would do well familiarizing yourself more with Lr, because your current workflow is far from optimal.
    Please, don't take offence. But sometimes strong words are needed to drive a point home.
    You wrote: "this would result in all of my edit pictures involved in this process showing the infamous question mark, BUT also the new discriptive names."
    While it is correct that Lr would show the question mark, it would not display the new file names. Lr displays a question mark when the link between its catalog and the image file is broken. If Lr would display the new file name - created outside of Lr - there would be no need for a question mark.
    Lr would have displayed the changed file names only after <sychronizing folder> but not before.
    The correct way to handle the situation after changing the file name in Bridge would have been to relink the file. You do this by clicking directly onto the question mark (in Grid View) and by selecting <find missing file>, then navigating to and selecting the new file name. This procedure will preserve the Lr edits. But <Synchronize folder> does not.
    <Synchronizing folder> imports "new" images, i.e. the images are read and imported from an file, i.e. from the hard drive. While this procedure is OK for new files that haven't been imported into Lr before, with images already imported into Lr it will discard all catalog data related to this image and replace it with what is on disk. And since Lr stores the edits in its catalog, the edits are lost.
    There is only one way to avoid this: The catalog data has to be written to file before you change the file name.
    Are you beginning to see that your workflow is not optimal?
    You also wrote: "Now the file name does not change and the question mark does not show"
    It may be that the cells are compacted. In the Grid View go >View >Grid View Style and check <Expanded cells>.

  • Need the answers for following questions?

    can anybody  say the answers  for following questions?
    Data Dictionary :
    1) Diff between Append Structure and Include Structure ?
    2) What is Table Type ?
    3) How the table entries are going to store, Is it Case sensitive, or in Capital Letter or in Small letter or as we give ?
    4) How many indexes we can give for a table ?
    Reports :
    1) How can we enable the verticle scroll in a table control that comes in 2 nd screen of ME 21 T.code ?
    2) What is BSEG table  ?
    3) How can you create Table Control ?
    4) Diff between At Selection Screen on Field & At selection Screen Output ?
    5) What are things we need to take care before using the Read Statement ?Example of Read Statement with Index ?
    6) How many ways are there to select a Particular Data from the table ?
    7) I want fetch the 10 th row and 5 th column from the list, How will you do it ?
    BDC :
      1) If we write Transaction Statement 2 times for a application What happens ?
      2) If for Example , I had to upload 10 items for one header. The 5 items are uploaded, but the Sixth record is not uploaded ? How can you upload that data from 6 th Record ?
    3) Tell me the Detail Steps in uploading the Data from Application Server ?
    4) One Scenario, i am having 10 records in a file & when i am uploading the data everytime the 1st record is overlapping with already existing data, How you are going to handle this  ?
    5) What is meant by MASK in Upload function ?
    6) what are the parameters you will pass withine BDC_INSERT ?
    SAP- Script :
    1) I want to display quantity & Price based on Particular Language and Country in SAP Script , How we can do that ? One particular statement is there for that, What is that ?
    2) The Logo Upaloaded got Inverted , then How you are going to handle this situation ?
    3) The logo uploaded using RSTXLDMC programe, Where it is going to store ?
    4) can we see Tiff files in SE 78 T.code ? What are the file extension of Logo we can upload to SAP
    5) How to check the changes made in the standard layout set , other than using Utilities--- -> Print preveiw ?
    User Exit :
    1) Suppose i have used a fuction Module Exit, But is in Inactive status , What is The error it is going to give during runtime ?
    2) Suppose i want to delete the Function Module exit from one project and i want to use it for another project ? what are steps you follow to delete it  ?
    BADI
    1) Is that all the Predefined BADI's present  in SAP are reusable ?

    Data Dictionary :
    1) Diff between Append Structure and Include Structure ?
    Append Structure - This structure can be used only one time to append. Append structures are useful for standard tables.
    Include Structure - This structure can be used in multiple tables. Include structures are useful for our own custom tables.
    2) What is Table Type ?
    A table type is a type that describes the structure and functions of an internal table in the ABAP program. In simple words table table will act as an internal table without header line.
    3) How the table entries are going to store, Is it Case sensitive, or in Capital Letter or in Small letter or as we give ?
    Yes it is case sensitive.
    Use translate statement to convert Upper case or Lower case.
    4) How many indexes we can give for a table ?
    1 primary index automatically created and we can create up to 15 secondary indexes.
    Reports :
    1) How can we enable the verticle scroll in a table control that comes in 2 nd screen of ME 21 T.code ?
    set <tablecontrol>-lines = 0.this code you have to put in one suitable userexit.then it applies to standard tcode ME21N.
    2) What is BSEG table ?
    BSEG table is a FI table for Accounting Document details.
    3) How can you create Table Control ?
    controls : tabcont type tableview using screen '3000'.
    PROCESS AFTER INPUT
    MODULE mod AT EXIT-COMMAND.
    LOOP AT itab_table or LOOP "depending on whether we are using AT int_table
    MODULE modify_int_table.
    ENDLOOP.
    MODULE user_command.
    4) Diff between At Selection Screen on Field & At selection Screen Output ?
    AT-SELECTION SCREEN ON FIELD
    is to validate a particular selection screen field.
    if any error comes it will open only this field and other fields will be disabled.
    AT-SELECTION SCREEN OUTPUT
    is used to do dynamic screen modifications on the screen.
    5) What are things we need to take care before using the Read Statement ?Example of Read Statement with Index ?
    do sort before read data from table.
    6) How many ways are there to select a Particular Data from the table ?
    using views or directly u can select data.
    7) I want fetch the 10 th row and 5 th column from the list, How will you do it ?
    sorry...
    BDC :
    1) If we write Transaction Statement 2 times for a application What happens ?
    i think u got message like already that transaction was called like this..
    2) If for Example , I had to upload 10 items for one header. The 5 items are uploaded, but the Sixth record is not uploaded ? How can you upload that data from 6 th Record ?
    within the loop u have to write the code for the 6th record and then process again.
    3) Tell me the Detail Steps in uploading the Data from Application Server ?
    use DATASETS for uploading data from application server.
    4) One Scenario, i am having 10 records in a file & when i am uploading the data everytime the 1st record is overlapping with already existing data, How you are going to handle this ?
    write CLEAR statement before endloop.
    5) What is meant by MASK in Upload function ?
    sorry...
    6) what are the parameters you will pass withine BDC_INSERT ?
    TCODE-import parameter
    DYNPROTAB-tables parameter
    SAP- Script :
    1) I want to display quantity & Price based on Particular Language and Country in SAP Script , How we can do that ?
    One particular statement is there for that, What is that ?
    Actually u will get quantity and price based on language using SE63 transaction.it is used for language conversion.
    2) The Logo Upaloaded got Inverted , then How you are going to handle this situation ?
    just check the printer settings again.
    3) The logo uploaded using RSTXLDMC programe, Where it is going to store ?
    STXBITMAPS is the table which stores all the logos.
    4) can we see Tiff files in SE 78 T.code ? What are the file extension of Logo we can upload to SAP
    No we cannot upload .tiff files using SE78 ..here u can upload only bmp and jpg logos...if u want to upload .tiff files go to standard program RSTXLDMC..by using this you can do.
    5) How to check the changes made in the standard layout set , other than using Utilities--- -> Print preveiw ?
    by executing the formprogram.
    User Exit :
    1) Suppose i have used a fuction Module Exit, But is in Inactive status , What is The error it is going to give during runtime ?
    u didn't get any error message but that functionality cannot applied to it..thats it.
    2) Suppose i want to delete the Function Module exit from one project and i want to use it for another project ? what are steps you follow to delete it ?
    first go to that perticular project..within this u have one enhancement..just click on that one...and go to that function module which u are assigned..remove the code and activate..delete enhancement and activate that project..now u can use that enhancement in other projects.
    BADI
    1) Is that all the Predefined BADI's present in SAP are reusable ?
    here reusable means u can do multiple implementations for all BADI's.
    Rewards if it helpful.
    Dara.

  • I need to by apps but it keeps asking for my security questions ;/ but  forgot the answers to my security questions and the security/rescue email too (i dont have USA number to call please help me and send my rest to my email

    I need to by apps but it keeps asking for my security questions ;/ but  forgot the answers to my security questions and the security/rescue email too (i dont have USA number to call please help me and send my rest to my email

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (115668)

  • Need to reset my security question, don't remember the answer. Need for first time use on my ipad2

    Need to reset security q/a, don't remember the answer. Need for App store first time purchase on ipad2.

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    How to Manage your Apple ID: Manage My Apple ID

  • I forgot the answers to my security questions which I need to change my password for my apple id. What do i do?

    I forgot the answers to my security questions which I need to change my password for my apple id. What do i do?

    Click here for information. If the option to have the answers emailed to you isn't available or doesn't work(the email may take a few hours to arrive), contact the iTunes Store staff via the link in the 'Additional Information' section of that article.
    (90791)

  • HT1688 when trying to download apps on my daughters new iphone it is asking for answers to my security questions.  this account was set up a few years back, and the questions its giving me, i do not think they are the questions that i picked. need help

    my daughter is trying to download apps on her iphone and it keeps asking for answers to my security questions. the problem is, the questions its asking are not the questions i picked....i do not know the answers. how can i get around this?

    I was told that if you reset the password then u can get in and reset the security questions, but I am having problems with it. Apple also has a page on it in there support area, u just have to type it into the search engine and it gives u a list a messages about security questions and support pages.

Maybe you are looking for

  • Service Tax

    Hi , Pls Guru's help Service Tax Receivable & Payable – The Client wants to have a Service Tax Control Account that would be automatically populated for the particular bill / Invoice on the day of Vendor Payment and Customer Receipt. a.     Example –

  • Can't open web case until register product?

    This is my FOURTH time needing to have Adobe reset my account because it says I have "Too many activations".  Of course this is because every time I try to open the program I have to go through the activation setup process.  I have encountered a new

  • IE5=NATIVE IS'NOT WORKING PROPERLY

    Hi, I'm using IE5=native, but what happens is my form just shown the title. I already try IE5 with so many version up to 5.5 and from different machine, but the result always the same. Is This Feature (IE5=native) is not making properly by oracle or

  • The notepad app says waiting and will not respond. No other apps are waiting. I have rebooted the iPad to no avail

    My notepad app is greyed out and is labelled waiting. It will not respond. No other apps appear to be waiting. I have tried rebooting to no avail. Any suggestions?

  • Connect the Drive to a specific local path

    Hello! I have just started to work with Adobe Drive, and I am trying to build an example with a few levels of folders so I can see how it works, and how the assets are placed in it. I have changed the simplest project of helloworld and I am trying to