Using Case and Joins in update statement

Hi all,
I need to update one column in my table...but need to use case and joins...I wrote the query and it is not working
I am getting an error msg saying...the SQL command not ended properly...
I am not that good at SQL...Please help...
update t1 a
set a.name2=
(case
when b.msg2 in ('bingo') then '1'
when b.msg2 in ('andrew') then '2'
when b.msg2 in ('sam') then '3'
else '4'
end )
from t1 a left outer join t2 b
on a.name1 = b.msg1 ;
Waiting for help on this...!
Thanks in Advance... :)

Another approach is to update an inline view defining the join:
update
( select a.name2, b.msg2
  from   t1 a
  join   t2 b on b.msg1 = a.name1 ) q
set q.name2 =
    case
      when q.msg2 = 'bingo' then '1'
      when q.msg2 = 'andrew' then '2'
      when q.msg2 = 'sam' then '3'
      else '4'
    end;which could also be rewritten as
update
( select a.name2
       , case q.msg2
            when 'bingo'  then '1'
            when 'andrew' then '2'
            when 'sam'    then '3'
            else '4'
         end as new_name
  from   t1 a
  join   t2 b on b.msg1 = a.name1 ) q
set name2 = new_name;The restriction is that the lookup (in this case, t2.msg1) has to be declared unique, via either a primary or unique key or unique index.
(You don't strictly need to give the view an alias, but I used 'q' in case you tried 'a' or 'b' and wondered why they weren't recognised outside the view.)

Similar Messages

  • How can i use multiple row subquery in update statement

    Hai All
    I using group function in my update statement.. and i need to update more rows so i need to use multiple row
    subquery pls tell me how to use multiple row subquery in update statement
    For example
    while i am using this like this i got an error
    update dail_att set outtime in (select max(r2.ptime) from temp_att where empcode=r2.enpno and
    barcode=r2.cardn and attend_date=r2.pdate group by enpno,pdate,cardn);
    Pls tell me how to use with example
    Thanks & regards
    Srikkanth.M

    Hai Man
    Thanks for ur response Let me clear what i need
    First step Fetch the records as text file and stores into table T1
    and the next step is i have seperated the text using substring and stores in different columns of a table
    There are two shifts 0815 to 1645 and 1200 and 2000
    Here I rep IN and O rep OUT
    Empno date time inout
    001 01-01-10 0815 I
    002 01-01-10 0815 I
    003 01-01-10 0818 I
    001 01-01-10 1100 0
    001 01-01-10 1130 I
    002 01-01-10 1145 0
    002 01-01-10 1215 I
    004 01-01-10 1200 I
    005 01-01-10 1215 I
    004 01-01-10 1315 O
    004 01-01-10 1345 I
    001 01-01-10 1645 0
    002 01-01-10 1715 0
    003 01-01-10 1718 0
    004 01-01-10 2010 0
    005 01-01-10 2015 0
    This is my T1 table i have taken data from text file and stored in this table from this table i need to move data to another table T2
    T2 contains like this
    Empno Intime Intrin Introut Outtime Date
    001 0815 1100 1130 1645 01-01-10
    002 0815 1145 1215 1715 01-01-10
    003 0818 1718 01-01-10
    004 1200 1315 1345 2010 01-01-10
    005 1215 2015 01-01-10
    This what i am trying to do man but i have little bit problems Pls give some solution with good example
    And my coding is
    declare
         emp_code varchar2(25);
    in_time varchar2(25);
    out_time varchar2(25);
    Cursor P1 is
    Select REASON,ECODE,READMODE,EMPD,ENPNO,FILL,PDATE,PTIME,INOUT,CARDN,READERN
    From temp_att
    group by REASON,ECODE,READMODE,EMPD,ENPNO,FILL,PDATE,PTIME,INOUT,CARDN,READERN
    ORDER BY enpno,pdate,ptime;
    begin
         for r2 in p1 loop
    declare
    bar_code varchar2(25);
    begin
    select barcode into bar_code from dail_att where empcode=r2.enpno and attend_date=r2.pdate;
    For r3 in (select empcode,empname,barcode,intime,intrin,introut,addin,addout,outtime,attend_date from dail_att)loop
    if r2.inout ='O' then
    update dail_att set outtime =(select max(r2.ptime) from temp_att where empcode=r2.enpno and barcode=r2.cardn and attend_date=r2.pdate group by r2.cardn,r2.enpno,r2.pdate );
    end if;
    end loop;     
    exception
         when no_data_found then
         if r2.inout ='I' then
                   insert into dail_att(barcode,empcode,intime,attend_date)(select r2.cardn,r2.enpno,min(r2.ptime),r2.pdate from temp_att group by r2.cardn,r2.enpno,r2.pdate );
         end if;
    end;
    end loop;
    commit;     
         end;
    Pls tell me what correction i need to do i the update statement i have used a subquery with group function but when i used it will return only one row but my need is to return many rows and i need to use multiple row subquery
    and how can i use it in the update statement
    Thanks In Advance
    Srikkanth.M

  • Join in update statement

    can we use join in update statement?
    here is the query which is giving me error
    UPDATE      pol_int_name_multiple_v
    SET      PMV.client_seq_nbr_i = 1
    FROM     pol_int_name_multiple_v PMV
    JOIN      pol_int_name PIV
    ON      piv.int_name_id = pmv.int_name_id
    WHERE      piv.client_id = 5
    SQL> /
    FROM pol_int_name_multiple_v PMV
    ERROR at line 3:
    ORA-00933: SQL command not properly ended
    Message was edited by:
    aadi

    Yes, you can. The table with updateble columns must be a key preserved table. See http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96590/adg03sch.htm#1044
    Example:
    SQL> CREATE TABLE A(A INTEGER PRIMARY KEY);
    Table created.
    SQL> INSERT INTO A VALUES(1);
    1 row created.
    SQL> INSERT INTO A VALUES(2);
    1 row created.
    SQL> COMMIT;
    Commit complete.
    SQL> CREATE TABLE B(
      2    A INTEGER,
      3    B INTEGER,
      4    FOREIGN KEY(A) REFERENCES A);
    Table created.
    SQL> INSERT INTO B(A, B) VALUES(1, 5);
    1 row created.
    SQL> INSERT INTO B(A, B) VALUES(2, 5);
    1 row created.
    SQL> INSERT INTO B(A, B) VALUES(2, 10);
    1 row created.
    SQL> COMMIT;
    Commit complete.
    SQL> SELECT * FROM B;
             A          B
             1          5
             2          5
             2         10
    SQL> UPDATE
      2    (
      3      SELECT B.*
      4      FROM A JOIN B ON A.A = B.A
      5      WHERE B.A = 2
      6    )
      7    SET B = 333;
    2 rows updated.
    SQL> COMMIT;
    Commit complete.
    SQL> SELECT * FROM B;
             A          B
             1          5
             2        333
             2        333Regards,
    Dima

  • Workflow Components : how to use SPLIT and JOIN ?

    Dear all,
    Because a Transition does not have any return of result, do you know how to use SPLIT and JOIN components ?
    <activity name='"xyz">
    <Transition to='act1'>
    </Transition>
    <Transition to='act2'>
    </Transition>
    </activity>
    In this above example, the second transition towards act2 is never called (i.e. there is no condition for the first transition) because there is no return of result for the first transition.
    Unfortunately, I didn't find any documentation about the SPLIT and JOIN workflow components. Do you have some information about these components ? How to use them ?
    Thanks a lot.

    <activity name='"xyz" andSplit='true'>
    <Transition to='act1'>
    </Transition>
    <Transition to='act2'>
    </Transition>
    </activity>
    The "andSplit='true'" will cause it transition to both act1 and act1.

  • Use of ROWID in SQL Update Statement

    Hi All,
    I have an update statement which uses the rowid column to perform the selection on the target table. Given that a rowid represents the physical location of a row on disk we know that this reference can change when various activities are performed on the database/table/row etc...
    Here is an example of the statement I am issuing:
    UPDATE tabA outertab SET col1 = 'Value'
    WHERE EXISTS (SELECT 1 FROM tabA innertab WHERE outertab.ROWID = outertab.ROWID AND ...)
    Obviously the inner query is more complicated and uses other tables etc... but for the purposes of the example we dont need to include the detail.
    My question is: When using rowid in a single SQL statement as a reference from a subquery to the outer statement is there a risk that external activities can change the rowid and those changes be reflected within the database session that my query is executing thus causing an inconsistency between the inner and outer SQL clause?
    In response to the question which will follow this post: "Why don't you just use a PK", We would like to avoid maintaining a PK on the table as we are talking about very large volumes of data and we dont want to have to issue a call to a sequence if we can avoid it when we are inserting the data. If however there is a risk that this Update statement could fail or update the wrong rows then we may have to use a PK.
    I know there is a lot of threads about this but I havnt been able to find one that someone has answered with any kind of confidence or clarity, any help would be much appreciated.
    Thanks
    Keith
    Edited by: The Turtle on Mar 5, 2009 5:24 AM

    When using rowid in a single SQL statement as a reference from a subquery to the outer statement is there a risk that external activities can change the rowid and those changes be reflected within the database session that my query is executing thus causing an inconsistency between the inner and outer SQL clause?No, it's safe to use rowid in this type of query. Docs
    A row's assigned rowid remains unchanged unless the row is exported and imported using the Import and Export utilities. When you delete a row from a table and then commit the encompassing transaction, the deleted row's associated rowid can be assigned to a row inserted in a subsequent transaction.

  • What tools does Microsoft use to mock UI interfaces, flowchart, use cases, and UML diagrams?

    I have searched google, but was not able to find article or blogs to answer this question. The questions asked here are very old. So I think this is a very relevant question today.
    We are a .NET group and we to update how we storyboard our application development. What tools does Microsoft use to mock UI interfaces, flowcharts, and use cases? Specifically for projects that are either C# .NET MVC 5 and above (looking forward to
    vNext).
    In the past, power point was able to do some of these things, but it seems it has been deprecated? Does Visio use these things? Also, is Visual Studio's 2013 UML diagram any good or is there another tool in Microsoft's bag of goodies that has more options?
    I have read about blend, but it does not seem to be .NET MVC specific.  
    Again, this is asking about what tools Microsoft teams usually use to storyboard as our team would like to mimic the more contemporary processes. We are in the process of upgrading our .NET applications and feel it is time to update our workflow process
    as well.
    Any book recommendations on TFS 2013 and agile are welcomed as well.  

    hlyates,
    Sorry but you have posted to a forum that deals exclusively with questions/issues about Microsoft Project, a project management application.
    I suggest you delete this post and start with the following: http://social.technet.microsoft.com/Forums/projectserver/en-US/home?forum=whatforum
    John

  • HP Prime crashes while using CAS and loses stored variables

    As the title suggests I'm experiencing some problems while using CAS whit my new Prime (it arrived 3 days ago). While doing operations like scrolling up the screen and copying/pasting things, or simply defining new variables it happens that the prime crashes (sometimes it also restart itself) and loses all the variables I've stored.
    The prime is running the latest FW (6030).  I've also noticed that after the firmware upgrade the DataStreamer icon in the app library has became grey and an exclamation mark appears when I try to start it.
    Any help or suggestion would be great.
    Thank you in advnce,
    M1cha3l

    I have only a little experience with Primes RPN.
    It does seem that for user variable, you do need to first create them before storing anything to them.  a ENTER OK creates user variable a and puts a 0 on stack 1:
    123 ENTER, 'a' ENTER,  Shift Sto>  or 123_'a'_Shift Sto> ( _ = space key) store 123 in a and put 123 on stack 1:
    Other more expert users may offer better advice.

  • How to use User defined Function in Update statement

    Hi All,
    I have written below update statement to update column based on value return by function. but it is not working. Could any one help me on this. This function will return only one value for each project.
    thanks in advance.
    UPDATE dg2.OD_PROJ_LOOKUP_TEMP o
    SET Months_In_Stage_Cnt = select Months_In_Stage_Cnt_ret(o.project_id) from dual;
    thanks
    deb

    hi,
    CREATE FUNCTION fn_emp_ename (p_empno IN emp.empno%TYPE)
       RETURN VARCHAR2
    IS
       v_ename   emp.ename%TYPE;
    BEGIN
       SELECT ename
         INTO v_ename
         FROM emp
        WHERE empno = p_empno;
       RETURN v_ename;
    EXCEPTION
       WHEN NO_DATA_FOUND
       THEN
          RETURN NULL;
       WHEN OTHERS
       THEN
          RETURN NULL;
    END fn_emp_ename;
    SQL>
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
    14 rows selected.
    SQL>  select fn_emp_ename (empno) as  emp_name from emp;
    EMP_NAME
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    JAMES
    FORD
    MILLER
    14 rows selected.
    SQL> update emp
      2  set ename= fn_emp_ename (7936)
      3  where empno=7934;
    1 row updated.
    SQL> commit;
    Commit complete.
    SQL>  select * from emp where empno=7934;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTN
          7934            CLERK           7782 23-JAN-82       1300                    1
    SQL> i hope this helps .........
    Thanks,
    P Prakash
    Edited by: prakash on Nov 17, 2011 11:52 PM

  • How to use case and decode to extract the data

    Hello PL/SQL Gurus,
    I am using Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production version
    I have a table in following format -
    drop table TT2;
    create table TT2(College, Class,gender,status,fees) as select
    'IITB','MBA','M','P',255600 from dual union all select
    'IITK','MTech','M','P',300000 from dual union all select
    'IITD','MBA','F','P',450000 from dual union all select
    'IITKH','MBA','F','P',350000 from dual union all select
    'IITC','MTech','F','P',420000 from dual union all select
    'IITB','MTech','M','P',185000 from dual union all select
    'IITC','MTech','M','P',235000 from dual union all select
    'IITD','MBA','F','F',175000 from dual union all select
    'IITM','MBA','M','F',257000 from dual union all select     
    'IITKH','MTech','F','P',335000 from dual union all select
    'IITD','MBA','F','P',540335 from dual union all select
    'IITC','MBA','F','F',125089 from dual union all select
    'IITD','MTech','M','P',290756 from dual union all select
    'IITM','MBA','M','P',200000 from dual union all select     
    'IITKH','MBA','F','F',534990 from dual union all select
    'IITD','MBA','F','P',221000 from dual ;some of the extraction conditions are as following -
    CASE CONDITION
    College in 'IITB' and status='P'- 'WestRegion Passed'
    College in 'IITC' and status='P'- 'SouthRegion Passed'
    College in 'IITD' and 'IITK' and status='P' and Gender='F' - 'NothRegion Female Passed'
    College not in 'IITK' and status='F' - 'Ex Kanpur Failed'
    Expected output -
    Region Statnding     Fees
    WestRegion Passed     440460
    SouthRegion Passed     655000
    NothRegion Female Passed     1386335
    Ex Kanpur Failed     1092079SQL Used
    I am using the following query which only make sure of case but this is not how i want the output , if i try to use the case within decode then how to work on this -
    SELECT (CASE WHEN College in ('IITB') and status='P' then sum(fees) else 0 end) WP,
    (case when College in ('IITC') and status='P' then sum(fees) else 0 end) SP,
    (case when College in ('IITD','IITK') and gender='F' and status='P' then sum(fees) else 0 end) NFP,
    (case when College in ('IITK') and status='F' then sum(fees) else 0 end) ExKF
    FROM
    TT2
    GROUP BY College, Class,gender,status

    user555994 wrote:
    Thank you so much jeneesh i am really thankful to you ...vov.
    one more query in case if any of the selection don't have the output data , then values will be displayed like -One way..
    with t as
    --"Add all your descriptions
    (select 'WestRegion Passed' region_standing from dual union all
    select 'SouthRegion Passed' region_standing from dual union all
    select 'NothRegion Female Passed' region_standing from dual union all
    select 'Ex Kanpur Failed' region_standing from dual)
    select region_standing,sum(fees) fees
            from (
            (SELECT CASE WHEN College in ('IITB') and status='P'
                                then 'WestRegion Passed'
                        when College in ('IITC') and status='P'
                                then 'SouthRegion Passed'  
                        when College in ('IITD','IITK') and gender='F' and status='P'
                                then 'NothRegion Female Passed'
                        when College in ('IITK') and status='F'
                                then 'Ex Kanpur Failed'
                        else 'Others' end region_standing,
                        sum(fees) fees
            FROM TT2
            GROUP BY  CASE WHEN College in ('IITB') and status='P'
                                then 'WestRegion Passed'
                        when College in ('IITC') and status='P'
                                then 'SouthRegion Passed'  
                        when College in ('IITD','IITK') and gender='F' and status='P'
                                then 'NothRegion Female Passed'
                        when College in ('IITK') and status='F'
                                then 'Ex Kanpur Failed'
                        else 'Others' end
            union all
            select region_standing,0
            from t
    group by   region_standing;
    REGION_STANDING              FEES
    Others                     2567835
    NothRegion Female Passed   1211335
    WestRegion Passed           440600
    Ex Kanpur Failed                 0
    SouthRegion Passed          655000
    {code}
    Edited by: jeneesh on Nov 5, 2012 5:07 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to use 'OR'  & 'AND' together in SELECT statement.

    Hi All,
    I am a BW person. Dont know much about ABAP. But i m trying to write a start routine in BW Transfer Rules.
    I m stuck at one point where i need to check multiple values using a slect statement.
    My requirement is like
    SELECT single * into wa_MEMPLOYEE from /BI0/QEMPLOYEE
      where EMPLOYEE eq L_S_DATAPAK_LINE-PERNR AND
        EMPLGROUP EQ ('1 OR '2' OR '7') AND
       CNTRCTTYPE EQ ('01' OR '05' OR '09' OR '50' OR '60').
    I tried using 'IN' .But this works only partially.
    EMPLGROUP IN ('1', '2', '7') AND
        CNTRCTTYPE IN ('01' , '05' , '09' , '50' , '60').
    when i use 'IN', the code checks the EMPLHROUP properly.But it will allow all other CONTRACT TYPE records to be written to the internal table.
    Can any one tell me how can i achieve this please.
    Cheers
    POPS

    Hi,
    You can do as below:
    "Create ranges for EMPLGROUP  AND CNTRCTTYPE
    ranges : gr_empgrp for <tablename-fieldname>,
                 gr_cntrtype for <tablename-fieldname>.
    initialization.
    gr_empgrp-sign = 'I'.
    gr_empgrp-option = 'EQ'.
    gr_empgrp-low = '1'.
    append gr_empgrp.
    gr_empgrp-sign = '2'.
    gr_empgrp-option = 'EQ'.
    gr_empgrp-low = '1'.
    append gr_empgrp.
    gr_empgrp-sign = '7'.
    gr_empgrp-option = 'EQ'.
    gr_empgrp-low = '1'.
    append gr_empgrp.
    gr_cntrtype-sign = 'I'.
    gr_cntrtype-option = 'EQ'.
    gr_cntrtype-low = '1'.
    append gr_cntrtype.
    gr_cntrtype-sign = 'I'.
    gr_cntrtype-option = 'EQ'.
    gr_cntrtype-low = '05'.
    append gr_cntrtype.
    gr_cntrtype-sign = 'I'.
    gr_cntrtype-option = 'EQ'.
    gr_cntrtype-low = '09'.
    append gr_cntrtype.
    gr_cntrtype-sign = 'I'.
    gr_cntrtype-option = 'EQ'.
    gr_cntrtype-low = '50'.
    append gr_cntrtype.
    gr_cntrtype-sign = 'I'.
    gr_cntrtype-option = 'EQ'.
    gr_cntrtype-low = '60'.
    append gr_cntrtype.
    SELECT single * into wa_MEMPLOYEE from /BI0/QEMPLOYEE
      where EMPLOYEE eq L_S_DATAPAK_LINE-PERNR AND
        EMPLGROUP in gr_empgrp AND
       CNTRCTTYPE in cntrtype.
    Thanks,
    Sriram Ponna.

  • Using CASE and CAST in a INSERT statment

    Can I have a CASE condition or a CAST condition within an INSERT statement?
    For example:
    Insert into table1 (
    Value1,
    Value2,
    Value3,
    Value4)
    Select
    Seq1.nextval,
    Case when (color.grade in (6,5,7,8) or color.grade2 in (6,5,7,8,11,12)
    Then 2
    Else 1
    End case,
    ‘GREAT’,
    CAST(color.client as varchar2)
    From color;
    Must I specify a column name in the CASE statement? If so, how can I do it if it is based on values from 2 columns?

    Satyaki_De wrote:
    Yes.
    A little modification in your query ->
    Insert into table1(
    Value1,
    Value2,
    Value3,
    Value4
    Select Seq1.nextval Value1,
    Case
    when color.grade in (6,5,7,8)
    or color.grade2 in (6,5,7,8,11,12) Then
    2
    Else
    1
    End case Value2,
    ‘GREAT’ Value3,
    CAST(color.client as varchar2) Value4
    From color;Regards.
    Satyaki De.I don't think that the "END CASE" is supported in SQL, it's the PL/SQL syntax of the CASE statement that requires an END CASE.
    In addition if you cast to VARCHAR2 you need to specify the length of the VARCHAR2, e.g. VARCHAR2(100).
    So the statement probably should look something like this (untested):
    Insert into table1(
                       Value1,
                       Value2,
                       Value3,
                       Value4
    Select Seq1.nextval Value1,
           Case
           when color.grade in (6,5,7,8)
             or color.grade2 in (6,5,7,8,11,12)
           Then
             2
           Else
             1
           End Value2,
           'GREAT' Value3,
           CAST(color.client as varchar2(100)) Value4
    From color;Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • EJB3.0: Embedded object and path in UPDATE statement

    @Entity U
      @Embedded Q q;
      @Id id;
    @Embeddable Q
       long a;
       long b;How to update a or b in an update query?
    "Update U AS u SET u.q.a = u.q.a + :x WHERE u.id = :key"
    since path don't seem to be acceptable.
    I didn't find any helping information in the SPEC (section 4.4.4 Path expressions)
    nor in the JAVA EE 5 tutorial.
    Suggestions are welcome.

    Hi,
    yes, this looks like a bug in the query compiler not allowing to update a field of an embedded instance. Good catch!
    Could you please file an issue in the glassfish issue tracker using entity-persistence as the subcomponent: https://glassfish.dev.java.net/servlets/ProjectIssues
    Thanks!
    Regards Michael

  • We have been using volomp and with latest update on both firefox and waterfox

    After the last update to 33, neither firefox nor waterfox allow us to press buttons on the email page of volomp
    The Send/schedule message and the Preview button as well as the save template and update template.
    The only button that works is the test button which opens a sub window.
    Other than that i can navigate around the software tabs and everything else.

    i forgot to mention it works fine in IE

  • IPhoto telling me I can't use library and need to update to latest version

    I'm using iPhoto v8.1.1 and it's telling me that my library was created with a newer version. Exactly what is the newest version, and if I'm already at it, how to do I fix this?
    Is it possible to get my photos out of the library by showing the package contents and then moving them out? Would that mess anything up?
    BTW, please keep your answers to the content of the original questions. I've had a lot of people get totally off topic, and never was able to get them back on topic. Thank you.

    I found a webpage that said to hold the command and option keys while clicking on iPhoto to load it. It will then bring up a box asking if you want to rebuild items.
    This worked and I have access to my photos again. Thank you anyway.

  • Two VM's running on different Host needs to be connected using Bridging and joined to VM's domain

    Hi,
    I am new to the form and vm workstation. Thanks for your inputs in advance.
    I have 2 physical machine running Windows 7 OS.
    On Host1, I have 2 VM's running Windows 2008 Server & XP. I have joined XP to Windows 2008 Server. If I try to join the VM machine running on Host2 to windows server machine running on Host1, I get the DNS error. However I'm able to ping all the vm machines in any direction. Is it possible to join this VM3 to windows server??

    I would suggest you to readjust the wireless settings on your Router....
    On the Linksys Setup Page,reduce the MTU size to 1400 and click on Save Settings.Click on wireless tab.... Here select manual configuration...Wireless Network mode should be mixed...Set the Radio Band to Standard-20MHz and change the Standard channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on Save Settings...
    Click on Advanced Wireless Settings....Change the Beacon Interval to 75,Change the Fragmentation Threshold to 2304, Change the RTS Threshold to 2304,Click on "Save Settings"...

Maybe you are looking for

  • I don't have a dual-layer drive, can I install Tiger or Leopard?

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as

  • GR REF. TO PO

    Hi,      One of our clients wants that while carrying out MIGO reference to STO,the ref. field PO only in case of stock transfer shouldn't been allowed i.e. ref. to PO to be hidden,I want to whether it is possible in standard system else we'll have t

  • Getting a sid's generation error while activating  DSO

    Dear All, We are created a standard dso on top of generic data source. This data source is created on top CDHDR and CDPOS tables through function module. While acting the DSO , We are getting a sid generation error. Please let me know the process to

  • Using MDM Web UI for Tracking Changes in MDM with SQL

    Hi Does any one have Step to step document on How to Generate MDM Web UI for Tracking Changes with SQL Server. we are using SAP Netweaver Composition Environemnt 7.1,SAP MDM 7.1and Micorsoft  Sql Server 2008. I found few blogs and documents in SDN, b

  • How to view wifi password on osx 10.8.2

    how to view wifi password on osx 10.8.2