Help me convert (BYTE) V2 to V2 (Char)

Hello!
Please, help me! I have already created several tables that have fields with Varchar2 parameter. Because
Basically, there is Varchar2 (BYTE) parameters, fields created as Varchar2 (BYTE). I have the UTF-8 encoding used in
database. Whereas now, I started to think that 1 tank in UTF not = 1 byte. So, how can I convert all fields
with Varchar2 (Byte) to Varchar2 (TANK)? It is very important to me, now I know that. There are many tables,
in order to edit a lot of time having conducted manually, but create new I can not, because many of the tables is now used :(

Thank you!

As I said in my first post, you need a LOG table and an exception block, then an outer join to exclude those who have already succeeded

something like that;

create table log_tbl (
  table_name varchar2(30)
, column_name varchar2(30)
, msg varchar2(200)
, error_flag varchar2(1) default 'P') -- P for Pass and F for Fail.
/

SQL> select table_name, column_name, char_used
  2  from user_tab_columns
  3  where table_name in ('T1','T2')
  4  /

TABLE_NAME                     COLUMN_NAME                    C
------------------------------ ------------------------------ -
T1                             A                              B
T2                             A                              B

SQL> declare
  2    l_Err varchar2(200);
  3  begin
  4    for r in (select  atc.table_name, atc.column_name, atc.data_length
  5              from    user_tab_columns atc -- You would probably use ALL_
  6              left outer join Log_Tbl lt on (atc.Table_name   = lt.Table_Name
  7                                         and atc.Column_name = lt.Column_Name
  8                                         and lt.Error_Flag   = 'P')
  9              where   atc.data_type   = 'VARCHAR2'
 10              and     atc.char_used   = 'B'
 11              and     atc.Table_Name in ('T1', 'T2', 'T3')) loop
 12
 13      begin
 14        execute immediate 'alter table ' || r.table_name
 15                                        || ' modify '
 16                                        || r.column_name
 17                                        || ' varchar2('
 18                                        || r.data_length
 19                                        || ' char)';
 20
 21        insert into Log_tbl (Table_Name, Column_Name)
 22        values  (r.Table_Name, r.Column_Name);
 23
 24        exception
 25          when others then
 26            l_Err := sqlerrm;
 27            insert into Log_tbl (Table_Name, Column_Name, Msg, Error_Flag)
 28            values  (r.Table_Name, r.Column_Name, l_Err, 'F');
 29      end;
 30
 31      commit;
 32
 33    end loop;
 34
 35  end;
 36  /

PL/SQL procedure successfully completed.

SQL> select table_name, column_name, char_used
  2  from user_tab_columns
  3  where table_name in ('T1','T2', 'T3')
  4  /

TABLE_NAME                     COLUMN_NAME                    C
------------------------------ ------------------------------ -
T1                             A                              C
T2                             A                              C

SQL> select table_name,column_name,error_flag
  2  from log_tbl;

TABLE_NAME      COLUMN_NAME     E
--------------- --------------- -
T1              A               P
T2              A               P

SQL> create table t3 (a varchar2(20) )
  2  /

Table created.

SQL> insert into t3 (a) values ('Hello')
  2  /

1 row created.

SQL> declare
  2    l_Err varchar2(200);
  3  begin
  4    for r in (select  atc.table_name, atc.column_name, atc.data_length
  5              from    user_tab_columns atc -- You would probably use ALL_
  6              left outer join Log_Tbl lt on (atc.Table_name   = lt.Table_Name
  7                                         and atc.Column_name = lt.Column_Name
  8                                         and lt.Error_Flag   = 'P')
  9              where   atc.data_type   = 'VARCHAR2'
 10              and     atc.char_used   = 'B'
 11              and     atc.Table_Name in ('T1', 'T2', 'T3')) loop
 12
 13      begin
 14        execute immediate 'alter table ' || r.table_name
 15                                        || ' modify '
 16                                        || r.column_name
 17                                        || ' varchar2('
 18                                        || r.data_length
 19                                        || ' char)';
 20
 21        insert into Log_tbl (Table_Name, Column_Name)
 22        values  (r.Table_Name, r.Column_Name);
 23
 24        exception
 25          when others then
 26            l_Err := sqlerrm;
 27            insert into Log_tbl (Table_Name, Column_Name, Msg, Error_Flag)
 28            values  (r.Table_Name, r.Column_Name, l_Err, 'F');
 29      end;
 30
 31      commit;
 32
 33    end loop;
 34
 35  end;
 36  /

PL/SQL procedure successfully completed.

SQL> select table_name, column_name, char_used
  2  from user_tab_columns
  3  where table_name in ('T1','T2', 'T3')
  4  /

TABLE_NAME      COLUMN_NAME     C
--------------- --------------- -
T1              A               C
T2              A               C
T3              A               C

Tags: Database

Similar Questions

  • Convert byte [] to bitmap

    How convert byte [] bitmap and convert bitmap to byte [] image and when to get the image of the server back to a string how to parse this string for byte [] exmple in android it parse like that

    byte[] logoImg = Base64.decode(jLogo.getString(i), 0);
    

    Thanks in advance

    Hello

    You can use the method createBitmapFromBytes of the Bitmap class to convert an array of bytes to a Bitmap image. If you know that the image will be in PNG format you can even use createBitmapFromPNG

    Specification of the API:

    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/bitmap.html#createBitma...

    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/bitmap.html#createBitma...

  • convert BYTE CHAR

    Hello
    on the 11g R2,.

    If a Column1 is VARCHAR2 (20 byte) and column2 is VARCHAR2(20 char), which needs more disk space to be stored (let's assume we have just one line)?

    We are in non-unicode mode.

    If I MYTABLE (column1 VARCHAR2 (20 byte)) how can I convert to MYTABLE (column1 VARCHAR2 (20 CHAR))?

    Thank you.

    user522961 wrote:
    Thank you all.
    I wanted to understand the reason for the parameter NLS_LENGTH_SEMANTICS to CHAR

    As already explained more high semantic length is designed to define the size of a column in the table so that you do not get the error of allocation of space in the column of table such as:

     oerr ora 12899
    12899, 00000, "value too large for column %s (actual: %s, maximum: %s)"
    // *Cause: An attempt was made to insert or update a column with a value
    //         which is too wide for the width of the destination column.
    //         The name of the column is given, along with the actual width
    //         of the value, and the maximum allowed width of the column.
    //         Note that widths are reported in characters if character length
    //         semantics are in effect for the column, otherwise widths are
    //         reported in bytes.
    // *Action: Examine the SQL statement for correctness.  Check source
    //          and destination column data types.
    //          Either make the destination column wider, or use a subset
    //          of the source column (i.e. use substring).
    

    If your application requires it, you do it because it is so dependent on the application.

    Here's a long discussion on the pros and cons of the parameter NLS_LENGTH_SEMANTICS to CHAR: Re: language support of several

  • need help to convert this procedure used and call in coldfusion

    Hi I'm new to coldfusion and I haed of the code with me and I need it to convert in the stored procedure and will call back within coldfusion. Can someone help me how to make these data to the stored procedure and calling in coldfusion.

    Here is the code of my

    SET NOCOUNT ON

    DECLARE
    @cpt_dpt_cd char (2)
    @cpt_com_cd char (3)
    @sub_com_cd char (5)
    @con_upc_no char (13)
    , @pid_lng_dsc_tx varchar (100)
    , @pid_sht_dsc_tx varchar (100)
    , @rev_by varchar (8)
    @rev_dt datetime


    DECLARE upc_cursor CURSOR FOR
    SELECT *.
    OF di_audit_corp_upc_ldr_tbl
    WHERE con_upc_no IN ((in English only)
    SELECT con_upc_no, COUNT (*)
    TABLE [dbo]. [di_audit_corp_upc_ldr_tbl]
    GROUP BY con_upc_no
    HAVING COUNT (*) > 1
    )
    ORDER BY con_upc_no

    OPEN upc_cursor

    -It is performed while the previous extraction is successful.
    FETCH NEXT from upc_cursor
    IN
    @cpt_dpt_cd
    @cpt_com_cd
    @sub_com_cd
    @con_upc_no
    @pid_lng_dsc_tx
    @pid_sht_dsc_tx
    @rev_by
    @rev_dt

    -Check @FETCH_STATUS to see if he has more lines to fetch.
    WHILE @FETCH_STATUS = 0
    BEGIN
    -If not exists
    IF NOT EXISTS)
    SELECT con_upc_no
    OF dbo.di_audit_corp_upc_tbl
    WHERE con_upc_no = @con_upc_no
    )
    BEGIN
    -Insert record
    PRINT "insert UPC: ' + @con_upc_no"

    INSERT INTO dbo.di_audit_corp_upc_tbl)
    rcp_dpt_cd
    cpt_dpt_cd
    cpt_com_cd
    sub_com_cd
    cas_upc_no
    con_upc_no
    con_upc_tx
    pid_lng_dsc_tx
    pid_sht_dsc_tx
    aut_vld_cd
    rev_by
    rev_dt
    ) (VALUES
    '07'
    @cpt_dpt_cd
    @cpt_com_cd
    @sub_com_cd
    '0000000000000'
    @con_upc_no
    @pid_lng_dsc_tx
    @pid_lng_dsc_tx
    @pid_sht_dsc_tx
    , 'N'
    @rev_by
    @rev_dt
    )
    END
    ON THE OTHER


    BEGIN
    -to jump
    PRINT ' UPC to jump: "+ @con_upc_no
    END
    < cftransaction action = "commit" / >
    -It is performed while the previous extraction is successful.
    FETCH NEXT from upc_cursor
    IN
    @cpt_dpt_cd
    @cpt_com_cd
    @sub_com_cd
    @con_upc_no
    @pid_lng_dsc_tx
    @pid_sht_dsc_tx
    @rev_by
    @rev_dt

    END

    CLOSE Upc_cursor
    DEALLOCATE upc_cursor

    If I understand your SQL code you select some records in the di_audit_corp_upc_ldr_tbl table.  For each record in the results, you insert di_audit_corp_upc_tbl if a matching record does not already exist in di_audit_corp_upc_tbl.  If this summary is correct, you could try rewriting your query to avoid using a cursor.

    Something like the example below might work (I have not tested this code).

    INSERT di_audit_corp_upc_tbl (rcp_dpt_cd, cpt_dpt_cd, cpt_com_cd, sub_com_cd, cas_upc_no, con_upc_no, con_upc_tx, pid_lng_dsc_tx, pid_sht_dsc_tx, aut_vld_cd, rev_by, rev_dt)
    SELECT ' 07', cpt_dpt_cd, cpt_com_cd, sub_com_cd, ' 0000000000000', con_upc_no, pid_lng_dsc_tx, pid_lng_dsc_tx, pid_sht_dsc_tx, "n", rev_by, rev_dt
    From di_audit_corp_upc_ldr_tbl
    WHERE THERE IS NO
    (
    SELECT *.
    OF di_audit_corp_upc_tbl AS B
    WHERE B.con_upc_no = A.con_upc_no
    ) - check to see if the folder already exists in the destination table
       
    AND
    (
    SELECT COUNT (*)
    FROM di_audit_corp_upc_ldr_tbl AS C
    WHERE C.con_upc_no = A.con_upc_no
    ) > 1 - replaces the HAVING clause in the original query used to select cursor

    Note that I assume you are using Microsoft SQL Server.

    For questions about the improvement of SQL queries you could be better off the coast to post this kind of question on a specific forum for the database server you are using.

  • convert string into array of char

    What is the best way to convert a string to an array of characters?

    Thank you.

    String to byte array

  • Need help to convert DAQ traditional subvis DAQmx configuration

    I need to convert these screws (of NOR-traditional DAQ) to be used with a new data acquisition card that supports only NI-DAQmx.

    Please help me in this...

    Can I use the same traditional NI DAQ VIs with the NI PCI-6221?  If so, how? This device can be configured for NI DAQ traditional?

    NOR has several resources to help move tradtional DAQ DAQmx. A good place to start is the getting started page. There is a tutorial on how to transition. There is also the compatibility screws which replace certain traditional DAQ functions with wrappers around functions DAQmx. The DAQ example you posted is pretty trivial and really shouldn't take a lot of time to convert once you get a basic understanding of the DAQmx.

  • Help me convert LabVIEW 5.1 existing 8.5 worm code code...

    Hello

    Please help me to convert LabVIEW 5.1 existing 8.5 worm code code.

    Attached libraries of the LabVIEW to convert.

    Thank you

    Sery

    You can go there. If please read the results of massive compilation, because they may or may not be important for what you do.

  • I need help to convert a PDF to Word file.

    I have Windows Vista as the operating system on all my computers.  On my PC, when I right click on a file PDF from Adobe my office, a menu appears that lists the option "Convert to Word."  However, when I do the same thing on my laptop, is not giving me the option and when I open the file in Word, the police, format, etc is in a technical language, I am not able to understand or read.  Help!

    I have Windows Vista as the operating system on all my computers.  On my PC, when I right click on a file PDF from Adobe my office, a menu appears that lists the option "Convert to Word."  However, when I do the same thing on my laptop, is not giving me the option and when I open the file in Word, the police, format, etc is in a technical language, I am not able to understand or read.  Help!

    Here is a FREE converter, pdf to doc (word).
    http://www.anypdftools.com/PDF-to-Word.html

    There is an application "convert online pdf to doc", such as...

    http://www.pdftoword.com/

    http://www.pdfonline.com/PDF-to-Word-Converter/

    You can google for more.

  • How to convert byte [] EncodedImage rgb565 or bitmap data

    Hi all I am playing a video and I want to get snapshot of video as

    Byte [] byteArr = videoControl.getSnapshot ("encoding = rgb565");

    I try to get the Bitmap as

    image = EncodedImage.createEncodedImage (byteArr, 0, byteArr.length);

    image bitmap = image.getBitmap ();

    but she throws an Exception as IllegalArgumentException.

    I get a table of double length than screenWidth * ScreenHeight, perhaps because of the rgb565

    How can I convert a byte [] bitmap.

    I solve the problem to get the bitmap by building as

    image bitmap = new Bitmap (Bitmap.ROWWISE_16BIT_COLOR, Graphics.getScreenWidth (), Graphics.getScreenHeight (), byteArr);

  • help me convert conversion ACR presets-lightroom presets

    Hello

    I am under lightroom and photoshop cc 2015 2015 last updated cc, two windows 10

    I know there's a script to convert the presets .lrtemplate formatted in format .xmp, in professional photography Forum the

    I know only ACR Preset Manager which is not really want, I want

    can you help me please?

    Thank you

    Hello

    Greetings!

    There is no such official script.

    But yes there are people who have created these scripts.

    Check this: http://www.theprofessionalphotographyforum.com/forums/technical/acr-preset-groups/

    Concerning

    Jitendra

  • Help to convert a PDF to word or excel

    Hello


    Pls help me with detailed explanations.

    I wanted to convert a pdf to word or excel. He guided me to buy cloud creative adobe. I bought, but cannot find a way of conversion it. I would be grateful for guidance detailed by phone or email.


    Thanks in advance


    Michael Shalev

    Email: [email protected]

    Tel. + 972-3-6470545

    Hello MIchael,

    To convert a PDF to Word file:

    1. Open a file in Acrobat.
    2. Click on the PDF Export tool in the right pane.
    3. Select Microsoft Word as your format export, click Word Document.
    4. Click Export. If your PDF contains the digitized text, Acrobat will automatically run text recognition.
    5. Name the Word file and save it to a desired location.

    The same set of instructions are located at the bottom of this page: doc, convert PDF to word, PDF to Word Converter | Adobe Acrobat DC

    To convert a PDF file to Excel:

    1. Open a file in Acrobat.
    2. Click on the PDF Export tool in the right pane.
    3. Choose the worksheet as your format of export, click Microsoft Excel workbook.
    4. Click Export. If your PDF contains the digitized text, Acrobat will automatically run text recognition.
    5. Name the Excel file and save it to a desired location.

    The same set of instructions are located at the bottom of this page: conversion of PDF to Excel, PDF to XLSX converter | Adobe Acrobat DC

    Another page from Adobe, you can go with instructions here: formats export PDFs to Microsoft Office, Adobe Acrobat DC | Adobe Acrobat DC tutorials

    I hope this helps.

    Joffre

  • Layout HTML of reagent for Tablet and phone does not display correct icons on a help to convert file

    I use sensitive HTML available in RoboHelp 11.  On all of my new help files, the layout works very well and my icons appear correctly.  On all my old files of assistance that have been converted, my icons do not take in the bar for the Tablet and phone.  I use the theme of Government (Theme2_Government), but modified the file for our colors and logos.  I exported the file .slz and I use the same slz file in all the help files.  The only help files that are cutting the icons are the help files that have been converted from an earlier version of RoboHelp.  No idea why this would happen?

    I just downloaded the new update of RoboHelp 11.04 patch and it solved the problem.

  • Need help to convert a document to PDF

    I have an active account and want to convert a word document to PDF but can't because I got a message to contact support.  How can I get in touch with a live person?

    Hi SenaW,

    I'd love to help you. I think I see what is the problem. You have an ExportPDF subscription, which allows you to convert PDF files to Word format. To convert a Word to PDF doc, you need either Acrobator Adobe PDF Pack .

    Please let us know if you have any additional questions.

    Best,

    Sara

  • Help to convert as2 as3

    Please, I need help convert this script in as3 bellow. Thank you.

    SCREEN_WIDTH = 800

    screen_height = 200

    frequency = 0

    MovieClip.prototype.serConfeti = function () {}

    This._x = Math.ceil (Math.Random () * SCREEN_WIDTH)

    This._xscale = Math.ceil (Math.Random () * screen_height)

    This ._yscale = this ._xscale

    This.Mover)

    This.coloreame)

    }

    function getPorcentaje() {}

    var number = Math.ceil (Math.random () * 100)

    return number

    }

    getOffset() {} function

    var number = Math.ceil (Math.random () * 255)

    var buleano = Math.round (Math.random () * 1)

    If (buleano == 1) {}

    number = number * 1

    }

    return number

    }

    MovieClip.prototype.coloreame = function () {}

    var color = new Color (this)

    var nuevo_color = new Object()

    nuevo_color. RA = getPorcentaje)

    nuevo_color. RB = GetOffset)

    nuevo_color.GA = getPorcentaje)

    nuevo_color. GB = GetOffset)

    nuevo_color.BA = getPorcentaje)

    nuevo_color.BB = GetOffset)

    my_color.SetTransform (nuevo_color)

    }

    MovieClip.prototype.mover = function () {}

    this.onEnterFrame = function () {}

    If (this ._y < 600) {}

    This ._y += 10

    This ._xscale = Math.random () * 200

    This ._rotation = Math.random () * 360

    } else {}

    this.removeMovieClip)

    }

    }

    }

    MovieClip.prototype.caidaConfeti = function () {}

    this.createEmptyMovieClip("caida_mc",1)

    var count = 0

    var confCount = 1

    This.caida_mc.onEnterFrame = Function () {}

    if(Count<frecuency) {}

    Count ++

    } else {}

    this.attachMovie ("conf", "conf" + confCount, confCount)

    eval("this.caida_mc.conf"+confCount).serConfeti)

    Count = 1

    confCount ++

    }

    }

    }

    //

    _root.caidaConfeti)

    see if it's what you want:

    var screen_width:int = 800;

    var screen_height:int = 200;

    var frecuency:int = 0;

    function coloreame(mc:MovieClip):void { / / can't tell what is your coloreame but try this. }

    var ct:ColorTransform = mc.transform.colorTransform;

    CT. Color = 0xffffff * Math.random ();

    mc.transform.colorTransform = ct;

    }

    function serConfeti(mc:MovieClip):void {}

    MC.x = Math.ceil (Math.random () * screen_width);

    mc.scaleX = mc.scaleY = Math.ceil (Math.random () * screen_height);

    Mover (MC);

    coloreame (MC);

    }

    function mover(mc:MovieClip):void {}

    mc.addEventListener (Event.ENTER_FRAME, moverF);

    }

    function moverF(e:Event):void {}

    var mc:MovieClip = MovieClip (e.currentTarget);

    If (mc.y<>

    MC.y += 10;

    mc.scaleX = Math.random () * 200;

    MC.rotation = Math.random () * 360;

    } else {}

    mc.removeEventListener (Event.ENTER_FRAME, moverF);

    mc.parent.removeChild (mc);

    }

    }

    function caidaConfeti(mc:MovieClip):void {}

    var caida:MovieClip = new MovieClip();

    Caida.Count = 0;

    caida.confCount = 1;

    mc.addChild (caida);

    caida.addEventListener (Event.ENTER_FRAME, enterFrameF);  / / I can't tell when it has to end.

    }

    function enterFrameF(e:Event):void {}

    var caida:MovieClip = MovieClip (e.currentTarget);

    If (caida.count<>

    Caida.Count ++;

    } else {}

    var conf_mc:MovieClip = new conf();

    caida.addChild (conf_mc);

    serConfeti (conf_mc);

    }

    }

    caidaConfeti (this);

  • can someone help me convert actionscript 2.0 to actionscript 3.0 for my interactive sketch notebook?

    If anyone can come back to me, I'd be grateful help.

    I worked on the provision of an interactive drawing buffer but started from a model that was in actionscripts 1 & 2. but when I converted to actionscript 3.0, there are errors.

    I understand not really good coding and hoped someone could help me to make it work for actionscript 3.0.

    Here is the code for actionscript 2.0 (it works perfectly when in the right format)

    lineThickness = 0;

    selectedColor = "0x000000";

    _root. OnMouseDown = startDrawing;

    _root. OnMouseUp = stopDrawing;

    startDrawing() {} function

    If (_xmouse < 455) {}

    _root. LineStyle (lineThickness, selectedColor);

    _root. MoveTo (_root._xmouse, _root._ymouse);

    _root. OnMouseMove = drawLine;

    }

    }

    drawLine() {} function

    _root. LineTo (this ._xmouse, this ._ymouse);

    }

    stopDrawing() {} function

    delete this.onMouseMove;

    }

    line0.onPress = function() {}

    lineThickness = 0;

    };

    line3.onPress = function() {}

    lineThickness = 3;

    };

    Line6.onPress = function() {}

    lineThickness = 6;

    };

    colorRed.onPress = function() {}

    selectedColor = "0xFF0000";

    };

    colorGreen.onPress = function() {}

    selectedColor = "0x00FF00";

    };

    colorBlue.onPress = function() {}

    selectedColor = "0x0000FF";

    };

    colorYellow.onPress = function() {}

    selectedColor = "0xFFFF00;

    };

    colorMagenta.onPress = function() {}

    selectedColor = "0xFF00FF";

    };

    colorCyan.onPress = function() {}

    selectedColor = "0x00FFFF";

    };

    colorBlack.onPress = function() {}

    selectedColor = "0x000000";

    };

    eraser_btn.onPress = function() {}

    _root. Clear();

    };

    use:

    var lineThickness:int = 0;

    var selectedColor:int = 0 x 000000;

    this.addEventListener (MouseEvent.MOUSE_DOWN, startDrawing);

    this.addEventListener (MouseEvent.MOUSE_UP, stopDrawing);

    function startDrawing(e:MouseEvent):void {}

    If (mouseX<455)>

    {with (this.) Graphics)}

    lineStyle (lineThickness, selectedColor);

    moveTo (mouseX, mouseY);

    this.addEventListener (MouseEvent.MOUSE_MOVE, drawLine);

    }

    }

    }

    function drawLine(e:MouseEvent):void {}

    {with (this.) Graphics)}

    lineTo (mouseX, mouseY);

    }

    }

    function stopDrawing(e:MouseEvent):void {}

    this.removeEventListener (MouseEvent.MOUSE_MOVE, drawLine);

    }

    for (var i: int = 0; i<>

    This ["Line" + i] .addEventListener (MouseEvent.MOUSE_DOWN, downF);

    This ["line" + i] .ivar = i;

    }

    function downF(e:MouseEvent):void {}

    lineThickness = MovieClip (e.currentTarget) .ivar;

    }

    var colorA: Array = [[colorRed, 0xff0000], [colorGreen, 0x00ff00],..., [CouleurJaune, 0x000000]];

    for (i = 0; i<>

    colorA [i] [0] .addEventListener (MouseEvent.MOUSE_DOWN, colorF);

    colorA [i] [0] .ivar = i;

    }

    function colorF(e:MouseEvent):void {}

    selectedColor = MovieClip (e.currentTarget) .ivar;

    }

    erase_btn.addEventListener (MouseEvent.MOUSE_DOWN, eraseF);
    function eraseF(e:MouseEvent):void {}
    This.Graphics.Clear ();
    }

Maybe you are looking for

  • Updated my iPhone6 to ios10 and now my battery heats up and does not load

    Updated my iPhone6 to ios10 and now my battery heats up and does not load I have never experienced this with another iPhone or iOS version Of course, it's a problem because I use my phone all day

  • PLEASE UNINSTALL FIREFOX RIGHT NOW, HE'S MESSED UP EVERYTHING FOR ME.

    After Installing Mozilla, Firefox, it changed everything about my internet provider's computer screen. I want to just go back to my old. I didn't know it would be so different. Long on another computer, I had Firefox, but it changed nothing. When I t

  • Help uninstalling Avermedia centering

    I use avermedia to record gameplay and it was very slow recording for a while, so I decided to uninstall it is when I uninstalled it's always had the icon in my control panel, so I reset my computer and when I reset the computer it was always there,

  • Can I restrict use of the processor by some programs?

    I use FrostWire to share files through the web. FW is very intensive CPU: usually using 350 000 K or more. All other programs are seriously impeded and run very slowly. I constantly receive popups of Norton on the excessive CPU usage of FW. Is it pos

  • Disconnecting blackBerry smartphones

    Storm 2 9520 4 weeks, operating system up-to-date. Problem is when someone rings me the phone disconnects the call. I get about 30 seconds worth of conversation and then she cut and says "disconnected". Even when I phone the same thing happens. Does