Implementing Logic

Implementing Logic
I have the following table:
CREATE TABLE my_logic
COL_1 VARCHAR2(100)
INSERT INTO my_logic VALUES ('10 * 20');
INSERT INTO my_logic VALUES ('10 + 20');
INSERT INTO my_logic VALUES ('(10 + 20)/(5-2)');
INSERT INTO my_logic VALUES ('10 + 20/2');
INSERT INTO my_logic VALUES ('10 - 20 + 10');
SELECT * from my_logic;
COL_1
10 * 20
10 + 20
(10 + 20)/(5-2)
10 + 20/2
10 - 20 + 10
Required Output:
OP
200
30
10
20
0
I want each expressions to be evaluated.
No PL/SQL or USER-Defined Functions. I need output with SQL and Built-in Functions.
Imagine that the data is already stored in '10 * 20' format and not just as 10 * 20. Now I want SQL to evaluate the data stored in the column

SQL> SET     FEEDBACK  OFF
SQL> SET     PAGESIZE  0
SQL> SPOOL   foo.sql
SQL> SELECT  'SELECT '
  2  ,       col_1
  3  ,       ' FROM dual;'
  4  FROM    my_logic;
SELECT                           10 * 20
FROM dual;
SELECT                           10 + 20
FROM dual;
SELECT                           (10 + 20)/(5-2)
FROM dual;
SELECT                           10 + 20/2
FROM dual;
SELECT                           10 - 20 + 10
FROM dual;
SQL> SPOOL   OFF
SQL> @foo.sql
SQL> SQL> SELECT  'SELECT '
SP2-0734: commande inconnue au début de "SQL> SELEC..." - le reste de la ligne est ignoré.
SQL>   2  ,       col_1
SQL>   3  ,       ' FROM dual;'
SQL>   4  FROM    my_logic;
SQL> SELECT                           10 * 20
  2   FROM dual;
       200
SQL>
SQL> SELECT                           10 + 20
  2   FROM dual;
        30
SQL>
SQL> SELECT                           (10 + 20)/(5-2)
  2   FROM dual;
           10
SQL>
SQL> SELECT                           10 + 20/2
  2   FROM dual;
        20
SQL>
SQL> SELECT                           10 - 20 + 10
  2   FROM dual;
         0
SQL>
SQL> SQL> SPOOL   OFF
SP2-0734: commande inconnue au début de "SQL> SPOOL..." - le reste de la ligne est ignoré.
SQL>
SQL>

Similar Messages

  • Implementing Logical FACT & Logical dimension from 2 different data sources

    Hi Gurus,
    Here is my situation. We have 2 Different Data sources. One is SRMW and the other one is a different source. What we are trying to implement here is we wanted to create logical dimensions and logical facts as well in the BMM layer. For ex: w_day_d from SRMW and other time dimension from another source makes a logical table. And similarly a fact from SRMW and and another similar fact (Same data types though) will make a logical fact in the BMM.
    I have done the POC of it, but the only problem is that i was able to fetch the data from only one data source not the other source.
    Any suggestions ??
    Thanks in Advance.

    What I already mentioned is that you have to create multiple logical table sources and set the fragmentation content on each logical table source.
    When you have two physical tables for the product dimension, for example DIM_PRODUCT_A and DIM_PRODUCT_B, you must add them to your logical table Products as two separate logical table sources and map all columns to the corresponding logical table columns on the Column Mapping tab.
    Hereafter you should go to the Content tab of each logical table source and describe what content is in the logical table source.
    For example for the logical table source of DIM_PRODUCT_A:
    "BM"."Product"."Product Name" <= 'Product 2'
    and for the logical table source of DIM_PRODUCT_B.
    "BM"."Product"."Product Name" >= 'Product 3'
    Then you must also check "This source should be combined with other sources at this level"
    When you run a query in Answers only on the product table, two queries will be generated to get values from both tables.
    Regards,
    Stijn

  • How to implement logical equation as LabView?

    Hi,
    I have this bit test logic I need to implement as a Labview code.
    Should I use formula node or either something similar to this already in Labview?
    "((var & (1<<bit)) != 0)"  where 'var' may be 8, 16, or 32bit, 'bit' is a number 0 - 31 representing
    a bit number. 0 is the least significant bit.
    Thank you,
    Do
    Solved!
    Go to Solution.

    Rotate, And, Not equal to zero
    Message Edited by Ravens Fan on 08-10-2009 09:36 PM
    Attachments:
    Example_VI_BD.png ‏2 KB

  • Implementing logic tasks in prepopulate adapter

    hi,
    i want that my hire date should be incremented by 3 days if employee type is full time and by 1 month if employee type is party time.
    i have taken condition in logic task of prerpopulate adapter if employee type is full time
    how do i use the THEN condition. i see no option as THEN, jsut SET VARIABLE, IF, ELSE IF type conditions are there..
    i know we can do it writing our own java code, but wanted to know if i can implement it using out of the box way.
    thanks

    you can try this...
    if (emptype = 'Full-Time')
    incrementby3days(call java date object methods to increment by 3 days)
    set adapter return value = incrementby3days
    else if(emptype = 'part-time')
    incrementby30days (call java date object methods to increment by 30 days)
    set adapter return value =incrementby30days
    you can find java utility classes in Adapter Factory in Add->Utility Task->Utility

  • How can I implement logical deletes?

    Hello:
    I understand that ejbRemove() will remove the actual row of data in the underlying table.
    I would like to instead do a logical delete; there's a status flag that will be changed to reflect the fact that it was deleted.
    Can somebody tell me how I can implement this logical delete in a CMP-driven EJB?
    Thanks.
    venki

    You can update the status field by having a home business method if you want
    to update the status of many entities that can be deleted. If its only one
    entity then you may want to expose update method from component interface .
    Hope that helps.
    <Venkat Venkataramanan> wrote in message
    news:[email protected]..
    Hello:
    I understand that ejbRemove() will remove the actual row of data in the
    underlying table.
    I would like to instead do a logical delete; there's a status flag that
    will be changed to reflect the fact that it was deleted.
    Can somebody tell me how I can implement this logical delete in a
    CMP-driven EJB?
    Thanks.
    venki

  • How implement logic for messsage timeout / "time to live"

    Hi all!
    I have a scenario where it is critical that a message will be delivered before a given deadline and if not (e.g due to target system being unavalable) the message must be discared and an alert raised. The timeout logic must be processed as late as possible in the pipeline to be accurate (e.g. in the adapter / delivery logic). 
    Is there standard functionality available for this in PI/XI or is a custom adapter module needed?
    In the latter case could you point me to some resources / sample code for custom module development.
    Points will be awarded for helpful answers.
    Best regards,
    Christian

    Hi
    If you are using ccBPM deadline branch can be utilized for this purpose.
    Otherwise i don't this this is possible.
    rgds,
    Arun

  • How to implement logical delete in on table

    Hi,
    I am working in Jdev11.1.1.3.0
    I have one requirement, where i need to delete a row from the table when i click on delete button. But it shouldn't delete/remove from the VO, when i did execute vo.hasNext i should still need this row.
    Can any one suggest me the best way.
    -Thanks.

    hi,
    https://forums.oracle.com/thread/2225878
    http://www.jobinesh.com/2011/05/soft-deletion-of-rows.html
    http://deepakcs.blogspot.com/2013/01/ejb-dc-deleting-multi-selected-rows.html
    https://forums.oracle.com/thread/2534813
    http://www.youtube.com/watch?v=zl5QjihrU0k
    thx.

  • Logical AND in MDX Reporting Services Parameter

    Hi, I would like to implement logical AND on a cube parameter. I have seen examples of hard-coded logical AND in MDX.
    (http://salvoz.com/blog/2013/12/24/mdx-implementing-logical-and-on-members-of-the-same-hierarchy/)
    But I'm not sure how to apply this to a parameter's MDX dataset.
    Here is an example of the automatically generated MDX which uses logical OR:
    This is the drop down parameter:
    WITH MEMBER [Measures].[ParameterCaption] AS [Department].[Department].CURRENTMEMBER.MEMBER_CAPTION MEMBER
    [Measures].[ParameterValue] AS
    [Department].[Department].CURRENTMEMBER.UNIQUENAME MEMBER [Measures].[ParameterLevel] AS
    [Department].[Department].CURRENTMEMBER.LEVEL.ORDINAL
    SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue],
    [Measures].[ParameterLevel]} ON COLUMNS
    , [Department].[Department].ALLMEMBERS ON ROWS
    FROM [MyCube]
    And the demo report dataset is:
    SELECT NON EMPTY { [Measures].[CompanyTbl Count] } ON COLUMNS,
    NON EMPTY { ([Product Level No].[Product Level No].[Product Level No].ALLMEMBERS ) }
    DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM
    ( SELECT ( STRTOSET(@DepartmentDepartment, CONSTRAINED) )
    ON COLUMNS FROM [MyCube]) WHERE
    ( IIF( STRTOSET(@DepartmentDepartment, CONSTRAINED).Count = 1,
    STRTOSET(@DepartmentDepartment, CONSTRAINED), [Department].[Department].currentmember ) )
    CELL PROPERTIES VALUE,
    BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING,
    FONT_NAME, FONT_SIZE, FONT_FLAGS

    Hi,
    I can see there just one parameter @Department@Department in your script. But if you had two parameters that should return resultset affected by two parameters. You can do it as either select from subselect from subselect.
    Example 1
    SELECT
    {x} ON COLUMNS,
    {ROWS_SET} ON ROWS
    FROM
    (SELECT StrToSet(@Param1) ON COLUMNS FROM
    (SELECT StrToSet(@Param2) ON COLUMNS FROM
    [CUBE_NAME]
    Or crossjoin between 2 parameters
    SELECT
    {x} ON COLUMNS,
    {ROWS_SET} ON ROWS
    FROM
    (SELECT StrToSet(@Param1)*StrToSet(@Param2) ON COLUMNS FROM
    [CUBE_NAME]
    Jiri
    Jiri Neoral

  • Logical AND in Java Regular Expressions

    I'm trying to implement logical AND using Java Regular Expressions.
    I couldn't figure out how to do it after reading Java docs and textbooks. I can do something like "abc.*def", which means that I'm looking for strings which have "abc", then anything, then "def", but it is not "pure" logical AND - I will not find "def.*abc" this way.
    Any ideas, how to do it ?
    Baken

    First off, looks like you're really talking about an "OR", not an "AND" - you want it to match abc.*def OR def.*abc right? If you tried to match abc.*def AND def.*abc nothing would ever match that, as no string can begin with both "abc" and "def", just like no numeric value can be both 2 and 5.
    Anyway, maybe regex isn't the right tool for this job. Can you not simply programmatically match it yourself using String methods? You want it to match if the string "starts with" abc and "ends with" def, or vice-versa. Just write some simple code.

  • How to hide row from table after logical delete

    Hello.
    I am using Jdeveloper 11.1.1.3.0, ADF BC and ADF Faces.
    I want to implement Logical delete in my application.
    In my Entity object I have Deleted attribute and I override the remove() method in my EntityImpl class.
        @Override
        public void remove()
           setDeleted("Y");
        }and I added this condition to my view object
    WHERE NVL(Deleted,'N') <> 'Y'in my page I have a table. this table has a column to delete each row. I dragged and drop RemoveRowWithKey action from the data control
    and set the parameter to *#{row.rowKeyStr}* .
    I what I need is this:
    when the user click the delete button I want to hide the roe from the table. I tried to re-execute the query after the delete but the row is still on the page. Why execute query does not hide the row from the screen.
    here is the code I used for delete and execute query
        public String deleteLogically()
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("removeRowWithKey");
            Object result = operationBinding.execute();
            DCBindingContainer dc=(DCBindingContainer) bindings;
            DCIteratorBinding iter=dc.findIteratorBinding("TakenMaterialsView4Iterator");
            iter.getCurrentRow().setAttribute("Deleted", "Y");
            //iter.getViewObject().executeQuery();
            iter.executeQuery();
            return null;
        }as you see I used two method iter.getViewObject().executeQuery(); and  iter.executeQuery(); but the result is same.

    Thank you Jobinesh.
    I used this method.
        @Override
        protected boolean rowQualifies(ViewRowImpl viewRowImpl)
          Object attrValue =viewRowImpl.getAttribute("Deleted"); 
            if (attrValue != null) { 
             if ("Y".equals(attrValue)) 
                return false; 
             else 
                return true; 
            return super.rowQualifies(viewRowImpl);
        }But I have one drawback for using it, and here is the case:
    If the user clicks the delete button *(no commit)* the row will be hidden in the table, but when the user click cancel changes the row is not returned since it is not returned due to the rowQualifies(ViewRowImpl viewRowImpl) (the Deleted attribute is set to "N" now).
    here is the code for delete and cancel change buttons
        public String deleteLogically()
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding =
                bindings.getOperationBinding("removeRowWithKey");
            Object result = operationBinding.execute();
            DCBindingContainer dc = (DCBindingContainer)bindings;
            DCIteratorBinding iter =
                dc.findIteratorBinding("TakenMaterialsView4Iterator");
            iter.getCurrentRow().setAttribute("Deleted", "Y");
             iter.executeQuery();
            AdfFacesContext adfFacesContext = AdfFacesContext.getCurrentInstance();
            adfFacesContext.addPartialTarget(this.getTakenMaterialsTable());
            return null;
        public String cancelChanges(String iteratorName)
            System.out.println("begin cancel change");
            BindingContainer bindings =
                BindingContext.getCurrent().getCurrentBindingsEntry();
            DCBindingContainer dc = (DCBindingContainer)bindings;
            DCIteratorBinding iter =
                (DCIteratorBinding)dc.findIteratorBinding(iteratorName);
            ViewObject vo = iter.getViewObject();
            //create a secondary RowSetIterator to avoid disturbing row currency
            RowSetIterator rsi = vo.createRowSetIterator(null);
            //move the currency to the slot before the first row.
            rsi.reset();
            while (rsi.hasNext())
                    currentRow = rsi.next();
                    currentRow.setAttribute("Deleted", "N");
            rsi.closeRowSetIterator();
            iter.executeQuery();
            AdfFacesContext adfFacesContext = AdfFacesContext.getCurrentInstance();
            adfFacesContext.addPartialTarget(this.getTakenMaterialsTable());
            return null;
        }as example, if the user initially has 8 rows, then deleted 2 rows, in cancelChanges only 6 rows appears. and the deleted rows are not there??
    any suggestion?

  • To use logical database PNP in class builder

    Hi
    Inside the class builder (SE24), i have a created a method.
    Now while implementing that method, that is between method and endmethod
    statement can i implement logical database PNP or PNPCE.
      If 'yes' how to use it.
      if 'no' what is the other way to implement authorization.
    Pls help me

    Hello,
    assume that the routines GET_ITnnnn are written by yourself. For reading infotypes ABAP Objects provides us with same very helpful classes as shown below:
    * define data
      DATA:
        gif_employee      type ref to if_pt_employee,
        go_employee       type ref to cl_pt_employee,
        gt_infotypes      TYPE tim_tmw_itlist_tab,
        go_control        TYPE REF TO if_pt_td_control,
        go_data           TYPE REF TO if_pt_td_base,
        go_pnnnn          TYPE REF TO if_pt_td_itnnnn,
        gt_p0001          TYPE TIM_P0001_TAB,
        gt_p0002          TYPE TIM_P0002_TAB,
        gt_p0003          TYPE TIM_P0003_TAB.
    start-of-selection.
    GET pernr.
    <b>* Create employee instance</b>
      gif_employee = cl_pt_employee=>get_employee( pernr ).
      go_employee ?= gif_employee.
    <b>* Get master infotypes (0001, 0002)</b>
      CALL METHOD go_employee->get_master_data
        EXPORTING
          im_begda = id_fromdate
          im_endda = id_todate
        IMPORTING
    *      EX_I0000 =
          EX_I0001 = gt_p0001
          EX_I0002 = gt_p0002
    *      EX_I0007 =
    *      EX_I0008 =
    <b>* Append all other required infotypes to itab</b>
      APPEND '0003' TO gt_infotypes.
      CALL METHOD go_employee->get_infotypes
        EXPORTING
          i_itlist      = gt_infotypes
          i_fromdate    = id_fromdate  " start date
          i_todate      = id_todate    " end date
    *      I_FILTER      =
          i_noauthcheck = 'X'
        IMPORTING
          e_result      = gt_infty_request
          e_retcd       = gd_retcd.
    * Please see documentation of parameter e_retcd...
      LOOP AT gt_infty_request INTO go_control.
        go_data = go_control->data.  <b>" get data object</b>
    *   Casting
        TRY.
            go_pnnnn ?= go_data.
          CATCH cx_sy_move_cast_error.
            CONTINUE.
        ENDTRY.
    <b>*   Convert infotype (semi-transparent -> transparent)</b>
        CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
          EXPORTING
            prelp = lo_pnnnn->prelp
          IMPORTING
            pnnnn = gs_p0003.
        APPEND gs_p0027 TO gt_p0003.
      ENDLOOP.
    The class CL_PT_EMPLOYEE provides us already with very easy access to so-called master infotypes (000, 0001, 0002, 0007 and 0008). All other infotypes can be read using method GET_INFOTYPES.
    Using these classes we have a very convenient and standardized way of accessing all kinds of infotypes.
    Vasanth

  • Implementing OOP inheritance in T-SQL (not an O/R question)

    Is it possible to cleanly obtain the inheritance benefit of object-oriented programming in T-SQL? 
    This is not about O/R mapping, which has been discussed to death all over the web, but rather specifically about implementing a form of inheritance in T-SQL.
    Here’s why I would ask such an insane question: 
    I maintain a large body of existing T-SQL that implements logic that has to be tightly tied to the database. 
    It’s not heavily declarative (i.e., does not rely heavily on large monolithic SQL statements and set manipulations), because the operations that have to be carried out are by their nature sequential. 
    (And imperative code can be tested in bite-size pieces, whereas huge, tight, brittle declarative SQL is difficult to maintain.) 
    And I can’t rewrite it.
    I’m now faced with the prospect of implementing new functionality, which will have the effect of introducing slight variations across the current
    functionality.  An obvious way to implement this would be with tests and branches in every place where the functionality has to vary. 
    This would spread the new functionality across the existing code in a rather unstructured way, making maintenance difficult. 
    At the other extreme, I could clone the entire codebase, and make the alterations in the cloned code for the new functionality. 
    At run-time, you would call into the correct code.  This would cause incredible code bloat and the attendant maintenance headaches.
    Inheritance and virtual functions would solve this nicely: the common code would be placed in one class, and the parts that vary in two
    other separate classes.  Alas, T-SQL does not implement inheritance.
    There is a third way: 
    implement virtual functions by hand in T-SQL.  At virtual function call sites, you would simply employ a lookup to determine the correct virtual function, and then call it dynamically.
     This could be easily expanded to handle a third set of logic and so on. 
    It would only require modifying the entire codebase once, to insert the virtual function call points. 
    The vtable of virtual functions could be stored as a table in SQL Server. 
    But this sounds like an awful thing to do to future maintainers.
    Has anyone else faced this situation, and how did you address it?  Does anyone know of any other approach that would mimic inheritance
    in T-SQL and/or avoid the uglinesses of the above?  Thanks.

    There is a third way: 
    implement virtual functions by hand in T-SQL.  At virtual function call sites, you would simply employ a lookup to determine the correct virtual function, and then call it dynamically.
    That can be done with
    dynamic SQL.
    However, there is always the ever-present performance requirement with database queries. So a fancy implementation can quickly collapse to plain in-line code stored procedure with performance benefits.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • OWSM 11g: Custom policy implementation

    Hi all,
    I am unable to replicate the example as discussed in the section 14 of Security and Administrator’s Guide for Web Services 11g Release 1 (11.1.1) B32511-03, April 2010. I am applying the custom policy on a osb (11g r3) proxy service. Kindly take a look at the steps mentioned below & suggest suitably where i may be going wrong:
    1. Creation of the IpAssertionExecutor class which holds the implementation logic (same as Step 1)
    2. Creation of the policy-config.xml file (same as Step 2)
    3. oracle.logging-utils_11.1.1.jar was also added to compile the above class.
    4. IpAssertionExecutor Class & policy-config.xml were added as a jar file as mentioned in page no: 4 of the following link: http://www.scribd.com/doc/25941008/How-to-Create-OWSM-11g-Custom-Policy-Assertion (same as Step 4)
    5. Updation of classpath (same as Step 5)
    6. Creation of oracle/ip_assertion_policy file (same as Step 2)
    7. Importing the Custom Policy File (same as Step 6)
    8. Attaching the Custom Policy to a Web Service or Client (same as Step 7)
    For testing purpose, i used soapui and specified the bind address in the request properties. However, the policy is not working as desired.
    Additionally, i hardcoded the String ipAddr (ip address) in the IpAssertionExecutor class & redeployed the jar. But still couldn't get it working.
    I shall be obliged if someone can help me.
    Thanks in advance

    In the security tab for your OSB Service, ensure that you set the radio button for processing of ws header. Otherwise no policies appear to be called.

  • Process Flow Restart Logic OWB 11gr2

    Hi,
    I know OWB 11gr2 doesn't provide PF restart logic and one has to come up with his/er PFRL deisgn and implementation logic. Just wondering if any one has done it sucessfully and can refer me to a proper documentation or design.
    Thanks

    Read about error handling in Oracle Workflow:
    http://download.oracle.com/docs/cd/B19306_01/workflow.102/b15853/T361836T362426.htm
    You can use ideas of Workflow default error processing for designing custom system for notifcation administrator about fails in OWB processflow and to provide tools to restart failed activities (it is impossible dirrectly use default Workflow features becuase - restart is possible at whole process where error occured and OWB mapping errors is not produce error events in Workflow).
    I guess you need design (I am not a big Workflow expert so maybe better to follow Workflow develoepr guide or ask question at {forum:id=72} forum):
    1) procedure for generating "OWB mapping error" event (this procedure should be run periodically, say every 10 minutes)
    2) Workflow processflow (and maybe addirional procedures) for processing "OWB mapping error" event
    3) suscribe designed processflow to "OWB mapping error" event
    Regards,
    Oleg

  • Forward physical standby archivelog files to a logical standby database

    Hi,
    We have a production database (1) and we have a physical standby database (2) for it.
    Is it possible to forward the archivelogs files from (2) to a logical standby database (3). We want to use the (3) as a UAT - Ad Hoc read only Database.
    Thanks.

    Hi,
    The following Data Guard configurations using cascaded destinations are supported.
    A. Primary Database > Physical Standby Database with cascaded destination > Physical Standby Database
    B. Primary Database > Physical Standby Database with cascaded destination > Logical Standby Database
    A physical standby database can support a maximum of nine (30 as of Version 11.2) remote destinations.
    Physical Standby Forwarding Redo to a Logical Standby :
    Advantages :
    1. Users can connect to Logical Standby database and they can access
    2. Instead of querying primary database they can use logical standby database.
    3. without any additional overhead on your primary system, and without consuming any additional transatlantic bandwidth.
    Disadvantages :
    The following data types will not support in Logical standby database just check your application before implementing logical standby
    a. BFILE
    b. Collections (including VARRAYS and nested tables)
    c. Multimedia data types (including Spatial, Image, and Oracle Text)
    d. ROWID, UROWID
    e. User-defined types
    f. LOBs stored as SecureFiles
    g. XMLType stored as Object Relational
    h. Binary XML
    Thanks
    LaserSoft

Maybe you are looking for

  • My ipod touch 3G the bottom doesn't work. How do i fix it?

    Everything on the top works. From the bottom, its slowly moving up. now i'm not able to slide to unlock it.

  • Linking primary sales accounts has not been completed

    Dear All I created new database defined all account in GL-Account determination including Domestic Accounts Rec , Foreign Accounts Rec and Revenue Account I also set Realized Exchange Gain , Realized Exchange Loss, same accounting I set in Warehouses

  • J2SE Plain Adapter - Continuous Operation

    Hi All, I would like to ask for your assistance in configuring the J2SE Plain Adapter Engine for continuous operation. This is the scenario: We currently have the db_receiver (jdb receiver) adapter up and running. The connection to the DB is ok and a

  • Why wont ipod connect to itunes?

    Just got the latest iTunes update and it no longer sees my iPod. Tried resetting ipod, and re-installing iTunes. I see it in the My PC window but iTunes is dumb now for some reason. (Win 8.1)

  • Lumia 920 Flash Glare Issue

    Hi, I just bought a Lumia 920 but I've noticed a problem while taking pictures in total darkness. I can clearly see a coloured reflection moving on the screen while the camera tries to focus (with the assist led) and then, that glare, is visible in t