Selection of understanding... from the query timestamp

Hello

I'm stuck with this scenario where we offer production data the developer to achieve a purpose test by altering the critical columns of the company by an arbitrary value continues the update statement.

Now the problem is when we fire select... from the timestamp request, we are able to display the old corrupted data. I created an example test case scenario:

CREATE TABLE test1 (identification number);

added values:

SQL > select * from test1;

ID

----------

1

2

3

4

5

5

5

5

5

5

10 selected lines.

SQL > update test1 ID = 3 where id = 5;

6 lines to date.

SQL > commit;

Validation complete.

Now the data in the table are:

SQL > select * from test1;

ID

----------

1

2

3

4

3

3

3

3

3

3

10 selected lines.

Now when I fire from the timestamp query I am able to see old data:

SQL > select * from test1 from sysdate timestamp - 5/1440;

ID

----------

1

2

3

4

5

5

5

5

5

5

10 selected lines.

SQL > select flashback_on from database v$.

FLASHBACK_ON

------------------

NO.

SQL > show parameter recyclebin;

VALUE OF TYPE NAME

------------------------------------ ----------- ------------------------------

Recyclebin OFF string

Now, I would like to know where oracle recover old data. According to my knowledge, it's going to be fetch these data to undo tablespace If yes then I would like to know is possible to stop this because this could expose the old data of the contracting authority.

Note:-this isn't a good way to hide the data, but it is a call from management for not no opt data tool because of the license of masking

You could do a DOF that is not actually change anything:

orclz > dept desc;

Name                                                        Null?    Type

----------------------------------------------------------- -------- ----------------------------------------

DEPTNO NOT NULL NUMBER (2)

DNAME                                                                VARCHAR2(14)

LOC                                                                  VARCHAR2(13)

orclz > alter table dept change (dname varchar2 (14));

Modified table.

orclz > select * from the Department as of timestamp(systimestamp-1/24);

Select * from the Department as of timestamp(systimestamp-1/24)

*

ERROR on line 1:

ORA-01466: unable to read data - table definition has changed

orclz >

--

John Watson

Oracle Certified MAster s/n

Tags: Database

Similar Questions

  • passing multiple values from the query in the select statement of the procedure

    I am collecting IDS to select education agreement from the date of rental values and then I would pass the result of the query in the statement select to get the result.
    data type for the contract id is of type varchar and date of rental there is more than one id to contract for most of the time. Help, please. Thank you

    CREATE OR REPLACE PROCEDURE abstract_menu (p_letting   IN     VARCHAR2,
                                               p_results      OUT SYS_REFCURSOR)
    IS
       v_contractId   VARCHAR2 (40);
    
    SELECT lcontid
      INTO v_contractId
      FROM letprop
     WHERE datestat IS NOT NULL AND letting = p_letting AND letstat <> 'R';
    
    
    BEGIN
       OPEN p_results FOR
            SELECT DISTINCT
                      SUBSTR (l.letting, 3, 2)
                   || '-'
                   || SUBSTR (l.letting, 5, 2)
                   || '-'
                   || SUBSTR (l.letting, 1, 2)
                      lettingdate,
                   l.lcontid contractid,
                   SUBSTR (q.cprojnum, 1, 10) projectnumber,
                   DECODE (TRIM (MIN (j.route)), NULL, 'N/A', TRIM (MIN (j.route)))
                      routenumber,
                   L.DATESTAT statusdate,
                   L.LETSTAT lettingstatus,
                   (q.cdescr) jobdescription,
                   INITCAP (q.clocat1 || q.clocat2) LOCATION
              FROM vendor v,
                   vendaddr r,
                   letprop l,
                   planhold p,
                   proposal q,
                   project j,
                   propproj k,
                   bidlet bd
             WHERE     v.vendor = r.vendor
                   AND k.contid = q.contid
                   AND k.pcn = j.pcn
                   AND l.lcontid = k.contid
                   AND p.vendor = v.vendor
                   AND l.letting = p.letting
                   AND l.lcontid IN v_contactid  "**************This is where I would like to pass the contract id from the above select statement***********'"
                   AND l.CALL = p.CALL
                   AND r.addrnum = p.billto
                   AND bd.letting = l.letting
          GROUP BY q.cdescr,
                   q.clocat1,
                   q.clocat2,
                   bd.letting,
                   l.letting,
                   l.lcontid,
                   q.cprojnum,
                   L.LETSTAT,
                   L.DATESTAT
          ORDER BY lettingdate;
    
    end;

    user9196150 wrote:
    AND l.lcontid IN v_contactid ' * this is where I would like to pass the id of the select statement above contract * ""»

    CREATE OR REPLACE PROCEDURE abstract_menu (p_letting   IN     VARCHAR2,
                                               p_results      OUT SYS_REFCURSOR)
    IS
    BEGIN
       OPEN p_results FOR
            SELECT DISTINCT
                      SUBSTR (l.letting, 3, 2)
                   || '-'
                   || SUBSTR (l.letting, 5, 2)
                   || '-'
                   || SUBSTR (l.letting, 1, 2)
                      lettingdate,
                   l.lcontid contractid,
                   SUBSTR (q.cprojnum, 1, 10) projectnumber,
                   DECODE (TRIM (MIN (j.route)), NULL, 'N/A', TRIM (MIN (j.route)))
                      routenumber,
                   L.DATESTAT statusdate,
                   L.LETSTAT lettingstatus,
                   (q.cdescr) jobdescription,
                   INITCAP (q.clocat1 || q.clocat2) LOCATION
              FROM vendor v,
                   vendaddr r,
                   letprop l,
                   planhold p,
                   proposal q,
                   project j,
                   propproj k,
                   bidlet bd
             WHERE     v.vendor = r.vendor
                   AND k.contid = q.contid
                   AND k.pcn = j.pcn
                   AND l.lcontid = k.contid
                   AND p.vendor = v.vendor
                   AND l.letting = p.letting
                   AND l.lcontid IN (
                                     SELECT  ll.lcontid
                                       FROM  letprop ll
                                       WHERE ll.datestat IS NOT NULL AND ll.letting = p_letting AND ll.letstat  'R'
                                    )
                   AND l.CALL = p.CALL
                   AND r.addrnum = p.billto
                   AND bd.letting = l.letting
          GROUP BY q.cdescr,
                   q.clocat1,
                   q.clocat2,
                   bd.letting,
                   l.letting,
                   l.lcontid,
                   q.cprojnum,
                   L.LETSTAT,
                   L.DATESTAT
          ORDER BY lettingdate;
    
    end;
    /
    

    SY.

  • How to remove the newline from the query output?

    Hello

    How to remove the newline from the query output?
    have tried to replace select (column_name, Chr (10), ' ') from table_name.

    Published by: GreenHorn 11 Sep, 2008 12:53 AM

    Please consider, that windows uses a sequence of chr13 | Chr (10) Unix uses only a single character CHR (10).
    The new line characters may depend on the operating system.

    You might consider with:

    Replace (replace (column_name, Chr (13) |)) CHR (10), ' '), CHR (10),' ')

    Hartmut

    Published by: hartmutm on 11.09.2008 01:32

  • When I type or paste a URL into the address bar or select a url from the address bar dropdow, the "enter" button does nothing. I have to press the green arrow to load the url?

    Each time it manually to enter a url, past a url, or select a url from the address bar, the system requires that I click on the green arrow to go to the url. The entrance to key doe nothing. Am I the only one having this problem?

    This problem may be caused by an extension (possibly AVG Safe Search) which does not work properly.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

    If this does not work in mode without failure, then disable all extensions and then try to find out who is the cause by allowing both the problem reappears.

    • Choose "Disable all add-ons" on issues to troubleshoot Firefox in Safe Mode to set window to disable all extensions.
    • Close and restart Firefox after each change through "file > exit ' (Mac: ' Firefox > leave";) Linux: "file > exit ')

    In Firefox 4, you can use one of them to start in the questions to troubleshoot Firefox in Safe Mode:

    • Help > restart with disabled modules
    • Hold down the SHIFT key while double-clicking the shortcut from the desktop Firefox (Windows)
  • The response from the query web service

    Hello


    I would like to apply for assistance in creating an appropriate query to process the response from the web service.

    This is the outdated response from the web service and my unsuccessful attempt to treat.


    PROCEDURE PRIMER_4B AS
    XML_WS XMLTYPE.
    CLOB DONNEES_XML
    ': = ' < s: Envelope xmlns:S = 'http://schemas.xmlsoap.org/soap/envelope/' > '.
    < Body >
    "< ns2:getDataResponse xmlns:ns2 ="http://service.anyxxx.com/">."
    < return >
    < id > 124 / < ID >
    < name > Ana < / name >
    < / return >
    < / ns2:getDataResponse >
    < / Body >
    < / s: Envelope > ';

    CSR OF CURSOR IS
    SELECT C.
    FROM XMLTable)
    XMLNamespaces)
                 ' http://schemas.xmlsoap.org/SOAP/envelope/ ' LIKE 'SOAP'
    , by default ' http://service.anyxxx.com/
    )
    , ': soap envelope / soap: Body/getDataResponse/back '
    PASSAGE XML_WS
    path id varchar2 columns (20) "id."
    path of the varchar2 (30) name 'name '.
    ) C   ;
    rec_CSR CSR % ROWTYPE;

    BEGIN
    XML_WS: = xmltype (donnees_xml);
    Open the CSR;
    LOOP
    EXTRACT THE CSR IN REC_CSR;
    DBMS_OUTPUT. Put_line (' Output: ' |) REC_CSR.ID |'   '|| REC_CSR. (Name)
    When the exit CSR % notfound;
    end loop;
    DBMS_OUTPUT. Put_line('Total:'||) CSR % ROWCOUNT);
    close the CSR;
    END PRIMER_4B;

    The result is:
    Output:
    Total 0


    Thank you
    Kostadin

    Hello

    This part does not:

    default 'http://service.anyxxx.com/'.

    If you declare this uri as the default namespace uri, then 'return', 'id', 'name' nodes are supposed to be in this namespace, which is not correct, because they are in any workspace names.

    Solution: give a specific prefix of the namespace above and reference it accordingly in the XQuery expression:

    C. SELECT

    FROM XMLTable)

    XMLNamespaces)

    "http://schemas.xmlsoap.org/soap/envelope/" AS "SOAP."

    , 'http://service.anyxxx.com/' as 'ns2.

    )

    , ': soap envelope / soap: Body / ns2:getDataResponse / back '

    PASSAGE XML_WS

    Path id varchar2 COLUMNS (20) "id".

    , path of the varchar2 (30) name 'name '.

    ) c ;

  • Little help from the query

    small request I have given as below,




    Month ProductNo CustomerNo units

    9001 1001 Jan - 09 100
    9002 1002 Jan - 09 200
    9003 1003 Jan - 09 300
    Jan 9001 400 ABCCustomer
    9002 1004 Jan - 09 500



    for all record - if column - customerNo starts with digital it must show as CN_ * other wise of the same name.



    Result must be


    9001 100 CN_1001-09 Jan
    9002 200 CN_1002-09 Jan
    9003 300 CN_1003-09 Jan
    Jan 9001 400 ABCCustomer
    9002 500 CN_1004-09 Jan


    Can help get the query

    A logic that is easier to implement this is as below

    SQL> with t as (select 'jan' Month, 9001 ProductNo,'1001-09'  CustomerNo,100 Units from dual union all
      2  select 'jan', 9002, '1002-09', 200 from dual union all
      3  select 'jan', 9003, '1003-09', 300 from dual union all
      4  select 'jan', 9001, 'ABCCustomer', 400 from dual union all
      5  select 'Jan', 9002, '1004-09', 500 from dual)
      6  select month,productno,case when upper(substr(customerno,1,1))=lower(substr(customerno,1,1))
      7  then 'CN_'||customerno else customerno end customerno,units from t;
    
    MON  PRODUCTNO CUSTOMERNO          UNITS
    --- ---------- -------------- ----------
    jan       9001 CN_1001-09            100
    jan       9002 CN_1002-09            200
    jan       9003 CN_1003-09            300
    jan       9001 ABCCustomer           400
    Jan       9002 CN_1004-09            500
    

    TRY WITH THIS upper (substr(customerno,1,1)) = lower (substr(customerno,1,1))

  • Select a choice from the table of the ADF

    Hello

    does anyone know how to convert a column in a table in the ADF to display a list of values in a control of first choice select?

    I want to allow the user to select a value from a drop-down inside the table.

    Thank you

    Hello
    Welcome to OTN forum and always mention your version JDev,.
    Hope that follows will be useful

    SelectOneChoice and ADF Table
    http://www.gebs.ro/blog/Oracle/Oracle-ADF-selectonechoice-table-filter-for-lov-column/

  • Selection of articles from the different sectors of activity

    Hello

    I am trying to build a report where I have to select items from different sectors, but as soon as I select the item (criteria) main for my report, some areas are disabled Affairs (or what you call) and I am unable to make a selection for a particular element of these sectors of activity.

    Why? and how can I select any business, I want?
    Because of limited responsibilities?
    Where and how can I change/add in sql to include that particular item in the report.

    Thank you!
    N

    Hi N
    First of all there should be joins activated between folders in the different sectors. If these were not created then the other business sectors will be grayed out.

    This is where I would look first.

    You can also share folders between multiple sectors of activity, and I think in general it's the most effective way. In this way, you don't need to give multiple sectors of activity to get a work report.

    To share folders, here's a workflow:

    1. start the administration tool
    2. from the menu bar, select Tools | Managing
    3. Select the folder tab
    4 find the folder you want to share by using the drop-down next to the Word file:
    5. you should see on the left business districts and areas of current activity on the right
    6. in the list of available business districts, find the one you want to share the folder with and move it to the list of the current areas of the company
    7. click on the OK button
    8. do not forget to place the shared folder in a position siutable in your newly shared industry

    WARNING: when you share a folder, it is really shared. What you do in the folder in a field that will appear in the other. You can therefore not named one thing in one and something else in another. If you need to have different names for the same file in different sectors of activity that you need to copy the folder not share it.

    To copy a folder, here's the workflow:
    1. start the administration tool
    2. open the two sectors of activity
    3. spread the business area that has the folder
    4 navigate to the folder and place your cursor on it so that it appears highlighted
    5. press CTRL + C to copy the file in memory
    6. place your cursor on the name of the business to that area you want to copy the file
    7. press CTRL + V to finish copying
    8 rename the copied folder to give it an appropriate name (rename the recipient too)
    9 do the necessary joins from / to the folder copied to other folders in the business district
    10 any other changes, you need to rename items, by hiding elements, add conditions and so on

    Best wishes
    Michael

  • Command to refresh a calculated field when you select an option from the drop-down list box

    When my form user selects an option in a drop-down list box, the value in the field (in this case, Total) I would like to update, but it isn't.

    A radio button option box makes the Total-development field to automatic update when the user clicks on the radio button. But the drop-down list box is not updated Total (without clicking away from the field). I would like to add a command in the Combo Box to refresh the Total field when you selected the option to drop-down list box.

    Someone at - it a code (Javascript?) to get there.

    Thank you very much.

    You don't need a script, simply select the 'Value selected to validate immediately' checkbox on the Options tab of the dialog list box drop-down list box field properties.

  • When you perform the query from the query, it assumes that the field is numeric

    I have a query that has 30 some files inside from an AS400 file. Now, when I do a query on the query, he thinks one of the columns is a numeric field, even if it is not. Now I do the same thing with another query (with the same file and fields, just different data) and it works fine.

    This is the error I get: the 73 "d" value cannot be converted to a number

    This column looks like this for example
    75
    75
    71
    71
    75
    73
    75
    63%
    etc. (the 73D is the only one in this column)

    Now in the query of queries I question not even this field (there are about 10 fields in the query, and I want the results of one) and then I get the above error. Any ideas?

    Thanks in advance,
    CJ

    CJ wrote:
    > I have a query that has 30 some files inside from an AS400 file. Now when I do

    you create the original query? If so, create the AND define the data types:

    newQ = QueryNew ("user, lastLogin, manager", "varChar, time, bit");

    > a query on the query, he thinks one of the columns is a digital, same field
    > if it's not. Now do the same thing with another application (with the same file
    (> and fields, just different data) and it works fine.
    >
    > This is the error I get: the 73 "d" value cannot be converted to a
    > number
    >
    > This column looks like this for example
    > 75

    CF will build the query result based on the first line of data (if you are not
    define the data types in the original query), which resembles digital data.

    > 73D

    Thus, when it hits this row it will fail.

    If you do not use the data in that column, and then not put it back. Otherwise, use it.
    Method CAST dan suggested.

  • [ADF, JDev12.1.3] (1) creating a "select a Choiche" from a query 2-fields and 2) to get the key of the selected element?

    Hallo,

    I have a VO based query, that query is like that...

    Select field1 as keyField, Field2 as valueField

    table

    By dragging the VO istance in the page I want to create a Choiche a Select...

    The list should show only the values of valueFields.

    Moreover, in my bean I need to get the keyField to the selected line (not the valueField).

    You kindly could you tell me which is the right approach to create the list choiche and what code I use to get the keyField to the selected item in the list?

    Thank you very much

    Federico

    Google would be useful.

    https://tompeez.WordPress.com/tag/afselectonechoice/

  • How can 1 derive / display 3 second interval lines from the existing timestamp values

    Hello

    I'm trying to produce the number of lines that occur in intervals of 3 seconds and cannot work out how to use the timestamp values existing in the table of products or the display of lines with a second gap 3? The table rows look like this:

    NAME (EDT) 1

    1111 JANUARY 30, 15 12.29.09.000000000

    PPPP JANUARY 30, 15 12.29.10.000000000

    PPPP JANUARY 30, 15 12.29.11.000011111

    1111 JANUARY 30, 15 12.29.11.000055555

    PPPP JANUARY 30, 15 12.29.17.000000000

    PPPP JANUARY 30, 15 12.29.18.000000000

    1111 JANUARY 30, 15 12.29.29.000000000

    PPPP JANUARY 30, 15 12.30.23.000000000

    PPPP JANUARY 30, 15 12.30.25.000000000

    1111 JANUARY 30, 15 12.30.27.000000000

    PPPP JANUARY 30, 15 12.30.29.000000000

    PPPP JANUARY 30, 15 12.30.31.000000000

    1111 JANUARY 30, 15 12.30.33.000000000

    PPPP JANUARY 30, 15 12.30.35.000000000

    PPPP JANUARY 30, 15 12.30.37.000000000

    1111 JANUARY 30, 15 12.30.39.000000000


    And the output that I'm trying to reach/drift (initially) is as follows:


    Timestamp1                            Count

    30 JANUARY 15 12.29.09 4

    JANUARY 30, 15 12.29.12 0

    JANUARY 30, 15 12.29.15 1

    JANUARY 30, 15 12.29.18 1

    JANUARY 30, 15 12.29.21 0

    JANUARY 30, 15 12.29.24 0

    JANUARY 30, 15 12.29.27 1

    JANUARY 30, 15 12.29.30 0

    JANUARY 30, 15 12.30.30 1

    JANUARY 30, 15 12.30.33 1

    JANUARY 30, 15 12.30.36 1

    JANUARY 30, 15 12.30.39 1


    Thus, the main problem that I see trying to derive the first column of numbers as shown above. If someone could give me help on this I would be very grateful.


    Kind regards


    Kevin.


    with (name, time 1) testdata until)

    Select "1111", to_timestamp (January 30, 15 12.29.09.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.29.10.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.29.11.000011111', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "1111", to_timestamp (January 30, 15 12.29.11.000055555', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.29.17.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.29.18.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "1111", to_timestamp (January 30, 15 12.29.29.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.30.23.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.30.25.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "1111", to_timestamp (January 30, 15 12.30.27.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.30.29.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.30.31.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "1111", to_timestamp (January 30, 15 12.30.33.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.30.35.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "PPPP", to_timestamp (January 30, 15 12.30.37.000000000', 'dd-mon-yy hh24:mi:ss.ff') of all the double union

    Select "1111", to_timestamp (January 30, 15 12.30.39.000000000 ',' dd-mon-yy hh24:mi:ss.ff "") of the double

    )

    , d (mn, mx, cnt) as)

    Select min (time1) - second "3" interval

    , max (time1) - interval of second '3'

    ,      -1

    of testdata

    Union of all the

    Select

    MN + interval of second '3'

    mx

    , (select count (*) in testdata where time1 > = mn + '3' second interval and time 1)< mn="" +="" interval="" '6'="">

    d

    where mn<=>

    )

    Select

    MN

    cnt

    d

    where NTC! = - 1

    Mn, mx, NTC group

    Agenda minutes;

  • TestStand 2014 freezes when I select a path from the project during an Action LabVIEW using LabVIEW TERM 2014

    In the company that I work, we have a solution that uses the two TestStand 2014 and 2014 LabVIEW.

    We work with the development version of the two, but we are deploying our automation using TestStand and Labview Runtime engine 2014.

    We tried to deploy a new station, but during the analysis of our project, the User Interface for Teststand (version Deploy) froze.

    I tried several things and decided to install a full version of TestStand 2014 and 2014 LabVIEW to try to debug the problem.

    What I've discovered is that when I create a new sequence in TestStand, add a VI Action and try to load the path to the project, the TestStand freezes if I use the adapter Runtime.

    If I go to the LabVIEW development system adapter in TestStand, it works. However, I need to use the Runtime since it's free while the LabVIEW Development is paid.

    We already use our solution in other places, and this is the first time, it never happened. The only post I found online that had something to do with this issue is this.

    If I remove the path of the project and call the VI himself, as "dvu", said in his second post, it works.

    However, it is something not good to do in our automation together, since we have several calls from LabVIEW.

    Any ideas on how to do this only works with 2014 DURATION and 2014 Runtime LabVIEW TestStand?

    Thank you!

    Thanks a lot Stop_Luke_and_Listen, but the guy where the deployment was made called the support NEITHER and they couldn't find the problem, so they formatted the PC.

    Now it works very well, so I won't be able to generate the report. It would have been a great idea.

    Thank you!

    SOLUTION: Format the PC and reinstall.

  • Fast Windows asks me to select a user from the list, but there is no user on the list to select

    Here's how stupid I am. I recently tried a problem with my control panel. I couldn't open half of the icons in the Control Panel folder for "Windows/rundll32.exe is not found" after some internet research, I tried various ways to solve this problem. To resolve this problem, I had to be the administrator. I bought the computer out of Craigslist and have no idea what happened to the previous administrator password. I disabled somehow the administrator user and all users. Essentially, when I start my computer, I gives me the splash screen windows XP telling me to "click on a user" in the list but there is no list of users. My only option is to close. I tried to hit CTRL/alt/del, which brings up a window where the user is the administrator and he asks me for the password that I have no idea what it is. I have looked through the commissioning in BIOS and Boot mode but do not know how I can bypass the first screen prompts the user of Windows XP. I locked myself out of my computer. Someone please Help! The computer came with Windows XP Professional already installed, so I don't have too much of the Windows CD.

    Hi CheddarBob,

    We recommend to start your computer in safe mode and check if you can connect to windows using the default administrator user account. To do this, try the following steps:
    a. start your computer and press the F8 key to display the advanced startup options.
    Hit and b. Select safe mode enter.
    c. connect on the default administrator user account.

    Note: You can also try to start your computer in "Last known good configuration" and check the result.

    See start the computer in safe mode

    If nothing works, then going to use Windows XP disc to continue to solve the problem.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to select a contact from the address book?

    Hello

    I want to select a contact in address book and view it in a BasicEditField of my application.

    What I've done so far is, can call using address book following code.

    AddressBookArguments addressBook = new AddressBookArgumentsAddressBookArguments.ARG_COMPOSE);
    
    Invoke.invokeApplication(Invoke.APP_TYPE_ADDRESSBOOK, addressBook);
    

    But I don't have an idea on how to add selected phone contact to BasicEditField specified.

    can someone give me some information about this.

    any help will be much appreciated.

    Thank you.

    Narendra

    Fill in the address book of your application and use it.

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800363/How_To _...

Maybe you are looking for