DBMS_STATS. GATHER_SCHEMA_STATS in One SE edition


Hello

We are in 11.2.0.4 Standard Edition One. is DBMS_STATS. Included GATHER_SCHEMA_STATS in SE edition license?

Thank you and best regards.

Yes: is included: I checked my 11.2.0.4 database. In the Se you can not run this in parallel...

Tags: Database

Similar Questions

  • If errors on the temp space dbms_stats.gather_schema_stats will it continue?

    Hi guru

    Situation...
    8.1.7 database,
    Running dbms_stats.gather_schema_stats (ownname = > 'SCHEMA_NAME', options = > 'GATHER EMPTY');
    Three tables have stats need, (small) table1, table2 (very large, more grand then TEMP available), table 3 (little)
    Table 1-statistics collected
    table 2-errors on TEMP

    ???
    Dbms_stats will continue to table3 or stops? Since it is an OLDER version, stats of locking is not available...

    Any help is appreciated...

    Jeff.M

    The GATHER_SCHEMA_STATS would fail.

    If the schema has only 3 tables, you could write 3 separate orders of GATHER_TABLE_STATS, with the largest table with a value less than ESTIMATE_PERCENT.

    Hemant K Collette

  • DBMS_STATS.gather_schema_stats: ORA-06502

    I am trying to run under block to find all objects with stale stats. Is someone can you please tell me what I'm missing?

    Set serveroutput on;

    DECLARE

    ObjList dbms_stats. ObjectTab;

    BEGIN

    DBMS_STATS. GATHER_SCHEMA_STATS (ownname = > null, OPTIONS = > "LIST out of DATE", objlist = > ObjList);

    FOR i IN ObjList.FIRST... ObjList.LAST

    LOOP

    dbms_output.put_line (ObjList (i). ObjName | ' ' || ObjList (i). Type of the object);

    END LOOP;

    END;

    /

    ORA-06502: PL/SQL: digital error or value

    ORA-06512: at line 5

    06502 00000 - "PL/SQL: digital error or the value of %s.

    * Cause: A digital arithmetic error, String, conversion or coercion

    has occurred. For example, this error occurs if an attempt is made to

    assign the NULL value to a variable declared NOT NULL, or if a

    attempt to assign an integer greater than 99 to a variable

    NUMBER (2) declared.

    * Action: Change the data, how it is handled, or how it is so declared

    that values do not violate the constraints.

    Using the Oracle 12 c on Windows 7 version

    You do not currently have all stale stats, so the dbms_stats. ObjectTab is empty.  Take into account:

    SQL > create type test_type as the object)

    col1 2 varchar2 (10));

    3.

    Type of creation.

    SQL > create type test_tab as table of test_type.

    2.

    Type of creation.

    SQL > declare

    l_tt 2 test_tab;

    3. start

    4. Select test_type (dummy)

    5 bulk collect into l_tt

    6 double

    7 where 1 = 2;

    8 because I in l_tt.first... l_tt loop. Last

    9 dbms_output.put_line (l_tt (i) .col1);

    10 end of loop;

    11 end;

    12.

    declare

    *

    ERROR on line 1:

    ORA-06502: PL/SQL: digital error or value

    ORA-06512: at line 8 level

    You should test if there is in fact no value before attempting to access the object.

    SQL > declare

    l_tt 2 test_tab;

    3. start

    4. Select test_type (dummy)

    5 bulk collect into l_tt

    6 double

    7 where 1 = 2;

    8 if l_tt.count > 0 then

    9 because loop me in l_tt.first... l_tt. Last

    10 dbms_output.put_line (l_tt (i) .col1);

    11 end of loop;

    12 on the other

    13 dbms_output.put_line ('no statistics obsolete');

    14 end if;

    15 end;

    16.

    No stale stats

    PL/SQL procedure successfully completed.

    John

  • Is the photographer of the PS one unmounted edition or a silent version?

    I just changed to CC members of the PS only to the photographer of the PS and Lightroom package. When I installed PS on my laptop is seems a little different from my previous version. My version of the PS Office now looks on the laptop.

    Thanks for any information.

    John

    Nope, it's the full Extended version. The plan of photography is just a special offer for photographers, thanks in part to Thomas Knoll, one of the inventors.

  • DBMS_STATS. GATHER_schema_STATS METHOD_OPT = > 'FOR COLUMNS SIZE AUTO '.

    Hi all

    What is the difference between METHOD_OPT = > 'For the COLUMNS SIZE AUTO' and METHOD_OPT = > 'for all COLUMNS SIZE AUTO' option to DBMS_STATS. GATHER_SCHEMA_STATS?

    user13071592 wrote:
    I'm collecting statistics by level of schema only.
    I know that this option is not correct according to the link you posted.
    but the option work fine in Oracle 9i. I have faced the problem with this when my database got Oracle 9i to Oracle 11 g.

    It just took me about five minutes to perform a little test on 9i to see what you get:

    execute dbms_stats.gather_schema_stats('XXX', method_opt=>'for columns size auto');
    

    The option out to not be valid, but it is accepted and seems to give you at the level of statistical tables only, no column, no index stats stats.
    When you include the option "ALL" in 11g to get the correct syntax, you probably found stats column with histograms (which can be expensive) and stats index (which can be expensive).

    If 11g allows you to use nethod_opt => "for the table", so this, combined with the cascade-online fake, can give you the same results you had for 9i - roughly the same speed. It is not a good option for a production system, however.

    Concerning
    Jonathan Lewis

  • DBMS_STATS. Too long GATHER_SCHEMA_STATS

    Hello
    in 10g R2 the next post take 16 hours. From 13:00 to 04:00 (next day):
    execute DBMS_STATS.GATHER_SCHEMA_STATS ( 'SYSADM');
    Wouldn't be any parameter to be added to make it faster?

    Thank you.

    I created this work in DB control connected as SYS.

    Check with

    execute DBMS_STATS.GATHER_SCHEMA_STATS ( 'SYSADM', degree=>PARALLELISM_DEGREE_YOU_WANT);
    
  • Enterprise Manager error DBMS_STATS

    A task is scheduled to make on a 10g R2 dbms_stats

    In the PL/SQL block, we have:

    Start
    exec dbms_stats.gather_schema_stats (ownname = > 'myTest', options = > 'COLLECT', estimate_percent = > dbms_stats.auto_sample_size, method_opt = > 'for all columns size auto', cascade = > true, level = > 7);
    exec dbms_stats.gather_schema_stats (ownname = > 'myDev', options = > 'COMPILE', estimate_percent = > dbms_stats.auto_sample_size, method_opt = > 'for all columns size auto', cascade = > true, level = > 7);
    end;


    The error is

    ORA-06550: line ORA-06550: line 2, column 8: PLS-00103: encountered the symbol 'DBMS_STATS' when waiting for one of the following values: =. ( @ % ; The symbol ': = ' was replaced by "DBMS_STATS" continue. ORA-06550: line 3, column 6: PLS-00103: encountered the symbol 'DBMS_STATS' when waiting for one of the following values: =. ( @ % ; The symbol ': = ' was replaced by "DBMS_STATS" continue. column:


    How to fix?

    You do not use EXEC inside a pl/sql block.

    For example.

    TUBBY_TUBBZ?exec dbms_stats.gather_table_stats(user, 'PARTY_TIMES');
    
    PL/SQL procedure successfully completed.
    
    begin
    exec dbms_stats.gather_table_stats(user, 'PARTY_TIMES');
      3  end;
      4  /
    exec dbms_stats.gather_table_stats(user, 'PARTY_TIMES');
         *
    ERROR at line 2:
    ORA-06550: line 2, column 6:
    PLS-00103: Encountered the symbol "DBMS_STATS" when expecting one of the following:
    := . ( @ % ;
    The symbol ":=" was substituted for "DBMS_STATS" to continue.
    
    begin
       dbms_stats.gather_table_stats(user, 'PARTY_TIMES');
    end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    TUBBY_TUBBZ?
    
  • Error executing package DBMS_STATS

    Hi all.

    Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64 bit Production
    PL/SQL Release 9.2.0.4.0 - Production
    CORE Production 9.2.0.3.0
    AMT for Solaris: release 9.2.0.4.0 - Production
    NLSRTL Version 9.2.0.4.0 - Production

    I'm trying to collect statistics of schema using the dbms_stats package and I see the following:

    SQL > BEGIN DBMS_STATS.gather_schema_stats ('SYSADM');
    2 END;
    2 N

    ERROR on line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN legend
    ORA-29400: data cartridge error
    KUP-04040: file G534513 - 1004.txt in EXT_WINDIR not found
    ORA-06512: at "SYS." DBMS_STATS", line 9375
    ORA-06512: at "SYS." DBMS_STATS", line 9857
    ORA-06512: at "SYS." DBMS_STATS", line 10041
    ORA-06512: at "SYS." DBMS_STATS", line 10095
    ORA-06512: at "SYS." DBMS_STATS", line 10072
    ORA-06512: at line 1

    The directory already exists, but the file is long gone. How can I work around this error?

    Thank you

    This information should be user_external_locations or dba_external_locations.

    Kind regards
    Bob

  • DBMS_STATS.gather_schema job

    Hello
    I used the following script to collect stats of the particular scheme, now I wanted this would work through possible. I tried, but it gave error that my script is

    exec dbms_stats.gather_schema_stats ('RAMDISK1', options = > 'COMPILE', estimate_percent = > 10, cascade = > TRUE, LEVEL = > 7)

    by operating in sqlplus it runs successfully, but I when I use start end it gives error please help me how to run in my script to work is

    BEGIN
    () sys.dbms_scheduler.create_job
    job_name = > ""SYS"". "" GATHER_STATS_TEST' '.
    job_type = > 'PLSQL_BLOCK ',.
    job_action = > ' start
    DBMS_STATS.gather_schema_stats ('RAMDISK1', options = > 'COMPILE', estimate_percent = > 10, cascade = > TRUE, LEVEL = > 7) end;',
    schedule_name = > ""SYS"". "" STATS_SCHH' '.
    job_class = > ' «DEFAULT_JOB_CLASS»»
    auto_drop = > FALSE,
    enabled = > TRUE);
    end;

    Error

    ORA-06550: line 2, column 1: PLS-00103: encountered the symbol 'DBMS_STATS' when waiting for one of the following values: =. ( @ % ; The symbol ': = ' was replaced by "DBMS_STATS" continue. ORA-06550: line 2, column 40: PLS-00103: encountered the symbol "RAMDISK1" at awaits one of the following values :), * & = - + <>/ is mod remains not rem = > < an exponent (*) > <>or! (= or ~ = > = < = <>and or as like2 like4 likec in reports between usi ORA-06550: line 2, column 74: PLS-00103: encountered the symbol "GATHERING" at the expected as follows :)), * & = - + <>/ at is mod remains not rem < an exponent (*) > <>or! = or ~ = > = < = <>and or as like2 like4 likec between | multiset Member ORA-06550: line 3, column 1: PLS-00103: encountered the symbol "END" when waiting for one of the following values: (* % & = - +; <>/ at is mod remains not rem < an exponent (*) > <>or! = or ~ = > = < = <>and or as between like2 like4 likec | multiset members)

    Start
    DBMS_STATS.gather_schema_stats ('RAMDISK1', options => 'COMPILE', estimate_percent-online 10, cascade-TRUE, online DEGREE-online 7);
    end;
    /

    Note the conclusion.

    ----------------
    Sybrand Bakker
    Senior Oracle DBA

  • Windows Live Photo Gallery: why photo does not disappear after editing?

    I have uploaded the pictures... they appear in Windows Live.  I select photo, edit it, and then close the file.  Tell me that the photo is ' Save... click Cancel to revert to original "or something like that.  Automatically all other photos that I downloaded are there but the one I edited.  I know it's probably a setting that I have implemented, but can't understand what the change is... Have not had any problems until this last download of digital photo.

    This has been spread recently and is apparently related
    at McAfee. Edition/rotation photos become hidden.

    The files are not missing... they are hidden.  Try changing the
    next parameter and the photos should reappear.

    Windows Vista - Show hidden files
    http://Windows.Microsoft.com/en-us/Windows-Vista/Show-hidden-files

    Windows 7 - show hidden files
    http://Windows.Microsoft.com/en-us/Windows7/show-hidden-files

    When the photo thumbs reappear... they can look washed out...
    to clear this up... right click on a photo or a group or a
    folder and choose... Properties, uncheck the box. 'Hidden '.
    Apply / OK.

    The following link can enlighten us:

    McAfee - Windows 7 library files are not displayed
    http://service.McAfee.com/faqdocument.aspx?ID=TS101228

    The following discussion indicates that a patch of McAfee
    should be available soon.

    McAfee update messing around with photo editing
    https://community.McAfee.com/message/203252?TSTART=0

    The following link leads to a very long discussion
    (almost 300 responses) on the subject to McAfee
    Communities site.

    File property issues cause by mcafee?
    https://community.McAfee.com/thread/35820?start=0&TSTART=0

  • Trying to export edited images in Lightroom, but the new versions are appearing in the folder that I exported.

    I have 39 images that I edited in lightoom, all with a preset VSCO. There are a couple that I made in Photoshop as well, and they are part of the export. When I export them, the unreleased versions are showing in the record, other than those which were also published in PS. They appear very well, but not the ones I edited in the Lightroom development tab. I know that I export the correct files, I went through and 2 played the images I wanted to change and then edited each of them using the preset VSCO. Then I have this problem when I want to export. Any ideas?

    Thank you!

    It's not ALL your export settings but you probably export as "original".  Change it to Jpg Tiff.

  • PHP code takes the first record in the database regardless of the selected one

    I struggled for hours with this trying to see why no matter what file is selected, the record displayed is always the first. It must be a stupid mistake on my part, but I can't see it.

    I use DW CC 2015 with WebAssist server for server code additions. I looked at the database itself, and it's OK.

    Test data

    Capture.JPG

    Copy the following code enumerates the various documents in the database. (I removed my HTML that works well for brevity).

    <? php require_once('.. /.. /.. / Connections/Terrier.php');? >

    <? php require_once('.. /.. /.. / webassist/mysqli/rsobj.php');? >

    <? PHP

    $rsDocuments = new WA_MySQLi_RS ("rsDocuments", $Terrier, 1);

    $rsDocuments-> setQuery ("" SELECT * FROM documents ' ");

    $rsDocuments-> execute();

    ? >

    <! doctype html > < html >

    "' Snip...

    < p align = "left" > < a href = "add_terrier_document.php" > add new record of Documents < /a > < /p >

    < table width = "100%" border = "1" cellspacing = "2" cellpadding = "2" >

    < tbody >

    < b >

    < td width = "26%" align = "left" > < strong title > < / strong > < table >

    < td width = "52%" align = "left" > < strong text > < / strong > < table >

    < td width = "6%" align = "center" > < table >

    < td width = "6%" align = "center" > < table >

    < td width = "6%" align = "center" > < table >

    < /tr >

    <? PHP

    {While (! $rsDocuments-> {atEnd())}

    ? >

    < b >

    < td > <? PHP echo ($rsDocuments-> getColumnVal ("dc_title"));? > < table >

    < td > <? PHP echo ($rsDocuments-> getColumnVal ("dc_text"));? > < table >

    < td width = "6%" align = "center" > < a href = "view_terrier_document.php? dc_index = <?" PHP echo ($rsDocuments-> getColumnVal ("dc_index"));? > "> view < /a > < table >"

    < td width = "6%" align = "center" > < a href = "edit_terrier_document.php? dc_index = <?" PHP echo ($rsDocuments-> getColumnVal ("dc_index"));? > "> edit < /a > < table >"

    < td width = "6%" align = "center" > < a href = "confirm_terrier_document_delete.php? dc_index = <?" PHP echo ($rsDocuments-> getColumnVal ("dc_index"));? > "> delete < /a > < table >"

    < /tr >

    <? PHP

    $rsDocuments-> moveNext();

    }

    $rsDocuments-> moveFirst(); return the RS to the first record

    ? >

    < / tbody >

    < /table >

    < a href = "<?" PHP echo $rsDocuments-> getFirstPageLink();? > "> first < /a > - < a href =" <? PHP echo $rsDocuments-> getNextPageLink();? > "> Next < /a > - < a href =" <? PHP echo $rsDocuments-> getPrevPageLink();? > "> previous < /a > - < a href =" <? PHP echo $rsDocuments-> getLastPageLink();? > "> last < /a >"

    < p >

    .... SNIP

    The table shows the different records in the database. I can go through the files back and forth and pick any one to edit - say one-third.

    The PHP code creates the URL of http:// localhost/priory_database_2/gateway/Terrier/documentation/edit_terrier_document.php?dc_in dex = 3

    However, the record that is displayed is always record 1, regardless of the currently selected folder.

    The edition code (less HTML) is.

    <? php require_once('.. /.. /.. / Connections/Terrier.php');? >

    <? php require_once('.. /.. /.. / webassist/mysqli/rsobj.php');? >

    <? php require_once('.. /.. /.. / webassist/mysqli/queryobj.php');? >

    <? PHP

    $rsDocuments = new WA_MySQLi_RS ("rsDocuments", $Terrier, 1);

    $rsDocuments-> setQuery ("SELECT * FROM documents ORDER BY dc_index ASC");

    $rsDocuments-> execute();

    ? >

    <? PHP

    If (isset($_POST["submit"]): isset($_POST["submit_x"])) {}

    $UpdateQuery = new WA_MySQLi_Query ($Terrier);

    $UpdateQuery-> action = 'put up-to-date. "

    $UpdateQuery-> table = 'documents '.

    $UpdateQuery-> bindColumn ("dc_index", "s", "".) "((isset($_POST["dc_index"])))? $_POST ["dc_index"]:" ")". "" (', 'WA_DEFAULT');

    $UpdateQuery-> bindColumn ("dc_title", "s", "".) "((isset($_POST["dc_title"])))? $_POST ["dc_title"]:" ")". "" (', 'WA_DEFAULT');

    $UpdateQuery-> bindColumn ("dc_text", "s", "".) "((isset($_POST["dc_text"])))? $_POST ["dc_text"]:" ")". "" (', 'WA_DEFAULT');

    $UpdateQuery-> bindColumn ('date_recorded', "s", "".) "((isset($_POST["date_recorded"])))? $_POST ["date_recorded"]:" ")". "" (', 'WA_DEFAULT');

    $UpdateQuery-> bindColumn ("date_update", "s", "".) "((isset($_POST["date_update"])))? $_POST ["date_update"]:" ")". "" (', 'WA_DEFAULT');

    $UpdateQuery-> addFilter ('dc_index', '=', 'i', ' ".) () $_GET ['dc_index']). » ») ;

    $UpdateQuery-> execute();

    $UpdateGoTo = 'index.php ';

    "If (function_exists("rel2abs")) $UpdateGoTo = $UpdateGoTo? rel2abs ($UpdateGoTo, dirname (__FILE__)):" ";" "

    $UpdateQuery-> redirect ($UpdateGoTo);

    }

    ? >

    ..... Snip


    < /table >

    < h3 align = "center" > change the document details < / h3 >

    < form id = "AddDocumentRecord" name = "AddDocumentRecord" method = "post" >

    < label for = "dc_title" > title

    < name textarea = "dc_title" cols = "150" lines = "3" maxlength = "300" id = "title" > <? PHP echo ($rsDocuments-> getColumnVal ("dc_title"));? > < / textarea >

    < / label >

    < label for = "dc_text" > Description

    < name textarea = "dc_text" cols = "150" lines = "20" maxlength = "60000" id = "text" > <? PHP echo ($rsDocuments-> getColumnVal ("dc_text"));? > < / textarea >

    < label for 'date_recorded' = > registration Date:

    < name textarea = 'date_recorded' cols = "50" rows = "1" maxlength = "20" id = 'date' > <? PHP echo ($rsDocuments-> getColumnVal ("date_recorded"));? > < / textarea >

    < / label >

    < label for = "date_update" > Date of last update:

    < name textarea = "date_update" cols = "50" rows = "1" maxlength = "20" id = "Refresh" > <? PHP echo ($rsDocuments-> getColumnVal ("date_update"));? > < / textarea >

    < / label >

    < input type = "submit" name = "submit" id = "submit" value = "Submit" >

    < input name = "dc_index" type = "hidden" id = "dc_index" value = "<?" PHP echo ((isset($_POST["dc_index"]))? $_POST ["dc_index"] ":" "")? > ">"

    < / make >

    ... Snip

    The query for the edit page should look like

    $rsDocuments = new WA_MySQLi_RS ("rsDocuments", $Terrier, 1);

    $rsDocuments-> setQuery ("SELECT * FROM documents WHERE dc_index =?");

    $rsDocuments-> bindParam ('i', ' ".) "(isset($_GET['dc_index']))? $_GET ['dc_index']:" ")". "" », «-1 ») ;

    $rsDocuments-> execute();

    What this did that select a recording with a value of dc_index.

  • In oracle 11g DBMS_STATS collection

    Hi all

    Oracle 11 g 2

    Linux

    How to collect DBMS_STATS collection using DBMS_JOB suggest every Sunday (without cron jobs) .kindly.

    Thank you

    Sam.

    SQL > select to_char, job_name, job_action, owner (start_date, "DD-MON-RR HH24:MI:SS) Star

    V_DATE, to_char (next_run_date, "JJ-MON_RR HH24:MI:SS) next_run_date, failure_count, last

    _run_duration of dba_scheduler_jobs where job_name = 'TK13;

    JOB_NAME OWNER

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

    JOB_ACTION

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

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

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

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

    START_DATE NEXT_RUN_DATE FAILURE_COUNT LAST_RUN_DURATI

    WE

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

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

    SYS                            TK13

    BEGIN DBMS_STATS.gather_schema_stats ('SCOTT', estimate_percent-online DBMS_STATS. AUTO_SAMPL

    E_SIZE, cascade => TRUE); END;

    7 AUG 13 10:58 10:58 14-AUG_13 1 + 000000000 00:0

    0:00.023000

    SQL >

    I put aside as your suggested.

    face below error.

    ORA-06550: line 1, column 761:

    PLS-00201: identifier 'SCOTT' must be declared.

    ORA-06550: line 1, column 729:

    PL/SQL: Statement ignored

    Output, it is clear that you have surrounded Scott of double quotes ("").

  • DBMS_STATS - degree to use?

    DBA dear friends,

    I am running stats gather on a schema size - 1.1 to with gather_schema_stats. I have about 300 paintings, (4 to 5 of them are partitioned). I would like to know how to use? If I understand correctly, is degree by the number of processors on the server and by default is NULL. Here's the syntax I use to collect stats: (pretty well all the default arguments).
    Do you propose using degree? If so, the value of degree of auto is fine? or basis of CPU?

    Appreciate your thoughts!
    EXEC DBMS_STATS.GATHER_SCHEMA_STATS(ownname => 'OWNER', cascade=> TRUE);

    No, its only allows to parallelize the statistics gathering processes that make faster.

  • Edit in Photoshop CC command in Lightroom 5 opens an older version of PS CC

    On the mavericks of OS X 10.9.2 in Lightroom 5.3 every time I have use one of editing in Photoshop CC orders he always throws an old version 14.00 vs the recent 14.2

    Than you for your help DdeGannes

    I can say thankfully its now fixed I looked in my folder applications several times and could not find any other "Photoshop CC.app" only "photoshop CS6.app' & 'PSE.app' which is not the culprit, so I was thinking could otherwise how lightroom pulling up another version of Photoshop CC I did a global search for Mac for the file name"Photoshop CC.app"and bam are 1 in the documents as a backup Photoshop before I installed a few plugins, so I went and renamed the file "backup Photoshop CC.app" and boom Lightroom now only launches the latest version, I still think that everything is good, but it looks like there's a bug or glitch in OS X or LR5 to do what he did and I don't have a pre launch photoshop all the time now

Maybe you are looking for

  • Satellite L30 - unrecognized USB device

    I am a pc novice, trying to help my mother to fix his Toshiba satellite L30 series.None of the usb ports seem to work. They all worked very well before. A printer is installed on this computer seems to be the only change, and it worked for a while.Wh

  • Windows root &#62; \system32\hal.dll error on a laptop without cd player or cd when bought

    Hello Got a problem. My daughter has a laptop HP with Windows xp. She did a disk defragmentation and clean last night... today, when she turned her on she received a Windows root>\system32\hal.dll error message. We do not have a CD to restart from...

  • Windows live mail downloaded again all the messages from the server

    Using pop3 to download messages in Windows Live Mail.  I leave a copy of messages on the server until it as deleted from the deleted items folder.  Every now and then, all messages on the server will be downloaded again to my Inbox as unread.  Thanks

  • uninstaling failure of Norton

    IV tried to remove Norton using the Control Panel also uninstall link provided with the installation nothing removes it so I can install another antivirus program

  • Pulling a deliverance of BB world and other issues

    HelloI create a small soft and has submitted before the date limit for the device developer Z10. Now, I discovered a few minor bugs and the front fixed my app has been reviewed. Now, I have a few questions: 1. is it possible to get an older version o