Conversion of a function

I'm not a developer, but I take a shot to set up a PC. Can someone convert the code below into a function for me so it can be called

more than once, with different values. I want to be able to pass different values for the first 3 values and keep the rest of the values. Also provide and example

How to call the function...

That is to say OWNER, nom_segment, segment_type

'DEMO', ' SYS_LOB0000075468C00002$ ', 'LOB '.

T1, TAB1, TABLE

Set serveroutput on

declare

number of v_unformatted_blocks;

number of v_unformatted_bytes;

number of v_fs1_blocks;

number of v_fs1_bytes;

number of v_fs2_blocks;

number of v_fs2_bytes;

number of v_fs3_blocks;

number of v_fs3_bytes;

number of v_fs4_blocks;

number of v_fs4_bytes;

number of v_full_blocks;

number of v_full_bytes;

Start

dbms_space.space_usage ('DEMO', ' SYS_LOB0000075468C00002$ ', 'LOB', v_unformatted_blocks, v_unformatted_bytes, v_fs1_blocks, v_fs1_bytes, v_fs2_blocks, v_fs2_bytes, 16 v_fs3_blocks, v_fs3_bytes, v_fs4_blocks, v_fs4_bytes, v_full_blocks, v_full_bytes);

dbms_output.put_line (' no formatted blocks = ' | v_unformatted_blocks);

dbms_output.put_line (' blocks with 00-25 percent free space = ' | v_fs1_blocks);

dbms_output.put_line (' blocks with 26-50% free space = ' | v_fs2_blocks);

dbms_output.put_line (' blocks with 51-75% free space = ' | v_fs3_blocks);

dbms_output.put_line (' blocks with 76 to 100% free space = ' | v_fs4_blocks);

dbms_output.put_line (' full blocks = ' | v_full_blocks);

end;

/

Unformatted blocks = 4080

Blocks with 00-25 percent free space = 0

Blocks with 26-50% free space = 0

Blocks with 51-75% free space = 0

Blocks with 76 to 100% free space = 0

Lots of blocks = 386850

Thanks in advance to all who responded.

Hello

I don't know what you want.

Do you want a stored procedure to which you can pass a segment_type a segment_owner and a nom_segment and retrieve all the information you get now?  You already have one. It's dbms_space.space_usage.

Do you want to a stored procedure that requires only these 3 arguments, so you don't have to go all OUT arguments?  If so, here is one way:

CREATE OR REPLACE PROCEDURE my_space_usage

(segment_owner in VARCHAR2

nom_segment in VARCHAR2

segment_type in VARCHAR2,

)

IS

v_unformatted_blocks NUMBER;

v_unformatted_bytes NUMBER;

NUMBER of v_fs1_blocks;

NUMBER of v_fs1_bytes;

NUMBER of v_fs2_blocks;

NUMBER of v_fs2_bytes;

NUMBER of v_fs3_blocks;

NUMBER of v_fs3_bytes;

NUMBER of v_fs4_blocks;

NUMBER of v_fs4_bytes;

v_full_blocks NUMBER;

v_full_bytes NUMBER;

BEGIN

dbms_space.space_usage (segment_owner

nom_segment

segment_type

v_unformatted_blocks

v_unformatted_bytes

v_fs1_blocks

v_fs1_bytes

v_fs2_blocks

v_fs2_bytes

16 v_fs3_blocks

v_fs3_bytes

v_fs4_blocks

v_fs4_bytes

v_full_blocks

v_full_bytes

);

dbms_output.put_line (' no formatted blocks = ' | v_unformatted_blocks);

dbms_output.put_line (' blocks with 00-25 percent free space = ' | v_fs1_blocks);

dbms_output.put_line (' blocks with 26-50% free space = ' | v_fs2_blocks);

dbms_output.put_line (' blocks with 51-75% free space = ' | v_fs3_blocks);

dbms_output.put_line (' blocks with 76 to 100% free space = ' | v_fs4_blocks);

dbms_output.put_line (' full blocks = ' | v_full_blocks);

END;

/

DISPLAY ERRORS

AS you can see, it's almost exactly what you posted.  The beginning of the call for the use of dbms_space.space has been changed to use variables instead of literals, and a section of procedure has been added to accept these variables.  Note that the DECLARE keword is not used at the beginning of a stored procedure. anything after that IS the key word and before the first BEGIN is treated as a statement.

You can call the procedure as follows:

BEGIN

my_space_usage ('DEMO'

, "SYS_LOB0000075468C00002$ $".

, ' LOB

);

END;

/

Tags: Database

Similar Questions

  • Why is conversion of procedures & functions due to lack of MySQL to Oracle?

    Hi all

    I'm trying to migrate a database from MySQL to Oracle using the Migration Workbench data in SQL Developer 1.5.4.
    I ran both the quick Migration Wizard and the Manual Migration process as described in the documentation.

    I get through the process very well, even if not everything is successfully migrated. Namely, stored procedures and functions of the database of third parties are not correctly migrated.
    The following text is listed in the Migration log for each of the stored procedures and functions:

    * "Limitation of the translation"procedure_audit requires a translation of the manual"met on the column of the stored procedure fse.procedure_audit line 0-0."

    If I look at the 'converted' model the procedure has been created and is set to NULL. The procedure of 'captured the model' original is commented out in the body of the procedure in the "convert" template Does anyone have any ideas as to why it's a failure? And how do I fix it?


    In addition, there seems to be a problem with the conversion of the index, particularly those that are 'MAJOR' indexes in MySQL not appear in models 'captured' or 'converted '.


    In addition, the migration log provides the following:

    * "Index 'customer_customer_id' on the 'customer' table ' has been ignored, because it is a duplicate of a constraint" * "

    Looking at the index in the original third party database, it does appear that an index on that column on the respective table. The ides why this happens?


    Here, any help would be immensely appreciated.

    Thank you
    Amedeo.

    Mysql stored procedure to PL/SQL function is not available, or in the direction sqldeveloper statement:

    http://www.Oracle.com/technology/products/database/sql_developer/files/sqldeveloperstatementofdirection.htm

    -Turloch

  • Conversion in Oracle function.

    Hello

    So here's the scenario I have. I was wondering if there is any oracle function provides or is it possible that I could achieve this goal.
    CREATE OR REPLACE procedure TestA 
    (
          partnumber               IN  number,
          partsubnum               IN  varchar2,
          errstring             OUT varchar2
    ) as
    
    --  Declare local variables
    
    ll_inputpartnum varchar2(100);
    
    
    Begin
    
        ll_inputpartnum := partnumber || partsubnum; -- Concatinate partnumber and partsubnum
      -- Will need to convert this variable to number.
    
        TestB.Process(ll_inputpartnum,parameter2, s_errstring, errnum); --ll_inputpartnum must be of type number 
         if  errnum <> compkg.success then
           errstring := s_errstring;
           return;
         end if;
      
      
    Exception 
        When others then 
        Null;    
    End;
    /
    I don't have the ability to change anything about how to TestB.Process.

    There are therefore two problem I am trying to solve in this scenario.

    First, the input parameter - ll_inputpartnum in TestB.Process takes input of only of number type. So I need to convert somehow the concatenated in full ll_inputpartnum.

    Second problem, procedure TestB.Process - after completing his treatment, goes from ll_inputpartnum to the third procedure. Let's say TestC procedure. TestC procedure, so I need to break in again value concatenated in original partnumber and partsubnum.

    The value concatenated - ll_inputpartnum does not change through this process.

    So, I'm trying to understand the best way to approach this situation.

    Thank you

    Published by: Ramses on May 25, 2010 13:18

    with a function like (using also the package of William)

    function combine_parts(p_partnum in integer,p_partsubnum in varchar2) return integer is
      l_length pls_integer := 5;  /* adjust to the maximum possible length of partsubnum */
      hex_val  varchar2(5) := '';
    begin
      if length(p_partsubnum) > l_length then
        return 0;
      end if;
      for i in 1 .. l_length loop
        hex_val := hex_val || to_base(ascii(substr(lpad(p_partsubnum,l_length,chr(0)),i,1)),16)
      end loop;
      return p_partnum * power(256,l_length) + to_decimal(hex_val,16);
    end;
    

    You can simply

    ll_inputpartnum := combine_parts(partnum,partsubnum);
    

    and finally, the parameter ll_inputpartnum can be connected to the appropriate process
    you will need another function to find partnum and partsubnum in another process, because it will be just ll_inputpartnum

    function concatenated_parts(p_number in integer,p_separator in varchar2 default '|') return varchar2 is
      l_length pls_integer := 5;  /* adjust to the maximum possible length of partsubnum */
      hex_val  varchar2(5);
      chr_val  varchar2(5) := '';
      l_partnum integer;
    begin
      l_partnum := trunc(p_number / power(256,l_length));
      hex_val := to_base(p_number - l_partnum * power(256,l_length),16);
      if length(hex_val) > l_length then
        return '';
      end if;
      for i in 1 .. l_length loop
        chr_val := chr_val || chr(to_decimal(substr(hex_val,i,1),16));
      end loop;
      return to_char(l_partnum) || p_separator || chr_val;
    end;
    

    Concerning

    Etbin

    p.s. features are not tested (no database home)

  • Qosmio F750 - 2D - 3D conversion.

    Hello.
    First post here.
    I have a Toshiba Qosmio F750 3d with Windows7 64 bit installed. Model #PQF75E-036008EN.

    All the drivers and software are updated using the Toshiba Tempro and updates of software etc. messages.

    I searched the forum database to ask how to convert my Blu Ray DVD in 3D?
    I don't have the glass less 3d LED 15.6 "inches and you can see the demo of the 3d version of clips, this Toshiba installed on my laptop.

    I reason believeing that the Toshiba Blu Ray player software, can convert stock Blu Ray 3D films, to be read using the Toshiba Bla Ray drive?
    There is a tab 3d - 2d on this drive. I want to play my collection of standard 2D blu ray 3D movies.
    Or should I buy a movie in 3D in the first place.

    Al.any help is appreciated.

    > Am I right in believing that the Toshiba Blu Ray player software, can convert stock Blu Ray 3D films, to be played using the player Blu Ray from Toshiba?

    Installed on your computer laptop s system two different players: WinDVD BD for Toshiba and Toshiba video player.

    WinDVD BD for Toshiba this software can be used to play blu - ray 3D disc.
    This software does NOT support the conversion of 2Dto3D function!

    Toshiba video player: this software plays DVDs and video files. This software supports the function of conversion 2Dto3D and 2D DVD - VR and video files can be converted to 3D.
    Note: the 3D happens only in format full screen. So when you activate 3D playback, the video automatically enlarges format full screen.

  • Problem with typecasting function

    Hello world

    I have a problem with the conversion in labview function. I want to save my data in a binary format, so I use the conversion feature to convert data types to string format. Subsequently, these files must be read into Matlab and other software. Everything works directly in labview but is not with other software. For example, if I want to save a value of 1 (U16) I can only read a value of 256 in Matlab. I guess it has something to do with the effects of Mismatching described in help. But how can I fix? Can someone help me, that would be great?

    Thank you very much!

    Johannes

    I want to save the value 1 (U16), I can read only instead of a value of 256 in Matlab

    You have a problem (as said Mercurio, "Boutien") byte order.

    A U16 takes 16 bits, or two bytes.

    When sending two bytes in the meantime, both parties must agree on which one comes first.

    For many years, the standard was "big-endian", that is, the byte the most signiificant came first.

    Intel came and went against the standard byte, i.e. 'little-endian' or less important first.

    LabVIEW has 'Big-Endian' as the standard for the transfer (he was born on non-Intel architectures).

    If both sides of the Exchange do not agree on the method, you will get the symptoms you describe,

    If the two bytes are 00 01, one side which will see as 00 01 = an and the other side will see it as 01 00 = 256.

  • Convert a MySQL function in Oracle PL/SQL


    Hello

    I'm trying to transfer a MySQL database in Oracle 12 c, there are a number of functions that I need to convert since I am new to Oracle and PL/SQL in particular, I would really appreciate your help for the conversion:

    CREATE FUNCTION get_customer_balance()p_customer_id INT p_effective_date DATETIME() RETURNS DECIMAL()5,2( )
    DETERMINISTIC
    READS SQL DATA
    BEGIN

    DECLARE v_rentfees decimal PLACES ()5,2) ; #TAXES PAID to RENT VIDEOS INITIALLY
    DECLARE v_overfees INTEGER ; #LATE FEES FOR RENTALS PREREQUISITES
    DECLARE v_payments decimal PLACES ()5,2) ; #SUM OF PREVIOUSLY MADE PAYMENTS

    SELECT IFNULL (SUM(film. rental_rate ),0) INTO v_rentfees
    FROM film , inventory , rental
    WHERE film . film_id = inventory . film_id
    ET inventory . inventory_id = rental . inventory_id
    AND rental . rental_date <= p_effective_date
    AND rental . Customer_ID = p_customer_id ;

    SELECT IFNULL (SUM(IF((TO_DAYS(rental. return_date ) - TO_DAYS(rental. rental_date )) > film. rental_duration ,


    ((TO_DAYS(rental. return_date ) - TO_DAYS(rental. rental_date )) - film. rental_duration ),0)),0) INTO v_overfees
    FROM rental , inventory , film
    WHERE film . film_id = inventory . film_id
    ET inventory . inventory_id = rental . inventory_id
    AND rental . rental_date <= p_effective_date
    AND rental . Customer_ID = p_customer_id ;

    SELECT IFNULL ()SOMME()paiement. amount ),0) INTO v_payments
    FROM payment

    payment . payment_date <= p_effective_date
    AND payment . Customer_ID = p_customer_id ;

    RETURN v_rentfees + v_overfees v_payments ;
    END

    This means that rental.return_date and rental.rental_date are declared as a TIMESTAMP. Question is why? Return_date/rental_date store fractions of a second? In any case, assuming rental_duration is in days:

    WHEN rental.return_date - rental.rental_date > numtodsinterval (film.rental_duration, 'day')

    But the question is return_date and rental_date stores it part time too. I assumed that he didn't, and simply omitted TO_DAYS. If so, then TO_DAYS should be translated to TRUNC:

    CREATE OR REPLACE

    Get_customer_balance FUNCTION)

    p_customer_id INT,

    p_effective_date DATE)

    RETURN NUMBER

    DETERMINISTIC

    IS

    v_rentfees NUMBER (5.2); PAID #FEES RENT VIDEOS INITIALLY

    v_overfees INTEGER.    #LATE ADVANCE RENTAL FEES

    v_payments NUMBER (5.2); #SUM OF PAYMENTS MADE PREVIOUSLY

    BEGIN

    SELECT NVL)

    Sum (film.rental_rate),

    0

    )

    IN v_rentfees

    FROM film,.

    inventory,

    Rental

    WHERE film.film_id = inventory.film_id

    AND inventory.inventory_id = rental.inventory_id

    AND rental.rental_date<=>

    AND rental.customer_id = p_customer_id;

    SELECT SUM)

    CASE

    WHEN TRUNC (rental.return_date) - TRUNC (rental.rental_date) > film.rental_duration

    THEN (TRUNC (rental.return_date) - TRUNC (rental.rental_date)) - film.rental_duration

    0 OTHERWISE

    END

    )

    IN v_overfees

    The RENTAL.

    inventory,

    film

    WHERE film.film_id = inventory.film_id

    AND inventory.inventory_id = rental.inventory_id

    AND rental.rental_date<=>

    AND rental.customer_id = p_customer_id;

    SELECT NVL)

    Sum (Payment.amount),

    0

    )

    IN v_payments

    PAYMENT

    WHERE payment.payment_date<=>

    AND payment.customer_id = p_customer_id;

    RETURN v_rentfees + v_overfees - v_payments;

    END;

    /

    SY.

  • function to show the namespaces

    I have a value for the variable that is preceded by spaces, and I need to see.  When I use < cfabort showerror "#var #" > it adjusts the value which does nothing for me.  Ive been far loop and convert each character in ASCII to know what everything in there... is it conversion or formatting function I can use just show me real and everything var spaces?

    TIA

    -Aaron

    I wouldn't be surprised that remove the white space (but I never used it with the showerror parameter.

    I suspect it's more likely your browser that does not show the white space, as is the standard HTTP to "cut" characters into one.

    IF this is the case, you should get more of what you want with a combonation of the

    Tags and | or something at the corner exit like quotes or dashes.

    I often do something like this when I want to see if there is white space.

    =: #aVariable #: = -.

  • Is the locale-specific number conversion chain?

    I would like to know what effect the computer's regional settings may have on the string number conversion in AS3. Specifically, in locales that use a comma as the decimal separator instead of a period, different conversion methods (Number() function, parseNumber(), Builder of the Number() class) they treat the comma as decimal separator? None of the documents I've read resolves this problem and all the examples use periods as a decimal separator. I suspect periods in strings will always be handled as decimal separators (and this is the behavior I want), but I would like to know for sure.

    FTR, an Adobe employee comes to informs me on programmers list that the answer to this question is no. period is always interpreted as a decimal separator, regardless of the location of the BONE.

  • Is there a way to convert 8 rows by 2 columns of 2 rows of 8 columns?

    I tried, but came to a stop...

    How can I convert 8 rows by 2 columns of 2 rows of 8 columns?

    as shown in the attached vi

    Thank you very much...

    JohnMc19 wrote:

    Hi Diego2000,

    Tried using the conversion table 2D function found in the functions Array palette, it's what you're asking.

    Kind regards

    No, for the necessary transformation reshaping table is required, not transpose.

    Compare:

    Andrey.

  • convert integers in equivalent characters in string - character of ASCII code

    I got out of my data and information of the associated string to an array of strings, and then to a spreadsheet file.

    I want to do this by converting an identical string of characters (integers and other numbers).

    I tried Type font with a constant string as the input of type but it DOES NOT WORK.  Instead, I get the ASCII character whose numeric designation corresponds to the integer, for example integer '50' become 'P' capital.

    I want all over '50' string '50 '.

    Please advise, and no, I don't want to make the berries of the clusters.

    I found my answer, but only after the search for 'Number' rather than 'Integer' conversion conversions.

    In the range of programming - number of string - string/number of Conversion - decimal string functions:

    'Converts number to a string of decimal digits less than width characters wide or more if necessary. If the number is floating point, it is rounded up to a 64-bit integer before the conversion. »

  • go into strings of bits on a single byte (best practices)?

    I'm looking for a more eloquent way to convert:

    • Several strings of bits in a single byte.
    • Only string to array of bytes that represents the value of the number

    See the VI for an example functional but not scalable.

    Each string has a value of 0 or 1, and they will be converted to a single byte.

    I'm surprised there is no native functions in the section conversions which allows the user to do.

    I would like to change the conversion into a function with the following entries:

    • any number of strings of bits

    Output:

    • Byte or Word

    I'm on LabVIEW 2012 and I can't open your VI or Hoovahh modified version so maybe I write exactly the same thing, but this snippet does what you want?

  • Convert unsigned to float IEEE integer

    Hello

    Is there a conversion in CVI function that would turn 2 at IEEE loat unsigned integers?

    for example:

    1st value MSB: 50588

    2nd LSB value: 16425

    Actual reading:-5000.02

    Thank you.

    AMT

    You just need to do some pointer manipulation to build your float.

    But we must be aware of the size of the data types you are using.  Based on the values in your example, it seems that you're using single-precision IEEE, which is 4 bytes.  In 32-bit operating systems, the unsignedInt has also 4 bytes.  So you cannot combine two unsignedInt in IEEE single without their casting as short ints, which are the 2 bytes of each.  You should check if your unsignedInt value will fit in a short unsigned before castant.

    You can play with the sizeof() function to see data type sizes on which platform you use.

    Here are a few lines of code the combine your examples of values to produce the desired result.

    #include
    #include
    main()
    {
    allocate shared myFloat (in single precision IEEE)
    float myFloat;
     
    create pointers to those two words in the format single-precision IEEE
    not signed short * pMSW, * pLSW;
     
    move the pointers to the first and second word in your tank
    pLSW = (unsigned short *) & myFloat;
    pMSW = pLSW + 1;
     
    initialize the values of Word
    * = 50588 pMSW;
    * pLSW = 16425;
     
    Print everything
    printf ("DSM: % d\tLSW: Single %d\tIEEE: %f\n", * pMSW, * pLSW, myFloat);
     
    wait for a response
    printf ("Press any key to continue...\n");
    GetKey();
     
    }

    Here is a link to a discussion on the other way, that has a sample program and links for more information IEEE format.

    http://forums.NI.com/T5/LabWindows-CVI/how-to-convert-a-number-to-32-bit-binary-or-hex/m-p/977159#M4...

  • Sort data in date format DD/MM/RRRR

    Hello

    I have to sort our data between two dates ex 01 01, 2016 to the 31/01/2016 for the list of transactions.

    Will I convert in JAN-16 format so that I can sort by where period_name like ' JAN-16'?

    If so how do I convert a date format of 01/01/2016 JAN-16?

    Thank you

    Hello

    Whenever you have a problem, please post a small example data (CREATE TABLE and only relevant columns, INSERT statements) of all the tables involved, so that people who want to help you can recreate the problem and test their ideas.

    Also post the exact results you want from this data, as well as an explanation of how you get these results from these data, with specific examples.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: Re: 2. How can I ask a question on the forums?

    As Chris and Tubby has said, all DATEs are stored in the same internal format, which has nothing to do with the format you use to view or format you use in conversion as TO_DATE functions.

    Oracle provides many functions and other features for the manipulation of DATEs, you seldom need to convert them to another format.  For example, we wanted to get a list of employees of the scott.emp sorted by month and by ename; in other words, December 1980 would come before April, 1981, as from habit, but the day of the month, hours minutes and seconds would all be ignored in sorting.  We can use the TRUNC function to do this:

    SELECT TO_CHAR (hiredate, 'Mon-YYYY') AS hiremonth

    ename

    hiredate

    FROM scott.emp

    ORDER BY TRUNC (hiredate, 'MONTH')

    ename

    ;

    Output:

    HIREMONTH ENAME HIREDATE

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

    DEC-1980 SMITH December 17, 1980

    Feb-1981 ALLEN 20 February 1981

    Feb-1981 WARD 22 February 1981

    Apr-1981 JONES April 2, 1981

    May-1981 BLAKE may 1, 1981

    Jun-1981 CLARK June 9, 1981

    MARTIN 1981-Sep 28-Sep-1981

    Sep-1981 TURNER 08-Sep-1981

    Nov-1981 KING November 17, 1981

    DEC-1981 FORD December 3, 1981

    DEC-1981 JAMES December 3, 1981

    Jan-1982 MILLER January 23, 1982

    Apr-1987 SCOTT April 19, 1987

    May-1987 ADAMS 23 May 1987

    Notice how MARTIN comes before TURNER in the output (I marked these Redlines), even if MARTIN hiredate is 20 days later than TURNER.  This is because only the year and month are considered in the sorting.  Any DATE in the same month will get the same sort value.

  • Convert SD to the DMS using sdo_coord_ops = 101 returns ORA-13199

    Hello

    I need to convert the lat/long DD to DMS.

    There is an operation in sdo_coord_ops (coord_op_id = 101) to do this, but returns ORA-13199 when I try sdo_cs.add_preference_for_op

    I know I can do this conversion with a function (Re: SDO_UTIL.) BEARING_TILT_FOR_POINTS in a Select statement -thanks Simon!).

    How do I know which operation that exists in sdo_coord_ops are actually implemented or not?

    Thank you!

    Well, if you look at the documentation, it is very clear: systems of coordinates (spatial reference systems)

    Of course you can also run something like this:

    select co.coord_op_id,
           co.coord_op_name,
           com.coord_op_method_name,
           com.is_implemented_forward,
           com.is_implemented_reverse
    from sdo_coord_ops co,
         sdo_coord_op_methods com
    where co.coord_op_id = 101 and
          com.coord_op_method_id = co.coord_op_method_id;
    

    0 = not implemented, 1 = implementation.

  • What do we need events, if we already have Albums?

    What added features make offer of events, compared to the Albums? Or, conversely, that adds functionality to do offers Albums, compared to events? One of them is redundant?

    Van_Epscheuten wrote:

    What added features make offer of events, compared to the Albums? Or, conversely, that adds functionality to do offers Albums, compared to events? One of them is redundant?

    The events are a category of keywords. In older versions of items to find keywords quickly, several default categories were offered; the categories of people, places, and events already existed, and you can create your own categories to others at the same level: animals, analyses, the authors...

    Since version 11, new categories have been created with their own properties. People related to face recognition, places with geotagging, events with the dates given.

    Albums are different keywords/tags because they are not considered as a property of a given image, a property you can save in the metadata so the file itself. They are just lists, like "playlists" for audio files. These lists are a property of the catalog, not each individual file.

    The main advantage of the albums is that you can assign a given order to display your photos.

    However, you can include an image given in several albums according to your purpose.

Maybe you are looking for

  • No junk mail on a right click Option

    Hi I was wondering before on mail in the mail list, you might highlight a spam. Right Click and mark as junk and his envoy to the junk e-mail folder. Since the upgrade to Sierra, this feature is? Or I don't have the right option selected in mail pref

  • would local music from the PC to the iPhone via USB, with iCloud on.

    Hello I was digging around and I can't find an answer to this, so I think I'd better ask... I have: -iPhone 6s, running ios last 9.-Windows 10 the latest version of itunes-Unlimited music-Music, I bought also I want to put it on my phone. I don't hav

  • HP dv7 - 7047cl missing Volume Meter

    When I turn the volume of the volume meter which normally appears in the center of myscreen is missing, the volume always turns upward, but it no longer displays the on-screen volume level. Any help would be appreciated, thanks!

  • WebOS SDK 64-bit

    I tried in vain to download the SDK for Windows 64-bit for WebOS. The link goes on to show that the SDK is not available. Y at - it all mirrors to download other than the developer.palm.com one replacing?

  • BlackBerry Passport Sonar alert notification

    Hello Okay, so the good old notification of sonar's back, which is good news. However in OS10, you lost the ability to repeat the sound for 3's. Have a patch/update for this. concerning Alan