How to rewrite this query to get the correct results?

Friends,

DB: 9iR2

I need to get the name of the employee and the employee number that are not in the table of presence.
but this query is not the right answer.
select e.eno,e.ename from empl e
where e.eno not in (select a.eno from attendance a)
Thank you

Depending on your data

SQL> create table attendance(
  2  ENO   VARCHAR2(5),
  3   TDATE VARCHAR2(10),
  4   IN_TIME  VARCHAR2(6),
  5   OUT_TIME VARCHAR2(6),
  6   SHIFT_NO  NUMBER(1));

Table created.

SQL>  create table empl(
  2   ENO VARCHAR2(5),
  3   ENAME  VARCHAR2(75));

Table created.

SQL> insert into empl values('11','AA');

1 row created.

SQL>   insert into empl values('12','AB');

1 row created.

SQL>    insert into empl values('13','AC');

1 row created.

SQL>     insert into empl values('14','AD');

1 row created.

SQL>   insert into empl values('15','AF');

1 row created.

SQL>  insert into attendance values('11','23-3-2009','9.00','6.00',1);

1 row created.

SQL>  insert into attendance values('14','24-3-2009','9.00','6.00',1);

1 row created.

SQL>  insert into attendance values('11','25-3-2009','9.00','6.00',1);

1 row created.

SQL>  insert into attendance values('13','23-3-2009','9.00','6.00',1);

1 row created.

SQL>  insert into attendance values('15','23-3-2009','9.00','6.00',1);

1 row created.

SQL> commit;

Commit complete.

select e.eno,e.ename
from empl e
where not exists(select 1 from attendance a where a.eno=e.eno);

ENO     ENAME

12     AB

Twinkle

Tags: Database

Similar Questions

  • I have run this query to get the result as below, but, even if my query is running fine, that I do not get the expected result.

    I'm looking for only column compare to my same target table as a table source.

    My query:


    Select case when column_name_s is null and column_name_t is not null

    then "alter table GRADE_CONVERSION drop | column_name_t | ';'

    When column_name_s is not null and column_name_t is null

    then "alter table GRADE_CONVERSION add | column_name_s | ' ' || data_type_s | « ; »

    else 'alter table modify GRADE_CONVERSION | column_name_t | ' ' || data_type_t | « ; »

    alterations of the end

    from (select s.column_name column_name_s, t.column_name column_name_t,

    s.data_type data_type_s, t.data_type data_type_t

    (select column_name, column_id, data_type

    of all_tab_cols@database

    where owner = 'erhan.

    and table_name = "GRADE_CONVERSION."

    + 1

    full outer join

    (select column_name, column_id, data_type

    of all_tab_cols@database

    where owner = 'sarigul.

    and table_name = "GRADE_CONVERSION."

    + 6

    on s.column_name = t.column_name

    )




    Tables:



    Target table: table GRADE_CONVERSION in sarigul@database


    LETTER_GRADEVARCHAR2 (2)
    GRADE_POINTNUMBER (3.2)
    MAX_GRADENUMBER (3)
    MIN_GRADENUMBER (3)




    Table source: Table GRADE_CONVERSION in erhan@database

    LETTER_GRADEVARCHAR2 (2)
    GRADE_POINTNUMBER (3.2)
    MAX_GRADENUMBER (3)
    MIN_GRADENUMBER (3)
    CREATED_BYVARCHAR2 (30)
    CREATED_DATEDATE
    MODIFIED_BYVARCHAR2 (30)
    MODIFIED_DATEDATE



    want to see output that is similar to this * (please ignore the names of column here it's just a clear example :))


    ALTER table Target_table change BOOK_ID Varchar2 (4);

    ALTER table Target_table I addSBN_10 Varchar2(13), null;

    ALTER table drop TITLE Target_table;

    Erhan_toronto wrote:

    1.I used src.nullable src_nullable and tgt.nullable tgt_nullable but only show Yes as below: but want to see the result as not null or null

    ALTER table TEST_TARGET change the NUMBER of MAX_GRADE (3, 2) Yes

    Ok. So it's all about the Yes and the no decoding to Default Null or Not Null, isn't it?

    So, to test, change one of the table of sample for NOT NULL columns in the source table, and then run the following query:

    with src as
    (
      select src.table_name src_table_name, src.column_name src_col_name, src.data_type src_data_type, src.data_length src_data_len, src.data_precision src_data_precision, src.data_scale src_data_scale,
             src.nullable src_nullable
        from user_tab_columns src
       where table_name = 'TEST_SOURCE'
    ),
    tgt as
    (
      select tgt.table_name tgt_table_name, tgt.column_name tgt_col_name, tgt.data_type tgt_data_type, tgt.data_length tgt_data_len, tgt.data_precision tgt_data_precision, tgt.data_scale tgt_data_scale,
             tgt.nullable tgt_nullable
        from user_tab_columns tgt
       where table_name = 'TEST_TARGET'
    ),
    col_details as
    (
      select src.src_table_name, nvl(tgt.tgt_table_name, first_value(tgt_table_name) over(order by tgt_table_name nulls last)) tgt_table_name,
             src.src_col_name, src.src_data_type, src.src_data_len, src.src_data_precision, src.src_data_scale, src.src_nullable,
             tgt.tgt_col_name, tgt.tgt_data_type, tgt.tgt_data_len, tgt.tgt_data_precision, tgt.tgt_data_scale, tgt.tgt_nullable
        from src
        left outer join tgt
          on (
              src.src_col_name = tgt.tgt_col_name
             )
    )
    select *
      from (
            select case
                    when tgt_data_type != src_data_type or tgt_data_len != src_data_len or tgt_data_precision != src_data_precision or tgt_data_scale != src_data_scale or src_nullable != tgt_nullable
                      then 'alter table ' || tgt_table_name || ' modify ' || tgt_col_name || ' ' || src_data_type || ' (' ||
                      case when src_data_type in ('DATE') then null
                           else
                                case
                                  when src_data_type in ('VARCHAR', 'VARCHAR2')
                                    then nvl(to_char(src_data_len), ' ') || ') '
                                  else  decode(nvl(src_data_precision, -1), -1, null, nvl(to_char(src_data_precision), ' ') || ', ' || nvl(to_char(src_data_scale), ' ') || ')')
                                end
                      end
                      || decode(src_nullable, 'NO', ' NOT NULL', ' DEFAULT NULL')
                    when tgt_col_name is null
                      then 'alter table ' || tgt_table_name || ' add ' || src_col_name || ' ' || src_data_type ||
                      case when src_data_type in ('DATE') then null
                           else
                                case
                                  when src_data_type in ('VARCHAR', 'VARCHAR2')
                                    then nvl(to_char(src_data_len), ' ') || ') '
                                  else  decode(nvl(src_data_precision, -1), -1, null, nvl(to_char(src_data_precision), ' ') || ', ' || nvl(to_char(src_data_scale), ' ') || ')')
                                end
                      end
                      || decode(src_nullable, 'NO', ' NOT NULL', ' DEFAULT NULL')
                   end alter_statement
              from col_details
            )
    where alter_statement is not null;
    

    Erhan_toronto wrote:

    2. when I run below under user sarigul and erhan I get the result as OWNER, TABLE_NAME, COLUMN_NAME DATA_TYPE... I have a link between two users. They have access to two tables.

    • Select * from all_tab_columns

    where owner = 'erhan' and table_name = "TEST_SOURCE."

    • Select * from all_tab_columns

    where owner = 'sarigul' and table_name = "TEST_TARGET."

    Alright. This means that you both users are on the same database. Only change, you will have to do in the above query is so change user_tab_columns to all_tab_columns and add the OWNER predicate respectively with the clause.

  • How to perform this procedure and get the result?

    I created a procedure, the source code for the same thing is provided below.

    create or replace procedure vin_test (p_deptno in number
    p_cursor ON SYS_REFCURSOR)
    as
    v_res Emp % rowtype;
    Start
    Open the p_cursor FOR
    Select *.
    WCP
    where deptno = p_deptno;

    end vin_test;

    Now, if I want to see that the out put of this Proc
    I first put the Serveroutput on and then...
    Exec vin_test (10);
    I get an error message indicating an incorrect number of arguments, then someone can tell me what is the value of the parameter I should move on so that I can get the desired output.


    Thanks in advance
    OraCrazy

    In sqlplus you can do like this.

    SQL> create or replace procedure vin_test( p_deptno IN number, p_cursor OUT SYS_REFCURSOR)
      2  as
      3     v_res Emp%rowtype;
      4  begin
      5     open p_cursor for
      6     select *
      7       from emp
      8      where deptno = p_deptno;
      9  end;
     10  /
    
    Procedure created.
    
    SQL> var lcur refcursor
    SQL> exec vin_test(30,:lcur)
    
    PL/SQL procedure successfully completed.
    
    SQL> print lcur
    
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO        DIV
    ---------- ---------- --------- ---------- --------- ---------- ---------- ---------- ----------
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30         10
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30         10
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30         10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30         10
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30         10
    
    6 rows selected.
    

    Thank you
    Knani.

  • SQL query to get the desired result

    I have the array with the following values

    Account Functional currency Billing currency Amount Header 5
    101USDUSD10 h 00
    101USDCAD12 h 00
    102JPYUSD9 h 00
    102JPYCAD3.00
    102JPYSGD2.00

    If the account has one different inv_currencypar that the functional currency and then

    I have to summarize the amount in this account by viewing the billing currency

    If the account has more than one other inv_currencypar that the functional currency and then

    I have to summarize the amount in this account showing the functional currency as the currency of invoicing

    I need output like this:

    Account

    Functional currency Billing currency Total amount Header 5101USDCAD10:00 pm102JPYJPY2:00 pm

    Can we get over output in sql without writing pl/sql program?

    Hello

    According to your specific needs, here's a way:

    SELECT account

    functional_currency

    CASE

    WHEN 1 = COUNT (DISTINCT NULLIF (invoice_currency

    functional_currency

    )

    )

    THEN MAX (NULLIF (invoice_currency

    functional_currency

    )

    )

    Of OTHER functional_currency

    END AS invoice_currency

    The SUM of (amount) AS total_amount

    header5

    FROM table_x

    GROUP BY account

    functional_currency

    header5

    ;

    If you would care to post CREATE TABLE and INSERT statements for your sample data, and then I could test this.

    Is it possible to have 2 (or more) of different functional_currencies in the same account?

  • Unable to get the correct results.

    Hi friends,

    I have a table xx_history1. It's the DOF is
     CREATE TABLE "XX_HISTORY1" 
       (     "EMP_NO" NUMBER(30,0), 
         "OLD_MRG_ID" NUMBER(30,0), 
         "NEW_MGR_ID" NUMBER(30,0)
       ) 
    It's the DML is
    Insert into XX_HISTORY1 (EMP_NO,OLD_MRG_ID,NEW_MGR_ID) values (279,262,280);
    Insert into XX_HISTORY1 (EMP_NO,OLD_MRG_ID,NEW_MGR_ID) values (283,280,262);
    My scenario is I need to display full_name corresponding employee in the tables of xx_history instead of referring to the emp_no, the old_mrg_id, the new_mgr_id with the id of the table.


    To display the respective employee name and eat instead of the id in the GI table using two tables

    < li > xx_people1-> where the person_id is present.
    < li > xx_assignments-> where the employee is present.

    xx_people1 DDL is
     CREATE TABLE "XX_PEOPLE1" 
       (     "PERSON_ID" NUMBER(10,0), 
         "FULL_NAME" VARCHAR2(240 BYTE), 
         "BUSINESS_GROUP_ID" NUMBER(15,0), 
         "PERSON_TYPE_ID" NUMBER(15,0)
       ) ;
    DML
    Insert into XX_PEOPLE1 (PERSON_ID,FULL_NAME,BUSINESS_GROUP_ID,PERSON_TYPE_ID) values (262,'Steve Heighway',216,5145);
    Insert into XX_PEOPLE1 (PERSON_ID,FULL_NAME,BUSINESS_GROUP_ID,PERSON_TYPE_ID) values (279,'Christian Poulsen',216,5145);
    Insert into XX_PEOPLE1 (PERSON_ID,FULL_NAME,BUSINESS_GROUP_ID,PERSON_TYPE_ID) values (280,'Pepe Reina',216,5145);
    Insert into XX_PEOPLE1 (PERSON_ID,FULL_NAME,BUSINESS_GROUP_ID,PERSON_TYPE_ID) values (283,'Sotirios Kyrgiakos',216,5145);
    xx_assignments table DDL is
    CREATE TABLE "XX_ASSIGNMENTS" 
       (     "PERSON_ID" NUMBER(10,0), 
         "SUPERVISOR_ID" NUMBER(10,0)
       );
    DML is
    Insert into XX_ASSIGNMENTS (PERSON_ID,SUPERVISOR_ID) values (262,248);
    Insert into XX_ASSIGNMENTS (PERSON_ID,SUPERVISOR_ID) values (279,262);
    Insert into XX_ASSIGNMENTS (PERSON_ID,SUPERVISOR_ID) values (280,263);
    Insert into XX_ASSIGNMENTS (PERSON_ID,SUPERVISOR_ID) values (283,280);
    I tried with the sub query, but it does not work as expected
    select decode(xx.emp_no,xx.emp_no,papf.full_name,null)"Employee Name", decode(xx.old_mrg_id,xx.old_mrg_id,supf.full_name,null)"Old Manager Name",
    decode(xx.new_mgr_id,xx.new_mgr_id,supf.full_name,null)"New Manager Name"
    from xx_history1 xx, xx_people1  papf, xx_people1 supf, xx_assignments paaf
    where xx.emp_no=papf.person_id
    and papf.person_id = paaf.person_id
    and paaf.supervisor_id = supf.person_id and xx.emp_no = paaf.person_id 
    and papf.business_group_id = 216 and papf.person_type_id = 5145 and xx.new_mgr_id is not null
    The result I got is
    Employee Name---------Old Manager Name----New Manager Name
    Christian Poulsen------Steve Heighway-------Steve Heighway
    Sotirios Kyrgiakos-------Pepe Reina-------------Pepe Reina
    But new manager name is not intervene correctly for me, according to my data in the table in xx_history1

    I have to get the name of the Manager again as
    Pepe Raina
    Steve Heighway
    But im getting like
    Steve Heighway
    Pepe Raina
    I don't know where I was wrong. Where im late in development.

    Brgds,
    Mini

    Got confused on the data in XX_ASSIGNMENTS, because 262 > 248 (employee) 283 > 280 (Manager)

    But XX_HISTORY1 262 > 280 (new id mgr) and 283 > 262 (new id mgr)

    Since you just need names of people to be shown, you can use below...
    the use of a different join instead of XX_ASSIGNMENTS xx_people1

    select decode(xx.emp_no,xx.emp_no,papf.full_name,null)"Employee Name",
     decode(xx.old_mrg_id,xx.old_mrg_id,supf1.full_name,null)"Old Manager Name",
    decode(xx.new_mgr_id,xx.new_mgr_id,supf.full_name,null)"New Manager Name"
    from
    xx_history1 xx, xx_people1  papf,xx_people1 supf,xx_people1 supf1
    where xx.emp_no=papf.person_id and xx.old_mrg_id=supf1.person_id
    and xx.new_mgr_id=supf.person_id and papf.business_group_id = 216 and papf.person_type_id = 5145 and xx.new_mgr_id is not null;
    

    Published by: Leonard November 1, 2011 05:26

  • SQL query to get the given result

    Hi friends

    My data in the table are given below

    user transaction_date transaction_type
    1 1st August 2011
    August 2, 2011 1 c
    1 3 August 2011
    1 b 3 August 2011
    1 August 4, 2011 a
    1 b 4 August 2011
    2 3 August 2011
    2 b 3 August 2011
    August 4, 2011 2 c
    2 b 4 August 2011
    2 August 5, 2011 a
    2 b August 5, 2011
    2 August 7, 2011 a
    2 b 7 August 2011

    I want the count for each user as, how many times he made a transaction type transaction immediately after 'b' type?

    As the output of above data should be

    number of users
    1 2
    2 3

    Thanks in advance :)

    Maybe (NOT TESTED).

    select "user",
           count(criteria) "count"
      from (select "user",
                   transaction_date,
                   transaction_type,
                   case when transaction_type = 'b'
                         and lag(transaction_type,1) over (partition by "user",transaction_date
                                                               order by transaction_date,transaction_type) = 'a'
                        then 1
                   end criteria
              from the_table
           )
     group by "user"
     order by "user"
    

    Concerning

    Etbin

  • Can do us a query to get the same results of 3 tables

    CREATE TABLE TABLE1 (NODEID VARCHAR2 (4));
    CREATE TABLE TABLE2 (NODEID VARCHAR2 (4));
    CREATE TABLE TABLE3 (NODEID VARCHAR2 (4));


    INSERT INTO TABLE1 VALUE('1004');
    INSERT INTO TABLE1 VALUE('1004');
    INSERT INTO TABLE1 VALUE('1002');
    INSERT INTO TABLE1 VALUE('1002');
    INSERT INTO TABLE1 VALUE('1001');
    INSERT INTO TABLE1 VALUE('1001');
    INSERT INTO TABLE1 VALUE('1006');
    INSERT INTO TABLE1 VALUE('1006');
    INSERT INTO TABLE1 VALUE('1005');
    INSERT INTO TABLE1 VALUE('1005');

    INSERT INTO TABLE2 VALUE('1004');
    INSERT INTO TABLE2 VALUE('1004');
    INSERT INTO TABLE2 VALUE('1004');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE2 VALUE('1002');

    INSERT INTO TABLE 3 VALUE('1001');
    INSERT INTO TABLE 3 VALUE('1001');
    INSERT INTO TABLE 3 VALUE('1006');
    INSERT INTO TABLE 3 VALUE('1006');
    INSERT INTO TABLE 3 VALUE('1005');
    INSERT INTO TABLE 3 VALUE('1005');
    INSERT INTO TABLE 3 VALUE('1004');
    INSERT INTO TABLE 3 VALUE('1004');
    INSERT INTO TABLE 3 VALUE('1004');
    INSERT INTO TABLE 3 VALUE('1002');
    INSERT INTO TABLE 3 VALUE('1002');
    INSERT INTO TABLE 3 VALUE('1002');
    INSERT INTO TABLE 3 VALUE('1002');

    SELECT count (*), count (distinct nodeid)
    of table1, table2, table3
    where table1.nodeid = table2.nodeid and table1.nodeid = table3.nodeid;


    SELECT count (*), count (distinct nodeid)
    FROM table1, table3
    where table1.nodeid = table2.nodeid;

    SELECT count (*), count (distinct nodeid)
    from table2, table3
    where table2.nodeid = table3.nodeid;
    SQL> SELECT MAX (CASE WHEN row_ind = 1 THEN ct END) ct_1,
      2         MAX (CASE WHEN row_ind = 1 THEN distinct_ct END) distinct_ct_1,
      3         MAX (CASE WHEN row_ind = 2 THEN ct END) ct_2,
      4         MAX (CASE WHEN row_ind = 2 THEN distinct_ct END) distinct_ct_2,
      5         MAX (CASE WHEN row_ind = 3 THEN ct END) ct_3,
      6         MAX (CASE WHEN row_ind = 3 THEN distinct_ct END) distinct_ct_3
      7    FROM (SELECT 1 AS row_ind,
      8                 COUNT (*) ct,
      9                 COUNT (DISTINCT table1.nodeid) distinct_ct
     10            FROM table1, table2, table3
     11           WHERE table1.nodeid = table2.nodeid
     12                 AND table1.nodeid = table3.nodeid
     13          UNION ALL
     14          SELECT 2 AS row_ind, COUNT (*), COUNT (DISTINCT table1.nodeid)
     15            FROM table1, table3
     16           WHERE table1.nodeid = table3.nodeid
     17          UNION ALL
     18          SELECT 3 AS row_ind, COUNT (*), COUNT (DISTINCT table2.nodeid)
     19            FROM table2, table3
     20           WHERE table2.nodeid = table3.nodeid)
     21  /
    
          CT_1 DISTINCT_CT_1       CT_2 DISTINCT_CT_2       CT_3 DISTINCT_CT_3
    ---------- ------------- ---------- ------------- ---------- -------------
            50             2         26             5         25             2
    

    There may be an easier way...

  • Rewrite this query

    How to rewrite this query. It took more than 30 minutes

     SELECT  t.svc_ord_nbr
         FROM (SELECT a.svc_ord_nbr
                 FROM m04_nt_uv_ord_admin a, m04_cct_nbr_range b
                WHERE a.adabas_isn = b.adabas_isn) t where t.svc_ord_nbr not in (select c.SVC_ORD_NBR
                                                                       from  m04_nt_uv_ord_admin c
                                                                       having count(*)>1
                                                                       group by c.svc_ord_nbr)

    May use are:

    /* Formatted on 2012/06/18 17:36 (Formatter Plus v4.8.8) */
    SELECT t.svc_ord_nbr
      FROM (SELECT a.svc_ord_nbr
              FROM m04_nt_uv_ord_admin a, m04_cct_nbr_range b
             WHERE a.adabas_isn = b.adabas_isn) t
     WHERE NOT EXISTS (SELECT   1
                           FROM m04_nt_uv_ord_admin c
                          WHERE t.svc_ord_nbr = c.svc_ord_nbr
                         HAVING COUNT (*) > 1
                       GROUP BY c.svc_ord_nbr)
    
  • IOM sql Query to get the status of the failed task

    Hello world

    We have an obligation as we need to get the status of a particular task (say Create User in OID - Completed\Rejected status resource) for the particular user. We are able to get the status of the provisioed of resources to the user but not the status of the special mission which is trigerred for the user.can someone put some light on it. We must have the SQL query to do this.

    Thanks in advance.

    Kind regards
    MKN

    Hello
    Use this query to get the status of the task, also check the cooments

    SELECT USR. USR_LOGIN, OSI. SCH_KEY, ANN. SCH_STATUS, STA. STA_BUCKET OF
    OSI, CHS, STA, MIL, TOS, PKG, OUEDRAOGO, USR, OBJ, OST
    WHERE OSI.MIL_KEY = MIL.MIL_KEY
    AND ANN. SCH_KEY = OSI. SCH_KEY
    AND STA. STA_STATUS = SCH. SCH_STATUS
    AND TOS. PKG_KEY = PKG. PKG_KEY
    AND MIL. TOS_KEY = TOS. TOS_KEY
    AND OUÉDRAOGO. USR_KEY = USR. USR_KEY
    AND OUÉDRAOGO. OST_KEY = OST. OST_KEY
    AND OST. OBJ_KEY = OBJ. OBJ_KEY
    AND OSI. ORC_KEY = OUEDRAOGO. ORC_KEY
    AND OBJ. OBJ_NAME = "User AD".
    AND OST. OST_STATUS = "Provisioning" - filter accordinglly
    AND STA. STA_BUCKET = 'pending' - filter accordinglly
    AND PKG. PKG_NAME = "AD User" - filter accordinglly
    AND MIL.MIL_NAME = 'System' - filter accordinglly Validation
    ;
    Thank you
    Kuldeep

  • How to write a simple select query to get the data of the table as an XML.

    How to write a simple select query to get the data of the table as an XML. In the query, I'm just adding items below which i need be there in the XML document
    select '<test_tag>'||EMP_NAME||'</test_tag>','<date>'||sysdate||'</date>' 
    from temp_table where id_num BETWEEN 1 AND 10;
    I have need to add the root tag as well in the beginning and the end of < root > < / root > this xml file. Please advice if this is possible with the select query
    without using XMLGEN, XMLQUERY or any other packages built and function?

    I need to URL escapes with the UTF-8 code points that we have already achieved using the utl_http package. Please help how to do that without using the utl_http package.

    What is wrong with him?

    At present, the only way I can think of to avoid a call to UTL_HTTP. SET_BODY_CHARSET is to write your own little wrapper.
    In this way, you can specify the Boolean parameter or omit it if you choose to use named parameters:

    SQL> create or replace function my_url_escape (url in varchar2)
      2  return varchar2
      3  deterministic
      4  is
      5  begin
      6   return utl_url.escape(url, false, 'AL32UTF8');
      7  end;
      8  /
    
    Function created
    
    SQL> select my_url_escape('http://some.uri.com/param?lang=fr&text=contrôle') from dual;
    
    MY_URL_ESCAPE('HTTP://SOME.URI
    --------------------------------------------------------------------------------
    http://some.uri.com/param?lang=fr&text=contr%C3%B4le
     
    
  • I can't open photoshop more. I get one commits by telling Finnish "photoshopin kannyistys yksityishenkiloita, koska loytyi odottamaton tiedoston loppumerkki. I do not know how to translate this, but something of the sort, photoshop couldn't open

    I can't open photoshop more. I get one commits by telling Finnish "photoshopin kannyistys yksityishenkiloita, koska loytyi odottamaton tiedoston loppumerkki. I don't know how to translate this, but something of the sort, photoshop could not open because it was a sign of unexpected file. I tried to delete phtoshop and download again, but nothing seems to work.

    If you have managed to delete the preferences file, uninstall, clean through the use of the Adobe Creative Cloud cleaning tool to solve installation problems, restart your computer and reinstall.

  • Whenever I try to download iOS 10, the settings app crashes. How should I do if I get the update?

    Whenever I try to download iOS 10, the settings app crashes. How should I do if I get the update?

    gswizzleeeee wrote:

    ... the settings application crashes.

    This is very unusual.  Two thoughts come to mind.

    1. Your storage space is too full?  Check the settings > general > storage & use iCloud > manage storage (in storage).  Make sure you have at least 10% (hopefully more than 15%) of total storage of your iPhone for free.
    2. Use iTunes (you must use the current version - 12.5.1, as this is the only version supporting iOS 10) to upgrade.  See 'Your device via iTunes update' here: update the iOS on your iPhone, iPad or iPod touch - Apple Support software
  • Window Defender suddenly turned off & now shows error0x800106ba. How to solve this problem and get it to turn back?

    Windows Vista window Defender error

    Window Defender suddenly turned off & now shows error0x800106ba. How to solve this problem and get it to turn back?

    Hello

    read this information on the Defender:

    ·                         If you use microsoft security essentials avg avira mcafee norton etc they disable the vista version of windows defender by default

    the basics of Microsoft security has its own version of windows defender

    and other anti-virus programs use their own particular type of application to scan for spyware and malware

    It of nothing to worry and is the default action, which is designed for them to do

    If the above does not apply to your machine to read the information on the below link on how to disable the windows defender service in vista or make an autostart to enable

    http://www.groovypost.com/HOWTO/Microsoft/Vista/disable-Windows-Defender-service-in-Windows-Server-2008-or-Vista/

    and here is the method to remove it from startup in vista

    http://www.groovypost.com/HOWTO/Microsoft/Vista/remove-Windows-Defender-from-Vista-system-startup/

    and this is how you would normally activate or disable windows defender in vista from within defenders of own and options tools

    http://www.groovypost.com/HOWTO/Microsoft/Vista/disable-Windows-Defender-for-Microsoft-Vista/

         and read this information to microsoft:

    Error message when you run Windows Defender: «Error 0x800106ba»

    http://support.Microsoft.com/kb/931849

    and if you need to change startup programs read this information on the other methods of doing it without using defender

    using msconfig read this tutorial:

    How to use MSCONFIG in Windows Vista

    Here's how to use MSCONFIG in Windows Vista to disable some unnecessary programs that load automatically at startup

    http://netsquirrel.com/Msconfig/msconfig_vista.html

    and also try this FREE program Autoruns:

    This utility, which has a knowledge of auto-starting locations of any startup monitor, shows you what programs configured to run at system startup or login and that the entries in the order of processing windows. These programs include those in your startup folder, Run, RunOnce, and other registry keys. You can configure Autoruns to show other locations, including Explorer shell, toolbar extensions, helper objects to the browser, Winlogon notifications, auto and many start-up services more

    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902

  • Failed installation error Code 80070490 Windows Vista update KB976098. How to install this update or keep the windows to try to re - install?

    Failed installation error Code 80070490 Windows Vista update KB976098.  How to install this update or keep the windows to try to re - install?

    http://support.Microsoft.com/kb/958044

    You receive an error code "0 x 80070490" when you use Microsoft Update or Windows Update Web sites to install updates

    Windows Update Forum:

    It comes with Vista, upgrade install and activate Forum.

    You will get the best help for any problem of Update/Service Pack in the Windows Update Forum; the link below:

    http://social.answers.Microsoft.com/forums/en-us/vistawu/threads

    When you repost here, kindly include the Error Codes, and exactly what is happening when you try to update.

    In this way, you will receive the best help.

    See you soon.

    Mick Murphy - Microsoft partner

  • How long does it take to get the app review?

    Hello BB Team.

    How long does it take to get the app review about? I sent this last February 28 with 2 majors bugs ExitToLive app.

    Thank you.

    Kind regards.

    9 days is not too bad at the moment. I got a few apps take a lot longer then than an update.

Maybe you are looking for