function/procedure required

Hi Master,

I have a table with two columns. Like this

col1                                   col2

credit card payment credit card bill payment

the limited India Oracle Oracle India limited

Accenture Capgemini

I wanted to see the output like this...

col1                                   col2                                                words matched

credit card bill payment card credit payment 3

the Oracle India limited limited Oracle 2

Accenture Capgemini 0

I tried with a function takes two parameters word1 and word2... Select col1, col2 in word1, word2 table...

If = word1 word2

Returns 0

on the other

need your support (I have to check every word... that's the problem for me.)

Please help me...

Concerning

AR

In any case, my interpretation:

with t1 as)

Select upper (w) w,

ROWID RID,

1 flag

of the sample,

XMLTable)

"ora: tokenize($w,"").

by the way ' ' | word1 as 'w '.

columns

path of varchar2 (20) w '.'

)

where w is not null

Union of all the

Select upper (w) w,

ROWID RID,

2 flag

of the sample,

XMLTable)

"ora: tokenize($w,"").

by the way ' ' | word2 'w '.

columns

path of varchar2 (20) w '.'

)

where w is not null

),

T2 as)

Select RID.

greater (count County (case flag when 1 then 1 end), (case flag when 2 then 1 end)) cnt

from t1

Group of RID,

w

having max (flag)! = min (flag)

)

Select word1,

word2,

Sum (NTC) NTC

of the sample s,.

T2

where s.rowid = throw

Word1 group,

word2,

RID

/

WORD1                          WORD2                                       CNT
------------------------------ ------------------------------------ ----------
Oracle oracle Oracle oracle 3
Oracle Oracle network 2 technology network forums
Payment credit card payment card credit invoice 3
Oracle Oracle India Limited Company 1
Prepaid connection with connection postpayée with Airtel 2 Aritel
Tech Mahindra Mahindra Satyam 1
Oracle oracle oracle mysql mysql mysql mysql mysql mysql oracle 8

7 selected lines.

SQL >

SY.

Tags: Database

Similar Questions

  • When itunes installation receive error message with 'install windows package' and 'procedure requires a rise. "

    Original title: Windows Installer Package

    When you try to install itunes, I get a pop up box that says: there is an error with the windows package install and it will not continue with the download.  I went online to download the package to install to my computer (Windows Vista) and when it starts to download get an error stating that "the procedure requires a rise." What it means?  I assume this has something to do with security in the administrative account that I am signed on the label on when problems occur.  Thank you!

    Hello
    1 did you change on your computer before this problem?
    2 - is a problem only with itunes?
    Follow the suggestions and check if that helps.
    Method 1
    a.Right click the download file.
    b.Select run as administrator.
    Method 2
    You can follow the procedure in the article.
    Problems installing and uninstalling programs on Windows computers
    http://support.Microsoft.com/kb/2438651#reso2
    See also:
    Problem installing iTunes or QuickTime for Windows
    http://support.Apple.com/kb/ht1926
  • Function procedures and triggers

    Sorry to ask this question,


    In oracle. We use the function of triggers and procedures.

    for example:

    If we wrote a trigger for a table. It fires both to manipulate the table. (database table contains data and database also contains triggers the same function, procedure).

    but my questions?: is

    In my database, I have not kept only tables. No trigger, no function, no procedures. and


    I kept this triggers, function, procedures of data instead of I want kept this function, triggers, procedures in layers of logic (intermediate level)

    is it possible? .


    If yes means, how to write or where to write? Please help me, otherwise send guidance documents or the blog releated to it.

    Hi Marie Laura,.
    If you want to call the procedures used the following link
    http://www.techartifact.com/blogs/2009/04/procedure-calling-in-Oracle-ADF.html

    for my statement

    all logic, triggers can be done using java classes that is attached with the business objects.

    This means... in the procedure, you have selection, insertion, updating, and deleting of records in a table...
    So map complete things as an object adf...

    Tables-> object EO
    Select the statement - > VO objects
    Insert, update, deletion - crud-> dodML() operation, the remove() method in EntityImpl
    commit - dbTransaction.commit)
    other features... are also can be mapped to specific files, and can be represented as objects adf...

    That's what I wanted to say, convert the whole procedure into objects of the adf and work on...
    I hope you understand now...

  • 2 display stored function, procedure or a Trigger?

    Hello

    Pls. 2 display stored function, procedure or a Trigger?

    in SQL * more

    Kind regards

    Abdetu...
    SQL> create or replace
      2  procedure p is
      3  begin
      4     dbms_output.put_line('hello world');
      5  end;
      6  /
    
    Procedure created.
    
    SQL> select dbms_metadata.get_ddl('PROCEDURE','P',user) from dual;
    
    DBMS_METADATA.GET_DDL('PROCEDURE','P',USER)
    ---------------------------------------------------------------------
    
      CREATE OR REPLACE PROCEDURE "SELSE"."P" is
    begin
       dbms_output.put_line('hello world');
    end;
    

    It is documented here:
    http://download.Oracle.com/docs/CD/E11882_01/AppDev.112/e16760/d_metada.htm

  • How to call the function procedure

    Hello

    I don't have any idea how can I call a function procedure?

    Your answer is apprecited.


    Thanks in advance
    create or replace fn
    return varchar2
    is
    begin
    
    --pass your procedure here
    
    proc1(20);
    
    end;
    
  • Store functions/procedures in BI Publisher - failed to load XML

    Hello world

    I am trying to call a function to return a set of rows with BI Publisher. When I want to look at the data on the 'Data' tab, I get "Failed to load XML".

    Here are the steps I took:

    Step 1: created a type

    create type numset_t as table of number;
    

    Step 2: Creating the function

    create or replace function f1(x number) return numset_t pipelined is
    begin
    for i in 1..x loop
    pipe row(i);
    end loop;
    return;
    end;
    

    Step 3: Under "Data sets", I created a SQL query with the following options/code

    Code:

    select * from table(f1(3))
    

    Options: Data Source - my selected schema

    SQL type: Non-standard SQL

    Name of tag line: test

    How can I check my data using the button "data"?

    Thank you

    Here's the steps/documentation on how to call a function from BI Publisher:

    #1) make sure you use SYS_REFCURSOR.

    (#2) create your function as below:

    CREATE OR REPLACE FUNCTION FUNC1 (P1 VARCHAR2) RETURN SYS_REFCURSOR IS
    
       XDO_CURSOR SYS_REFCURSOR;
    BEGIN
     IF P1 = 'USA' THEN
     OPEN XDO_CURSOR FOR
     'SELECT  TO_CHAR(SYSDATE,''MM-DD-YYYY'') AS CURRENT_DATE, X.STATE FROM SchemaName.XX1 X WHERE X.ID IN (100,200,400)';
     RETURN XDO_CURSOR;
     ELSE
     OPEN XDO_CURSOR FOR
     'SELECT  TO_CHAR(SYSDATE,''MM-DD-YYYY'') AS CURRENT_DATE, X.STATE FROM SchemaName.XX1 X WHERE X.ID IN (300,500,600)';
     RETURN XDO_CURSOR;
     END IF ;
    END FUNC1;
    

    (#3) connect as system and grant execute the user to BI

    GRANT EXECUTE ON SchemaName.FUNC1 TO BI_USER;
    

    (#4) under the data model, create a data set with the following (as for example):

    BI requires the variable xdo_cursor as the output, so do not change the name of the variable.

    DECLARE
       type refcursor is REF CURSOR;
       xdo_cursor refcursor;
    BEGIN
       :xdo_cursor := SchemaName.func1(:P1);
    END;
    

    Type of SQL procedure call =

    Thank you. I hope that everything that troubleshoot you.

  • T400 - Bluetooth - Unattended installation instructions/procedure required software.

    Hi all

    Technically, this isn't a problem but a request for information.

    I need the info because it will allow me to win that makes it a more awkward solution and I know it's there because the factory preload must have used a method to get this working automatically.

    I know I wrote a lot but its all the and I don't want someone of Lenovo to have to ask three times for lack of information, so I have listed everything.

    BASELINE SCENARIO

    ThinkPad T40 [6474-1]
    Windows XP Corp w / SP2 NOT the FACTORY PRELOAD OR DERIVATIVE>
    I have two 'prototypes' working with T400 by making the current image of the company work on this platform.
    We test brand and we need to preload of factory XP installed on it.
    The SATA, sysprep, drivers, webcam-reboot-question, etc. have all been corrected and its achievements up to a point where the Device Manager is clean as a whistle and no mistake.

    I'm not new to what our image is my full responsibility and it works perfectly on 7 different hardware platforms, 4 of which are laptops.

    At the end of the new image, the software following 'silently' install in the order indicated THAT if the system is detected at a Lenovo 6474 - class.

    [1] ACPI Power Management SETUP. EXE S - SMS N/A
    [2] Hotkey Utility SETUP. EXE/S-N/A
    [3] Lenovo System Interface Driver SETUP. EXE/S-N/A
    [4] utility KEYBOARD Customizer. EXE S - SMS [1] & [2]
    [5] Director presentation Setup. EXE S - SMS [1] & [2] & [3]
    [6] ThinkVantage Access Connections SETUP. EXE S - SMS [1] & [2]
    [7] CONFIGURATION of the power manager. EXE S - SMS N/A
    [8] Bluetooth Enhanced Data rate software s/o s/o

    All drivers are from Lenovo, the second field is the silent installation command line and the third is the dependency table.

    BASIC PROBLEM

    As you can see, I don't have a method to do the installation in silent mode of the Bluetooth software.

    I tried the Setup program . EXE s - SMS and installation. EXE/s in the main folder and subfolder Win32, the record of the driver but no dice.
    It does nothing and leaving sitting there for a certain time, and then restart doesn't show the Bluetooth software installed after the reboot, so I know it does not work.

    The Setup program . EXE s - SMS switch is common to all programs using InstallShield for installation in opposition to software Lenovo owner who uses the /S switch and the Bluetooth software uses InstallShield but the silent switch does not work.

    The link on the website of Bluetooth driver software is driver ONLY I met who didn't list a silent method of install it and there is no SW1. XML file in the folder of the driver either. I'm pretty sure the SW1. XML file is the file used by the factory preload for install the software after the listing of PCI devices.

    Do it manually [Setup.exe, Next, Next, Finish, etc.] works like a charm and does not require a reboot even that pilots have been automatically installed during the Mini-Setup after the sysprep/re image.

    The best option would be for a person of Lenovo to let me know the command that I need to run to get the silent option to install the Bluetooth software.

    A secondary option would be that Lenovo to help me with what follows in what concerns the procedure, or just give me the below CMD files.

    On the laptop that factory preload, the file swtools contains the drivers installed on this model and there the same Bluetooth driver as the site in which he has no SW1. XML or information without supervision.

    I came across the following file in the root folder that has some interesting info: c:\swtools\modules.log

    Almost at the beginning are these entries

    ? evaluation of filters for 4gglw6a1 - thinkpad bluetooth software for helike
    ? -filter returned true
    ? result of the filter expression is true

    ? evaluation of filters for 4glth2a1 - thinkpad ms bluetooth inf for helike - copy only - lc
    ? -filter returned true
    ? result of the filter expression is true

    looking for blue, the following entries much later in the reference file the above...

    23:04:28.84 Thursday, December 11, 2008, from c:\swwork\other\4gglw6a1.cmd
    ThinkPad Bluetooth Software for Helike
    Thursday, December 11, 2008 23:06:12.29 over c:\swwork\other\4gglw6a1.cmd

    23:16:21.34 Thursday, December 11, 2008, from c:\swwork\network\4glth2a1.cmd
    ThinkPad MS Bluetooth INF for Helike - copy only - LC
    Thursday, December 11, 2008 23:16:21.46 over c:\swwork\network\4glth2a1.cmd

    Obviously to have these files CMD at hand would be good but the swwork file referenced there is no because it has probably been deleted once completed the preload process.

    I have a ghost of the factory image to preload when his "fresh" on the drive hard and don't not started even once.
    I did this just after I slapped him preload on but before I started the first time.

    I can recreate the image on this laptop with this image and pause before deleting this folder if this can help see me the file in the BACK [Winternals remote recover] but I would still need to know when to stop, etc..

    Thanks in advance. :-)

    Original command-line from a factory without first restarting preload goes directly into the files using Winternals recover remote is as follows:

    setup.exe/SB /ri /ru in the main folder, not the file under Win32.

    This is how its supposed to run.

    Guess what happens when you Google only switches with a double quote before and after the switch.

    It immediately tells you on page of Bluetooth driver for Vista drivers!

    So, basically, Lenovo it documented on page Vista drivers but I forgot to add it to the page drivers XP.

    Lenovo, it's a serious blunder that cost me a days work on something that should have been available on the page as well XP anyway.

    In any case, if someone reads in fact these, please change the appropriate page.

    Thank you.

  • How do I inject inside the ODI 11 G PL/SQL (not function procedure)

    Hello Expert,

    would be like double until OWB and ODI OWB 11 G I wich 'The user function' run PL/SQL and it remove some data in the table and the reel journal, is possible that I can do the same thing in ODI, in my case, I can't call function, or a procedure stored outside the ODI. See below the part of the PL/SQL based on user OWB.

    coil MyFile... Journal

    command prompt

    create table MyTable as

    Select a.*

    Of...

    commit;

    command prompt

    spool off;

    "exit";

    Thank you!

    You can run a PL within a procedure, you simply copy paste your PL and place in a procedure inside the ODI.

    I hope this can help you!

  • Problems of syntax with a Variable/function/procedure

    Hello
    Some time ago I had advice how to define a simple (not stored) procedure within a PL/SQL Script, see procedure but not stored now, I tried to expand the sample by the use of some additional variables and a function instead of a procedure. The result expected from the following (pseudo) - code is very clear, but I get tons of errors due to problems of syntax. Of course I don't have need of all these variables in the example below, but it's the syntax I will need later. Maybe you can point me to an example which has a similar structure.

    DECLARE  
    
        -- Output Comment and 2*Input
        PROCEDURE OutputDouble(SingleValue IN Number, MyComment IN VARCHAR) IS
            variable MyTextResult VARCHAR(100); 
        BEGIN
            SELECT MyComment || ' ' || to_char(2 * SingleValue)) into MyTextResult from dual;
            dbms_output.put_line(MyResult);
        END;
        
        -- Return Product of Val1 and Val2
        FUNCTION MyProduct(Val1 IN NUMBER, Val2 IN NUMBER) IS
            variable MyNumResult Number := 0;
            returns Number
        BEGIN
            MyNumResult := Val1 *Val2;
            return MyNumResult;
        END;
    
       -- Definitions
       variable MyRes  Number;
       variable MyVal3 Number := 3;
       variable MyTxt3 VARCHAR(30) := 'Text mit 3';
     
    BEGIN
        
        -- Main process block
        OutputDouble(MyVal3, MyTxt3);
        MyRes = MyProduct(MyVal3, 5);
        dbms_output.put_line('Produkt: ' || to_char(MyRes)); 
        
    END;
    /
    Published by: netaktiv on 21.02.2012 13:24

    Published by: netaktiv on 21.02.2012 13:25

    (1) If you declare procedures in an anonymous PL/SQL block (which itself is not a particularly good way to organize the code), the procedure for declarations must come after all the variables are declared.
    (2) you do not use the keyword VARIABLE when you declare variables in PL/SQL
    (3) you have a fence extra paren in the SELECT statement in the OutputDouble that needs to be removed
    (4) the appeal dbms_output.put_line in OutputDouble should, without doubt, refer to the variable local MyTextResult, not same that does not exist.
    (5) the RETURN clause in the declaration of a function must be unique and must come before the IS
    (6) add a little more indented is useful for the following code.

    Put it all together, something like this works

    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2     -- Definitions
      3     MyRes  Number;
      4     MyVal3 Number := 3;
      5     MyTxt3 VARCHAR(30) := 'Text mit 3';
      6      -- Output Comment and 2*Input
      7      PROCEDURE OutputDouble(SingleValue IN Number, MyComment IN VARCHAR)
      8      IS
      9          MyTextResult VARCHAR(100);
     10      BEGIN
     11          SELECT MyComment || ' ' || to_char(2 * SingleValue)
     12            into MyTextResult
     13            from dual;
     14          dbms_output.put_line(MyTextResult);
     15      END;
     16      -- Return Product of Val1 and Val2
     17      FUNCTION MyProduct(Val1 IN NUMBER, Val2 IN NUMBER)
     18          return Number
     19      IS
     20          MyNumResult Number := 0;
     21      BEGIN
     22          MyNumResult := Val1 *Val2;
     23          return MyNumResult;
     24      END;
     25  BEGIN
     26      -- Main process block
     27      OutputDouble(MyVal3, MyTxt3);
     28      MyRes := MyProduct(MyVal3, 5);
     29      dbms_output.put_line('Produkt: ' || to_char(MyRes));
     30* END;
    SQL> /
    Text mit 3 6
    Produkt: 15
    

    As I said above, however, this isn't a particularly good way to code generation. You are much better (a lot!) create a procedure as OutputDouble first just debugging that, then create a function like MyProduct, debugging that and then just try to put it all together. Creating a single block that declares its own procedures and functions only makes it harder to debug and harder to generate the code of the work by the Assembly and testing of small building blocks.

    Justin

  • How PLSQL functions/procedures by ODI dynamically

    I want to know is there a way to create functions or procedures on the Oracle database through procedures ODI dynamically.
    These are functions that I need to dynamically create by the ODI process so that when the procedure runs the following function is created at the database level.

    FUNCTION to CREATE or REPLACE MY2DATE (p_str IN VARCHAR2
    format_picture IN VARCHAR2
    )
    DATE OF RETURN
    IS
    BEGIN
    RETURN TO_DATE (p_str, format_picture);
    EXCEPTION
    WHILE OTHERS
    THEN
    RETURNS A NULL VALUE.
    END;
    /


    Any help appreciated

    Hello

    Create an ODI procedure and co-pilot on target, select

    Technologies: Oracle
    Logical schema:

    Command:

    FUNCTION to CREATE or REPLACE MY2DATE (p_str IN VARCHAR2, format_picture IN VARCHAR2)
    DATE OF RETURN
    IS
    BEGIN
    RETURN TO_DATE (p_str, format_picture);
    EXCEPTION
    WHILE OTHERS
    THEN
    RETURNS A NULL VALUE.
    END;

    ODI will create it in the backend.

    ARY: http://odiexperts.com/how-to-use-plsql-procedures-and-functions-in-odi

    Thank you
    Guru

  • SYS REFCURSOR back via the function - procedure

    Hello
    SYS REF CURSOR can be returned to the calling program using a parameter of function and stored procedure OUT.
    (1) what is the difference?
    (2) if the number of rows returned back is great (assuming 1 million) and the calling program is a Java program, then what is desirable so that the calling program does not work out of memory?

    Thank you
    Hiren Pandya s

    Cursor is not contain the data itself. Only a reference to an area of memory where the data can be recovered. Program call should take care how to extract to not run out of memory

  • Packages, function, procedure to access a table

    Hello all;

    Is this possible. I read that somewhere but I don't know if it is possible

    Is that what I can write a simple sql statement that basically allows you to determine what packages, functions or procedures are the call or access a table

    A simple example will help you.

    Also any help is appreciated. Thank you.

    You can use the DBA_DEPENDENCIES (or ALL_DEPENDENCIES or USER_DEPENDENCIES depending on the situation). For example, to display all objects that reference the table EMP from the SCOTT schema

    SQL> select owner, name, type
      2   from dba_dependencies
      3   where referenced_owner = 'SCOTT'
      4     and referenced_name  = 'EMP'
      5     and referenced_type  = 'TABLE';
    
    OWNER                          NAME                           TYPE
    ------------------------------ ------------------------------ ------------------
    
    SCOTT                          PKG_EMP                        PACKAGE BODY
    SCOTT                          V                              VIEW
    SCOTT                          V2                             VIEW
    SCOTT                          EMP_PIPE                       FUNCTION
    SCOTT                          GIVE_RAISE                     PROCEDURE
    SCOTT                          P_DIRS                         PROCEDURE
    SCOTT                          TRG_AUD_EMP                    TRIGGER
    SCOTT                          ONECUR_PKG                     PACKAGE
    SCOTT                          V1                             VIEW
    SCOTT                          VW_EMP                         VIEW
    SCOTT                          F2                             FUNCTION
    
    OWNER                          NAME                           TYPE
    ------------------------------ ------------------------------ ------------------
    
    SCOTT                          PKG_EMP                        PACKAGE
    SCOTT                          IN_UBCC                        FUNCTION
    SCOTT                          GET_MAX_ROWSCN                 FUNCTION
    
    14 rows selected.
    

    Justin

  • Input parameters for the function/procedures

    Hello

    I have an input parameter in varchar2 to a procedure and a function.

    Oracle says that you can pass to the maximum value of 32767 bytes inside a pl/sql block for a varchar2.

    But outside, it is limited to 4000 bytes.

    Here, there is a small suitcase of test
    create or replace procedure test_p(a in varchar2) as 
     begin
      null;
       commit;
         End;
    
    CREATE OR REPLACE FUNCTION str2tbText(p_str in varchar2) return varchar2
            IS
                      begin
                return null;
          END str2tbText;
    
    SQL> declare
      2  a varchar2(32767);
      3  b varchar2(32767);
      4  c varchar2(32767);
      5  begin
      6  for i in 1..4004 loop
      7  b:=b||'a,';
      8  end loop;
      9  test_p(b);
     10  --select str2tbtext(b) into c from dual;
     11  commit;
     12  end;
     13
     14  /
    
    PL/SQL procedure successfully completed.
    
    SQL> declare
      2  a varchar2(32767);
      3  b varchar2(32767);
      4  c varchar2(32767);
      5  begin
      6  for i in 1..4004 loop
      7  b:=b||'a,';
      8  end loop;
      9  --test_p(b);
     10  select str2tbtext(b) into c from dual;
     11  commit;
     12  end;
     13
     14  /
    declare
    *
    ERROR at line 1:
    ORA-01460: unimplemented or unreasonable conversion requested
    ORA-06512: at line 10
    IAM here to more than 4000 bytes as an input parameter for a function of years of proceedings,
    But it works for the procedure...
    For the function, it throws error

    No specific reason please...

    Kind regards
    Mohammed

    This means that you have found the answer you're looking for? Then you can close the thread...

  • Functions/procedures of conclusion an orphan?

    Hi all
    I'm trying to go through our code to find orphaned procedures and functions. I'm using TOAD for a search object for their names, but it is extremely painful. Is it possible to quickly find the names of all the procedures and functions that are not referenced within any other procedure or function?

    Thanks for your time!

    I am not sure I understand...

    How do you know that an application or user will not call the procedure or function?

    You will always have at least a procedure that is not referenced by another procedure... because it's the one that starts the whole process.

    However, I do not think that ALL_DEPENDENCIES meets the needs you describe as for finding links... you can probably do a negative join between her and object (I think)

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/statviews_1041.htm#i1576452
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/statviews_2005.htm#i1583352

    Concerning
    Tim

  • Function procedures is not compatible with the OS 32-bit research units. Limiting the effectiveness of instruction.

    The procedures include the following: click on 'Start', click 'Search', which is supposed to be located between the 'computer' and "recent items" on the right side of the dialog box. Although my unit is a 32 bit OS. This is not the case. They said Vista should be in all 32-bit operating systems. I is false, since the selection of 'research' appears not conclude as above and I won't have the same search capabilities than other units of 32-bit OS? I could really use some help.

    Here are the instructions on how add the search button in the Start Menu, so that it will resemble that of aggregate video: http://www.vistax64.com/tutorials/145787-search-start-menu-button-restore-after-sp1.html.

    I hope this helps.

    Good luck! Lorien - a - MCSE/MCSA/network + / A +.

Maybe you are looking for

  • not able to connect to itunes

    Try to connect to Itunes Connect, I have not used my Itunes account for more than three years. With my new SE I get your apple that ID is not enabled for iTunes Connect (2002)

  • Solved: Too many minutes of exercise

    I had a problem with my Apple Watch save too of minutes of exercise: I went to the bottom of the tree to complete troubleshooting with the Apple support rep: turning Fitness followed under the privacy settings of fitness to & Motion off and on again;

  • Satellite L855 - 13 G - can't adjust the brightness after update Win8

    Hello After update of windows 8 and installed the latest AMD driver on the Toshiba site, I cannot adjust the brightness of the screen using the Fn F2 or F3. In this thread: http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=69752&

  • Impossible to reinstall Windows on iMac 5 k (end of 2014) w / Fusion drive

    This past weekend, I had a problem with my Windows gel partition when running games, so I decided to reinstall completely the partition from the ground up. During installation, I keep running into this caveat that I can not go beyond: "we could not c

  • I SOLVED MY PROBLEM OF UPDATE

    After several weeks and a little help from MS, I can now updates to d/l win7 and I want to share my solution. I have win 7, 64 bit and had not been able to d/l since Sept/2010 approximately. I have ex-athletes I had deleted the free Avira antivirus p